:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --ink: #171717;
  --muted: #666b70;
  --line: #e5e2dd;
  --primary: #d34224;
  --primary-dark: #9f2c18;
  --green: #0c6b3e;
  --green-soft: #eef8f1;
  --cream: #fff5ef;
  --shadow: 0 24px 70px rgba(23, 23, 23, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family:
    "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
}

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

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

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(229, 226, 221, 0.76);
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto auto;
  left: 0;
  min-height: 76px;
  padding: 14px clamp(20px, 5vw, 72px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.language-switch,
.hero-actions,
.hero-stats,
.app-top,
.chips,
.store-actions,
.footer {
  align-items: center;
  display: flex;
}

.brand {
  color: var(--primary);
  font-size: 19px;
  font-weight: 900;
  gap: 10px;
}

.brand-mark {
  align-items: center;
  background: var(--primary);
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-size: 13px;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.nav {
  gap: 24px;
}

.nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav a:hover {
  color: var(--primary);
}

.language-switch {
  border: 1px solid var(--line);
  border-radius: 8px;
  gap: 4px;
  padding: 4px;
}

.language-button {
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  height: 32px;
  padding: 0 10px;
}

.language-button.active {
  background: var(--green-soft);
  color: var(--green);
}

.hero {
  isolation: isolate;
  min-height: calc(70svh - 76px);
  overflow: hidden;
  padding: clamp(44px, 8vw, 96px) clamp(20px, 5vw, 72px) clamp(64px, 8vw, 96px);
  position: relative;
}

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

.hero-media {
  z-index: -3;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 42%, rgba(255, 255, 255, 0.42) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.95));
  z-index: -2;
}

.hero-content {
  max-width: 690px;
  padding-top: clamp(18px, 5vw, 46px);
}

.eyebrow {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  color: var(--primary);
  font-family: "Nunito", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(50px, 8vw, 104px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.92;
  max-width: 760px;
}

h2,
h3,
.brand,
.brand-name {
  font-family: "Nunito", ui-sans-serif, system-ui, sans-serif;
}

.development-checking body > :not(.development-gate),
.development-mode > :not(.development-gate) {
  display: none !important;
}

.development-gate {
  align-items: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(211, 66, 36, 0.1), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(12, 107, 62, 0.08), transparent 34%),
    #ffffff;
  color: var(--ink);
  display: grid;
  min-height: 100svh;
  padding: clamp(24px, 5vw, 72px);
}

.development-gate[hidden] {
  display: none;
}

.development-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 28px 90px rgba(23, 23, 23, 0.12);
  margin: 0 auto;
  max-width: 760px;
  padding: clamp(28px, 6vw, 64px);
  width: 100%;
}

.development-card .brand-row {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-bottom: clamp(40px, 7vw, 76px);
}

.development-card .brand-mark {
  border-radius: 999px;
  flex: 0 0 auto;
  font-size: 18px;
  height: 48px;
  width: 48px;
}

.development-card .brand-name {
  color: var(--primary-dark);
  font-size: clamp(20px, 3vw, 27px);
  font-weight: 950;
}

.development-card .eyebrow {
  color: var(--primary);
  letter-spacing: 0.08em;
}

.development-card h1 {
  color: var(--ink);
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.95;
  max-width: 680px;
}

.development-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(18px, 2.3vw, 23px);
  font-weight: 650;
  line-height: 1.55;
  margin-top: 28px;
  max-width: 650px;
}

.development-status {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(34px, 6vw, 56px);
}

.development-status div {
  background: #fff3ee;
  border: 1px solid rgba(211, 66, 36, 0.16);
  border-radius: 18px;
  padding: 18px;
}

.development-status span {
  color: var(--muted);
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 6px;
}

.development-status strong {
  color: var(--primary-dark);
  display: block;
  font-size: 20px;
  font-weight: 950;
}

.development-card footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 750;
  gap: 10px 20px;
  justify-content: space-between;
  margin-top: clamp(34px, 6vw, 56px);
  padding-top: 22px;
}

