:root {
  /* PlateBoost landing light system */
  --background: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #f3f4f6;
  --surface-warm: #fff7ed;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --primary: #2563eb;
  --primary-bright: #2563eb;
  --secondary: #f97316;
  --amber: #f59e0b;
  --green: #16a34a;
  --blue: #2563eb;
  --shadow: 0 18px 60px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
}

.brand,
.site-footer strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand {
  gap: 12px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--primary);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.24);
}

.brand-mark img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: grid;
  gap: 2px;
  line-height: 1.05;
}

.brand-name {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}

.brand-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1d4ed8;
  white-space: nowrap;
}

.nav-links,
.nav-actions,
.hero-actions,
.channel-row,
.footer-grid nav {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.ghost-link:hover,
.site-footer a:hover {
  color: #1d4ed8;
}

.nav-actions {
  gap: 14px;
}

.ghost-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.primary-button,
.secondary-button,
.outline-button,
.subscribe-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 12px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-button,
.subscribe-form button {
  border: 0;
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.26);
}

.primary-button:hover,
.secondary-button:hover,
.outline-button:hover,
.subscribe-form button:hover {
  transform: translateY(-2px);
}

.primary-button.compact {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.secondary-button,
.outline-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  color: #1d4ed8;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.secondary-button:hover,
.outline-button:hover {
  border-color: rgba(37, 99, 235, 0.35);
  background: #f8fafc;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 76px;
  background: var(--background);
  color: var(--ink);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image:
    radial-gradient(circle at 15% 10%, rgba(37, 99, 235, 0.18), transparent 55%),
    radial-gradient(circle at 78% 18%, rgba(249, 115, 22, 0.16), transparent 52%),
    radial-gradient(circle at 32% 70%, rgba(37, 99, 235, 0.10), transparent 55%);
  background-position: center;
  background-size: cover;
  opacity: 1;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.85), rgba(248, 250, 252, 0.92)),
    linear-gradient(90deg, rgba(248, 250, 252, 0.96), rgba(248, 250, 252, 0.88));
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  grid-template-rows: auto auto;
  gap: 28px 40px;
  align-items: center;
  justify-items: stretch;
  min-height: calc(100vh - 76px);
  padding: 52px 0 36px;
}

.hero-row--headline {
  width: 100%;
  max-width: 680px;
  text-align: left;
  grid-column: 1;
}

.hero-row--video {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  grid-column: 2;
  grid-row: 1 / span 2;
}

.hero-row--cta {
  width: 100%;
  max-width: 680px;
  text-align: left;
  grid-column: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: #1d4ed8;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.82);
}

.hero-highlight {
  margin: 0 0 12px;
  max-width: 680px;
  color: #1d4ed8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-highlight {
    background: linear-gradient(90deg, #1e3a8a 0%, #2563eb 42%, #0ea5e9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  font-size: clamp(32px, 4.3vw, 58px);
  line-height: 1.02;
  text-wrap: balance;
}

h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
}

h3 {
  font-size: 22px;
  line-height: 1.25;
}

.hero-text {
  max-width: 920px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.hero-pain {
  max-width: 920px;
  margin: 10px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
  justify-content: flex-start;
}

.dashboard-preview {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  backdrop-filter: none;
  width: 100%;
  align-self: center;
}

.preview-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.preview-topbar strong {
  display: block;
  font-size: 16px;
}

.preview-topbar p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 99px;
  background: var(--green);
}

.pill {
  flex: 0 0 auto;
  border-radius: 999px;
  background: #fff2c5;
  color: #6c4a00;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 800;
}

.food-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 18px;
  padding: 0;
  /* Reduce hero video height ~30% to keep everything above-the-fold */
  height: min(34vh, 380px);
  max-width: 100%;
  background: var(--surface);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(0);
}

.food-card--hero {
  position: relative;
}

.hero-card-badge {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.35);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.96));
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.14);
  color: #1e40af;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  pointer-events: none;
  transform: translateX(-50%);
  white-space: nowrap;
}

.food-card img,
.step-card img,
.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.food-card video {
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 18px;
}

.caption-card {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
  padding: 16px;
}

.caption-card span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.caption-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.channel-row {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.channel-row span,
.mini-channels span {
  border-radius: 999px;
  background: #f7ddd5;
  color: var(--primary);
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 800;
}

.section-block {
  padding: 92px 0;
}

.problem-section,
.features-section {
  background: #f3f4f6;
}

.centered-heading {
  max-width: 820px;
  text-align: center;
}

.centered-heading p:not(.eyebrow),
.split-heading > p,
.excellence-panel p,
.soft-card p,
.step-card p,
.feature-card p,
.price-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.three-grid,
.workflow-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.soft-card,
.step-card,
.feature-card,
.price-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

.soft-card,
.feature-card,
.price-card {
  padding: 28px;
}

.soft-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.soft-card:hover,
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 10px;
  font-weight: 900;
}

.card-icon.danger {
  background: #fee2e2;
  color: #991b1b;
}

.card-icon.amber {
  background: #ffedd5;
  color: #9a3412;
}

.card-icon.green {
  background: #dcfce7;
  color: #166534;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: end;
}

