:root {
  --green-deep: #063F32;
  --green-2: #0F6B4F;
  --copper: #B87333;
  --warm-white: #F7F4EA;
  --text: #10231D;
  --border: #D8CDBA;
  --card-white: #FFFFFF;

  --copper-dark: #9c5f28;
  --soft: #eef2ee;
  --line: rgba(216, 205, 186, 0.65);
  --muted: #5F6F68;
  --shadow: 0 16px 40px rgba(6, 63, 50, 0.10);
  --shadow-lg: 0 30px 60px rgba(6, 63, 50, 0.16);
  --radius: 18px;
  --maxw: 1180px;

  --font-head: "Poppins", "Inter", Arial, sans-serif;
  --font-body: "Inter", "Poppins", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0; font-family: var(--font-body); color: var(--text); font-size: 16px;
  background: var(--warm-white); line-height: 1.65; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; margin: 0; letter-spacing: -0.01em; }

.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--copper); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 200; }
.skip-link:focus { left: 12px; top: 12px; }

.eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: .16em; font-size: .76rem; font-weight: 700; color: var(--green-2); margin-bottom: 14px; }
.eyebrow-copper { color: var(--copper); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 1rem; font-family: var(--font-body);
  cursor: pointer; border: 2px solid transparent; transition: transform .15s ease, background .2s, color .2s, box-shadow .2s; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 10px 18px; font-size: .95rem; }