.hero-copy {
  color: #343434;
  font-size: clamp(19px, 2.3vw, 26px);
  font-weight: 650;
  line-height: 1.36;
  margin-top: 28px;
  max-width: 620px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primary-action,
.secondary-action {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: 16px;
  font-weight: 900;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
}

.primary-action {
  background: var(--primary);
  color: #ffffff;
}

.secondary-action {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  color: var(--ink);
}

.hero-stats {
  border-top: 1px solid var(--line);
  gap: 28px;
  margin-top: 44px;
  max-width: 620px;
  padding-top: 24px;
}

.hero-stats div {
  min-width: 116px;
}

.hero-stats dt {
  color: var(--primary);
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
}

.hero-stats dd {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  margin: 6px 0 0;
}

.phone-showcase {
  position: absolute;
  right: clamp(18px, 6vw, 92px);
  top: clamp(86px, 13vh, 150px);
  width: min(360px, 32vw);
}

.phone {
  background: #ffffff;
  border: 10px solid #171717;
  border-radius: 34px;
  box-shadow: var(--shadow);
  min-height: 650px;
  overflow: hidden;
  padding: 22px;
}

.phone-status {
  background: #171717;
  border-radius: 0 0 14px 14px;
  height: 22px;
  left: 50%;
  position: absolute;
  top: 10px;
  transform: translateX(-50%);
  width: 112px;
}

.app-top {
  gap: 12px;
  justify-content: space-between;
  margin-top: 18px;
}

.app-top strong {
  color: var(--primary);
  font-size: 18px;
  line-height: 1.08;
}

.app-top span {
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  padding: 8px 12px;
}

.scan-card {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: 78px 1fr;
  margin-top: 24px;
  padding: 14px;
}

.scan-icon {
  background: var(--green-soft);
  border: 1px solid #d9eadc;
  border-radius: 999px;
  height: 74px;
  position: relative;
  width: 74px;
}

.scan-icon::before {
  border: 4px solid var(--green);
  border-radius: 8px;
  content: "";
  height: 25px;
  left: 18px;
  position: absolute;
  top: 24px;
  width: 34px;
}

.scan-icon::after {
  border: 4px solid var(--green);
  border-radius: 999px;
  content: "";
  height: 10px;
  left: 30px;
  position: absolute;
  top: 31px;
  width: 10px;
}

.scan-card h2 {
  font-size: 20px;
  font-weight: 950;
  line-height: 1.05;
}

.scan-card p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  margin-top: 6px;
}

.chips {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.chips span {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  padding: 10px 12px;
}

.recipe-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 22px;
  overflow: hidden;
}

.recipe-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.recipe-card div {
  padding: 14px;
}

.recipe-card h3 {
  font-size: 19px;
  font-weight: 950;
  line-height: 1.1;
}

.recipe-card p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  margin-top: 8px;
}

.section,
.app-preview,
.download {
  padding: clamp(58px, 8vw, 110px) clamp(20px, 5vw, 72px);
}

.intro,
.plans {
  display: grid;
  gap: clamp(28px, 7vw, 96px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.section-copy h2,
.preview-copy h2,
.download h2 {
  font-size: clamp(34px, 5vw, 66px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.98;
}

.section-lead,
.preview-copy p,
.download p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 650;
  line-height: 1.42;
}

.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 0;
}

.feature-card,
.plan-card,
.screen-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.feature-card {
  min-height: 280px;
  padding: 28px;
}

.feature-number {
  color: var(--primary);
  font-size: 14px;
  font-weight: 950;
}

.feature-card h3 {
  font-size: 28px;
  font-weight: 950;
  line-height: 1.05;
  margin-top: 54px;
}

.feature-card p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.48;
  margin-top: 18px;
}