.step-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 24px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  border: 5px solid rgba(37, 99, 235, 0.14);
  border-radius: 999px;
  background: var(--surface);
  color: var(--primary);
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.step-card img,
.mock-lines,
.mini-channels {
  height: 180px;
  margin-top: 24px;
  border-radius: 12px;
}

.step-card img {
  overflow: hidden;
}

.mock-lines {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #ffffff, #fff0ed);
  padding: 26px;
}

.mock-lines span,
.mock-lines em {
  display: block;
  height: 12px;
  border-radius: 99px;
  background: #eacfc7;
}

.mock-lines span:nth-child(1) { width: 72%; }
.mock-lines span:nth-child(2) { width: 100%; margin-top: 12px; }
.mock-lines span:nth-child(3) { width: 64%; margin-top: 12px; }
.mock-lines em {
  display: inline-block;
  width: 64px;
  height: 24px;
  margin-top: 26px;
  margin-right: 8px;
  background: #fff2c5;
}

.mini-channels {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--surface-soft);
}

.mini-channels span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  font-size: 16px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.feature-card {
  display: grid;
  gap: 22px;
  min-height: 230px;
  grid-column: span 4;
  background: #ffffff;
  overflow: hidden;
}

.feature-wide {
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.65fr);
  align-items: center;
  grid-column: span 8;
}

.feature-card img {
  height: 150px;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.feature-wide img {
  height: 100%;
  min-height: 170px;
}

.feature-card.warm {
  background: #fff7ed;
}

.feature-card.cool {
  background: #eff6ff;
}

.feature-card.muted {
  background: #f8fafc;
}

.excellence-section {
  background: #0f172a;
}

.excellence-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: 40px;
  align-items: center;
  color: #ffffff;
}

.excellence-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.reason-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.reason-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
}

.featured-price {
  border-color: rgba(37, 99, 235, 0.45);
  transform: translateY(-12px);
  box-shadow: var(--shadow);
}

.best-value {
  position: absolute;
  top: -15px;
  left: 28px;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 10px;
  margin: 18px 0 8px;
  color: var(--ink) !important;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.price span {
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
}

.old-price {
  display: inline-block;
  margin-right: 12px;
  color: rgba(36, 25, 22, 0.72) !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  letter-spacing: 0.01em;
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: rgba(37, 99, 235, 0.45);
  vertical-align: 14%;
  white-space: nowrap;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0 0;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(249, 115, 22, 0.22);
  background: rgba(249, 115, 22, 0.10);
  color: #9a3412;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card ul {
  flex: 1;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding: 10px 0 10px 28px;
  color: var(--muted);
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.9);
}

.primary-button.full,
.outline-button {
  width: 100%;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 40px;
  align-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8 58%, #1e40af);
  color: #ffffff;
  padding: 54px;
  box-shadow: var(--shadow);
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.subscribe-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  color: var(--ink);
}

.subscribe-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.subscribe-form .full-field,
.form-status,
.subscribe-form button {
  grid-column: 1 / -1;
}

.subscribe-form input,
.subscribe-form select,
.subscribe-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 0 13px;
  outline: none;
}

.subscribe-form textarea {
  min-height: 92px;
  padding: 12px 13px;
  resize: vertical;
}

.subscribe-form input:focus,
.subscribe-form select:focus,
.subscribe-form textarea:focus {
  border-color: rgba(37, 99, 235, 0.9);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.16);
}

.subscribe-form button {
  cursor: pointer;
}

.subscribe-form button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: #9e2d20;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
  padding: 44px 0;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-footer p {
  margin: 10px 0 0;
  max-width: 460px;
  font-size: 14px;
}

.site-footer .footer-domain {
  margin-top: 12px;
}

.site-footer .footer-domain a {
  color: var(--primary);
  font-weight: 700;
}

.footer-grid nav {
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-content,
  .split-heading,
  .excellence-panel,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 36px;
    align-items: center;
  }

  .dashboard-preview {
    max-width: none;
    width: 100%;
  }

  .three-grid,
  .workflow-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .featured-price {
    transform: none;
  }

  .feature-card,
  .feature-wide {
    grid-column: span 12;
  }

  .feature-wide {
    grid-template-columns: 1fr;
  }

  .feature-wide img {
    height: 190px;
    min-height: 0;
  }

  .cta-panel {
    padding: 34px;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    gap: 14px;
    padding: 14px 20px;
  }

  .nav-actions {
    margin-left: auto;
  }

  .ghost-link {
    display: none;
  }

  .hero-section {
    min-height: 100vh;
  }

  .hero-content {
    min-height: calc(100vh - 76px);
    padding: 28px 0 22px;
  }

  .hero-row--headline,
  .hero-row--cta {
    text-align: center;
  }

  .dashboard-preview {
    width: 100%;
  }

  .food-card {
    height: min(30vh, 300px);
    padding: 0;
    border-radius: 14px;
  }

  .section-block {
    padding: 68px 0;
  }

  .page-shell {
    width: min(100% - 28px, 1180px);
  }

  .primary-button,
  .secondary-button,
  .outline-button {
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .subscribe-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .hero-row--video {
    justify-content: center;
    grid-column: 1;
    grid-row: auto;
  }
  .hero-row--headline,
  .hero-row--cta {
    grid-column: 1;
    max-width: 920px;
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
}