.btn-primary { background: var(--copper); color: #fff; }
.btn-primary:hover { background: var(--copper-dark); box-shadow: 0 10px 24px rgba(184, 115, 51, .35); }
.btn-outline { background: transparent; color: var(--green-deep); border-color: rgba(6, 63, 50, .25); }
.btn-outline:hover { border-color: var(--green-deep); background: rgba(6, 63, 50, .05); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(247, 244, 234, .92); backdrop-filter: saturate(140%) blur(10px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 42px; width: auto; }
.brand-fallback { font-family: var(--font-head); font-weight: 600; font-size: 1.3rem; color: var(--green-deep); align-items: center; }
.brand-fallback span { color: var(--copper); font-weight: 500; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-weight: 500; font-size: .98rem; color: var(--text); transition: color .2s; }
.nav a:hover { color: var(--green-2); }
.nav .btn { color: #fff; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 26px; height: 2px; background: var(--green-deep); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 8px 24px 20px; background: var(--warm-white); border-bottom: 1px solid var(--line); }
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 6px; border-bottom: 1px solid var(--line); font-weight: 500; }
.mobile-nav .btn { margin-top: 10px; color: #fff; }

/* Hero */
.hero { background: linear-gradient(180deg, #fbf9f2 0%, var(--warm-white) 100%); padding: 72px 0 88px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-logo { height: 60px; width: auto; margin-bottom: 22px; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; border-radius: 999px; background: rgba(15, 107, 79, .1); color: var(--green-2); font-weight: 600; font-size: .85rem; margin-bottom: 20px; }
.badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--copper); }
.hero h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--muted); margin: 22px 0 30px; max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.trust-line { margin-top: 30px; font-size: .95rem; color: var(--muted); }

/* Hero app-window mockup */
.hero-visual { position: relative; }
.app-window { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--line); overflow: hidden; }
.app-topbar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: var(--green-deep); }
.app-topbar .dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(247,244,234,.4); }
.app-url { margin-left: 12px; font-size: .78rem; color: rgba(247,244,234,.8); background: rgba(247,244,234,.12); padding: 3px 12px; border-radius: 999px; }
.app-body { display: grid; grid-template-columns: 128px 1fr; min-height: 300px; }
.app-side { background: #f3f6f3; border-right: 1px solid var(--line); padding: 16px 12px; display: flex; flex-direction: column; gap: 7px; }
.app-appicon { width: 40px; height: 40px; border-radius: 11px; overflow: hidden; margin-bottom: 8px; background: var(--green-deep); }
.app-appicon img { width: 100%; height: 100%; object-fit: cover; }
.app-appicon.noimg { background: var(--green-deep); }
.app-navi { font-size: .82rem; color: var(--muted); padding: 7px 10px; border-radius: 8px; font-weight: 500; }
.app-navi.active { background: var(--green-2); color: #fff; }
.app-main { padding: 20px; }
.app-h { font-family: var(--font-head); font-size: 1.15rem; color: var(--green-deep); margin-bottom: 14px; }
.app-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.app-stat { background: var(--soft); border-radius: 12px; padding: 12px; }
.app-stat b { display: block; font-size: 1.5rem; color: var(--green-deep); font-family: var(--font-head); }
.app-stat span { font-size: .72rem; color: var(--muted); }
.app-row { display: flex; align-items: center; justify-content: space-between; padding: 11px 14px; border: 1px solid var(--line); border-radius: 10px; margin-bottom: 8px; font-size: .85rem; }
.app-row em { font-style: normal; font-size: .74rem; font-weight: 600; color: var(--muted); background: var(--soft); padding: 3px 10px; border-radius: 999px; }
.app-row em.ok { color: var(--green-2); background: rgba(15,107,79,.12); }

/* Strip */
.strip { background: var(--green-deep); color: var(--warm-white); }
.strip-launch { background: linear-gradient(90deg, #063F32 0%, #0F6B4F 55%, #8a5524 100%); }
.strip-audience { border-top: 1px solid rgba(247,244,234,.08); }
.strip-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 34px; padding: 20px 24px; }
.strip-inner span { font-weight: 600; font-size: .95rem; color: rgba(247,244,234,.85); position: relative; }
.strip-inner span:not(:last-child)::after { content: "•"; color: var(--copper); margin-left: 34px; }

/* App Store launch block */
.get-app-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.get-app-copy p { color: var(--muted); margin: 0 0 20px; max-width: 52ch; }
.get-app-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.get-app-list li { padding-left: 28px; position: relative; color: var(--text); font-weight: 500; }
.get-app-list li::before { content: ""; position: absolute; left: 0; top: .45em; width: 14px; height: 14px; border-radius: 50%; background: var(--copper); box-shadow: inset 0 0 0 3px rgba(255,255,255,.35); }
.get-app-badges { background: var(--card-white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 14px; align-items: stretch; }
.get-app-label { margin: 0 0 4px; text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 700; color: var(--copper); }
.store-badge {
  display: flex; flex-direction: column; justify-content: center; gap: 2px;
  min-height: 64px; padding: 12px 22px 12px 56px; border-radius: 12px; color: #fff;
  background: #111 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M16.37 12.74c-.03-2.3 1.88-3.4 1.97-3.46-1.07-1.57-2.74-1.78-3.33-1.8-1.42-.14-2.77.84-3.49.84-.72 0-1.84-.82-3.03-.8-1.56.02-3 .91-3.8 2.3-1.62 2.81-.41 6.97 1.16 9.25.77 1.12 1.69 2.37 2.9 2.33 1.16-.05 1.6-.75 3-.75s1.8.75 3.03.73c1.25-.02 2.04-1.14 2.8-2.27.88-1.29 1.24-2.54 1.26-2.6-.03-.01-2.42-.93-2.45-3.67zM14.3 5.96c.64-.78 1.07-1.86.95-2.94-.92.04-2.03.61-2.69 1.39-.59.69-1.1 1.79-.96 2.84 1.02.08 2.06-.52 2.7-1.29z'/%3E%3C/svg%3E") 18px center / 28px no-repeat;
  border: 1px solid #000; transition: transform .15s ease, opacity .2s;
}
.store-badge:hover { transform: translateY(-1px); opacity: .95; }
.store-google {
  background: #111 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ea4335' d='M3 20.5V3.5L13.5 12z'/%3E%3Cpath fill='%23fbbc04' d='M3 3.5L13.5 12l4.7-2.7L6.2 1.2z'/%3E%3Cpath fill='%234285f4' d='M13.5 12L6.2 22.8l11.9-6.9L18.2 14.7z'/%3E%3Cpath fill='%2334a853' d='M13.5 12l4.7 2.7 3.3-1.9V11.2z'/%3E%3C/svg%3E") 18px center / 26px no-repeat;
}
.store-badge-top { font-size: .7rem; letter-spacing: .04em; opacity: .85; line-height: 1.1; }
.store-badge-name { font-family: var(--font-head); font-size: 1.35rem; font-weight: 600; line-height: 1.15; }
.get-app-note { margin: 6px 0 0; font-size: .82rem; color: var(--muted); line-height: 1.45; }
.legal-block { max-width: 720px; }
.legal-block p { color: var(--muted); margin: 0; }
.legal-block a { color: var(--green-2); font-weight: 600; }

/* Standalone legal and support pages */
.legal-page {
  width: min(920px, calc(100% - 32px));
  margin: 48px auto;
  padding: clamp(32px, 6vw, 72px);
  background: var(--card-white);
  border: 1px solid var(--border);
  border-top: 8px solid var(--green-deep);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
.legal-page::before {
  content: "PARSLIA KITCHEN OS";
  display: block;
  margin-bottom: 18px;
  color: var(--copper-dark);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .16em;
}
.legal-page h1 { color: var(--green-deep); font-size: clamp(2rem, 5vw, 3.2rem); }
.legal-page h2 { margin-top: 36px; color: var(--green-deep); font-size: 1.35rem; }
.legal-page p, .legal-page li { color: var(--muted); }
.legal-page ul { padding-left: 1.25rem; }
.legal-page a { color: var(--green-2); font-weight: 650; text-decoration: underline; text-underline-offset: 3px; }
.legal-page a:hover { color: var(--copper-dark); }

@media (max-width: 600px) {
  .legal-page { margin: 16px auto; padding: 28px 22px; border-radius: 16px; }
}

/* Sections */
.section { padding: 92px 0; }
.section-light { background: var(--warm-white); }
.section-soft { background: var(--soft); }
.section-dark { background: var(--green-deep); color: var(--warm-white); }
.section-accent { background: linear-gradient(135deg, var(--green-2), var(--green-deep)); color: var(--warm-white); }
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head-left { margin: 0 0 8px; text-align: left; }
.section-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); }
.section-head p { font-size: 1.1rem; margin: 16px 0 0; color: var(--muted); }
.section-dark .section-head p { color: rgba(247,244,234,.85); }
.section-dark .eyebrow { color: var(--copper); }

/* Problem */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.problem-card { background: var(--card-white); border: 1px solid var(--border); border-left: 4px solid var(--copper); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.problem-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.problem-card h3 { font-size: 1.25rem; color: var(--green-deep); }
.problem-card p { margin: 10px 0 0; color: var(--muted); }

/* Feature cards */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card { background: var(--card-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; font-size: 1.4rem; background: var(--soft); margin-bottom: 16px; }
.card h3 { font-size: 1.2rem; color: var(--green-deep); }
.card p { margin: 8px 0 0; color: var(--muted); font-size: .95rem; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { background: var(--card-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.step-num { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--green-deep); color: var(--warm-white); font-family: var(--font-head); font-size: 1.3rem; font-weight: 600; margin-bottom: 16px; }
.step h3 { font-size: 1.2rem; color: var(--green-deep); }
.step p { margin: 8px 0 0; color: var(--muted); font-size: .95rem; }

/* Modules */
.module-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.module-card { background: rgba(247,244,234,.06); border: 1px solid rgba(247,244,234,.16); border-radius: 14px; padding: 20px 18px; transition: transform .2s, border-color .2s; }
.module-card:hover { transform: translateY(-3px); border-color: rgba(184,115,51,.45); }
.module-icon { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: rgba(184,115,51,.18); font-size: 1.1rem; margin-bottom: 12px; }
.module-card h3 { font-size: 1rem; color: var(--warm-white); margin-bottom: 6px; }
.module-card p { margin: 0; font-size: .88rem; color: rgba(247,244,234,.72); line-height: 1.45; }

/* App preview screens */
.screen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.screen-card h3 { font-size: 1.15rem; color: var(--green-deep); margin: 18px 0 6px; }
.screen-card p { margin: 0; color: var(--muted); font-size: .95rem; }
.screen-frame { background: var(--card-white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.screen-card:hover .screen-frame { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.screen-frame { display: grid; grid-template-columns: 88px 1fr; min-height: 220px; }
.screen-sidebar { background: var(--green-deep); padding: 14px 10px; display: flex; flex-direction: column; gap: 6px; }
.screen-nav { font-size: .68rem; color: rgba(247,244,234,.55); padding: 6px 8px; border-radius: 6px; font-weight: 500; }
.screen-nav.active { background: var(--green-2); color: #fff; }
.screen-main { padding: 16px; background: var(--warm-white); }
.screen-title { font-family: var(--font-head); font-size: .95rem; color: var(--green-deep); margin-bottom: 12px; font-weight: 600; }
.screen-row { display: flex; align-items: center; justify-content: space-between; padding: 8px 10px; border: 1px solid var(--border); border-radius: 8px; margin-bottom: 6px; font-size: .78rem; }
.screen-row em { font-style: normal; font-size: .68rem; font-weight: 600; color: var(--muted); background: var(--soft); padding: 2px 8px; border-radius: 999px; }
.screen-row em.ok { color: var(--green-2); background: rgba(15,107,79,.12); }
.screen-row.warn em { color: var(--copper-dark); background: rgba(184,115,51,.14); }
.screen-btn { margin-top: 8px; width: 100%; padding: 7px 10px; border: 0; border-radius: 8px; background: var(--copper); color: #fff; font-size: .72rem; font-weight: 600; font-family: var(--font-body); cursor: default; }

/* Benefits */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit { background: var(--card-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.benefit:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.b-num { font-family: var(--font-head); font-size: 2rem; color: var(--copper); font-weight: 600; }
.benefit h3 { font-size: 1.35rem; margin: 8px 0 6px; color: var(--green-deep); }
.benefit p { margin: 0; color: var(--muted); }

/* Early access */
.early-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.early-copy h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); }
.early-copy p { font-size: 1.1rem; margin: 18px 0 0; color: rgba(247,244,234,.9); }
.contact-email { font-weight: 700; }
.contact-email a { color: #fff; border-bottom: 2px solid var(--copper); padding-bottom: 2px; }
.contact-form { background: #fff; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-lg); }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; color: var(--green-deep); }
.field input, .field textarea { width: 100%; padding: 13px 15px; border-radius: 10px; border: 1px solid rgba(6,63,50,.2); font: inherit; color: var(--text); background: var(--warm-white); transition: border .2s, box-shadow .2s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--green-2); box-shadow: 0 0 0 3px rgba(15,107,79,.18); }
.field textarea { resize: vertical; }
.contact-form .btn { width: 100%; }
.form-note { margin: 12px 0 0; font-size: .95rem; min-height: 1.2em; }
.form-note.ok { color: var(--green-2); font-weight: 600; }
.form-note.err { color: #b23b3b; font-weight: 600; }

/* Footer */
.site-footer { background: var(--green-deep); color: var(--warm-white); padding: 56px 0 28px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-bottom: 26px; border-bottom: 1px solid rgba(247,244,234,.14); }
.footer-logo { height: 46px; width: auto; }
.footer-fallback { font-family: var(--font-head); font-weight: 600; font-size: 1.2rem; margin: 0; }
.footer-tagline { margin: 8px 0 0; color: rgba(247,244,234,.72); font-size: .95rem; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: rgba(247,244,234,.85); font-weight: 500; }
.footer-links a:hover { color: var(--copper); }
.footer-bottom { padding-top: 22px; }
.footer-bottom p { margin: 0; font-size: .88rem; color: rgba(247,244,234,.6); }

/* Responsive */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: 2; }
  .card-grid, .module-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .screen-grid { grid-template-columns: 1fr; gap: 32px; }
  .early-grid, .get-app-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .hero { padding: 48px 0 64px; }
  .header-inner { height: 64px; }
  .brand-logo { height: 36px; }
  .problem-grid, .benefits, .card-grid, .steps, .module-grid { grid-template-columns: 1fr; }
  .app-stats { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .strip-inner span:not(:last-child)::after { margin-left: 14px; }
  .strip-inner { gap: 8px 14px; }
}