.app-preview {
  background: #f7fbf8;
  display: grid;
  gap: clamp(28px, 6vw, 82px);
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.preview-copy {
  align-self: center;
}

.preview-copy p {
  margin-top: 22px;
}

.preview-gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.screen-card {
  box-shadow: 0 16px 44px rgba(12, 107, 62, 0.08);
  overflow: hidden;
}

.screen-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.screen-card h3 {
  font-size: 18px;
  font-weight: 950;
  padding: 16px;
}

.plans-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.plan-card {
  padding: 28px;
}

.plan-card.highlighted {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.plan-card h3 {
  font-size: 34px;
  font-weight: 950;
}

.plan-card p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  margin-top: 10px;
}

.plan-card.highlighted p,
.plan-card.highlighted li {
  color: rgba(255, 255, 255, 0.88);
}

.plan-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.plan-card li {
  color: #3f454a;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.36;
  padding-left: 24px;
  position: relative;
}

.plan-card li::before {
  background: var(--green);
  border-radius: 999px;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 7px;
  width: 8px;
}

.plan-card.highlighted li::before {
  background: #ffffff;
}

.download {
  align-items: center;
  background: var(--ink);
  color: #ffffff;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.download .eyebrow {
  color: #ffb49f;
}

.download p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 18px;
  max-width: 720px;
}

.store-actions {
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.store-button {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  display: grid;
  gap: 2px;
  min-width: 156px;
  padding: 12px 16px;
}

.store-button span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 700;
}

.store-button strong {
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
}

.footer {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 72px);
}

.footer a {
  color: var(--primary);
  font-weight: 900;
}

.legal-page {
  margin: 0 auto;
  max-width: 920px;
  padding: 72px clamp(20px, 5vw, 52px);
}

.legal-hero {
  border-bottom: 1px solid var(--line);
  margin-bottom: 34px;
  padding-bottom: 28px;
}

.legal-hero h1 {
  font-family: "Nunito", "Manrope", sans-serif;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.95;
  margin: 8px 0 18px;
}

.legal-content {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.legal-content h2 {
  color: var(--ink);
  font-size: 25px;
  margin: 34px 0 10px;
}

.legal-content p,
.legal-content ul {
  margin: 0 0 16px;
}

.legal-content ul {
  padding-left: 22px;
}

.legal-content a {
  color: var(--primary);
  font-weight: 800;
}

.scroll-top {
  align-items: center;
  background: var(--primary);
  border: 0;
  border-radius: 999px;
  bottom: 24px;
  box-shadow: 0 16px 34px rgba(211, 66, 36, 0.28);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 26px;
  font-weight: 950;
  height: 52px;
  justify-content: center;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 24px;
  transform: translateY(12px);
  transition: opacity 160ms ease, transform 160ms ease, background 160ms ease;
  width: 52px;
  z-index: 30;
}

.scroll-top:hover {
  background: var(--primary-dark);
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .phone-showcase {
    margin-top: 42px;
    position: relative;
    right: auto;
    width: min(360px, 100%);
  }

  .hero {
    min-height: auto;
  }

  .intro,
  .plans,
  .app-preview,
  .download {
    grid-template-columns: 1fr;
  }

  .store-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .brand {
    font-size: 16px;
  }

  .hero {
    padding-top: 38px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 58%, rgba(255, 255, 255, 0.78) 100%);
  }

  .hero-stats,
  .feature-grid,
  .preview-gallery,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    align-items: flex-start;
    display: grid;
    gap: 16px;
  }

  .feature-card {
    min-height: 0;
  }

  .feature-card h3 {
    margin-top: 34px;
  }

  .phone {
    min-height: 560px;
  }

  .development-status {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-left: 14px;
    padding-right: 14px;
  }

  .language-button {
    padding: 0 8px;
  }

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

  .scroll-top {
    bottom: 18px;
    height: 48px;
    right: 18px;
    width: 48px;
  }

  .development-gate {
    padding: 18px;
  }

  .development-card {
    border-radius: 22px;
    padding: 24px;
  }
}
