/* Robinette marketing site. Fully static, no external requests. */

:root {
  /* Peach palette */
  --peach-50: #fff7f1;
  --peach-100: #ffeede;
  --peach-200: #ffdcc1;
  --peach-300: #ffc59c;
  --peach-400: #ffa873;
  --peach-500: #ff8b4d;
  --peach-600: #f2754b; /* primary */
  --peach-700: #d65a30;
  --peach-800: #a8431f;
  --peach-900: #7c3217;

  --ink: #2a1c14;
  --ink-soft: #6b5648;
  --cream: #fff9f4;
  --white: #ffffff;
  --line: #f0e0d3;

  --shadow-sm: 0 1px 2px rgba(124, 50, 23, 0.06), 0 1px 3px rgba(124, 50, 23, 0.08);
  --shadow-md: 0 8px 24px rgba(124, 50, 23, 0.10);
  --shadow-lg: 0 24px 60px rgba(124, 50, 23, 0.16);

  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1120px;
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { line-height: 1.1; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--peach-700);
  background: var(--peach-100); border: 1px solid var(--peach-200);
  padding: 6px 12px; border-radius: 999px;
}
.muted { color: var(--ink-soft); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  font-weight: 650; font-size: 15px; padding: 13px 22px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer; transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  color: #fff; background: linear-gradient(180deg, var(--peach-500), var(--peach-600));
  box-shadow: 0 6px 16px rgba(242, 117, 75, 0.35);
}
.btn-primary:hover { box-shadow: 0 10px 22px rgba(242, 117, 75, 0.45); }
.btn-ghost { background: var(--white); color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--peach-300); }
.btn-lg { padding: 16px 28px; font-size: 16px; }

/* Header */
header.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 249, 244, 0.85); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; letter-spacing: -0.02em; }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a.link { font-size: 15px; font-weight: 550; color: var(--ink-soft); }
.nav-links a.link:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.menu-btn { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 84px 0 72px; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(1100px 500px at 78% -10%, var(--peach-200), transparent 60%),
    radial-gradient(800px 480px at 5% 0%, var(--peach-100), transparent 55%);
}
.hero-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero h1 { font-size: 56px; font-weight: 820; margin: 0 0 36px; }
.hero h1 .accent {
  background: linear-gradient(180deg, var(--peach-600), var(--peach-800));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; justify-content: center; }
.hero-note { margin-top: 18px; font-size: 14px; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
.hero-note svg { color: var(--peach-600); flex-shrink: 0; }

/* App screenshot */
.hero-shot {
  display: block; width: 100%; height: auto;
}

/* Trust bar */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 26px 0; }
.trust-item { display: flex; align-items: flex-start; gap: 12px; }
.trust-item svg { color: var(--peach-600); flex-shrink: 0; margin-top: 1px; }
.trust-item b { display: block; font-size: 15px; }
.trust-item span { font-size: 13px; color: var(--ink-soft); }

/* Sections */
section { padding: 88px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section-head h2 { font-size: 40px; font-weight: 800; margin: 16px 0 14px; }
.section-head p { font-size: 18px; color: var(--ink-soft); }

/* Local / why */
.why { background: linear-gradient(180deg, var(--peach-50), var(--cream)); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
}
.why-card .ic {
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  background: var(--peach-100); color: var(--peach-700); margin-bottom: 16px;
}
.why-card h3 { font-size: 19px; margin-bottom: 8px; }
.why-card p { font-size: 15px; color: var(--ink-soft); }

/* Features */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feat {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.feat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--peach-200); }
.feat .ic { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: var(--peach-100); color: var(--peach-700); margin-bottom: 14px; }
.feat h3 { font-size: 17px; margin-bottom: 6px; }
.feat p { font-size: 14.5px; color: var(--ink-soft); }

/* Pricing */
.pricing { background: linear-gradient(180deg, var(--cream), var(--peach-50)); }
.price-card {
  max-width: 560px; margin: 0 auto; background: var(--white);
  border: 1px solid var(--peach-200); border-radius: 22px; box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.price-top { padding: 40px 40px 28px; text-align: center; background: linear-gradient(180deg, var(--peach-100), var(--white)); }
.price-tag { display: flex; align-items: baseline; justify-content: center; gap: 8px; margin: 10px 0 6px; }
.price-tag .amount { font-size: 64px; font-weight: 850; letter-spacing: -0.03em; }
.price-tag .cur { font-size: 30px; font-weight: 750; color: var(--peach-700); }
.price-tag .per { font-size: 16px; color: var(--ink-soft); }
.price-sub { font-size: 15px; color: var(--ink-soft); }
.price-list { padding: 28px 40px 8px; display: grid; gap: 12px; }
.price-list li { list-style: none; display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.price-list svg { color: var(--peach-600); flex-shrink: 0; margin-top: 3px; }
.price-foot { padding: 24px 40px 38px; text-align: center; }
.price-foot .btn { width: 100%; }
.price-foot .fine { margin-top: 14px; font-size: 13px; color: var(--ink-soft); }
.trial-banner {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px;
  color: var(--peach-800); background: var(--peach-100); border: 1px solid var(--peach-200);
  padding: 8px 16px; border-radius: 999px;
}

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
details.faq {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 6px 20px; box-shadow: var(--shadow-sm);
}
details.faq summary {
  cursor: pointer; list-style: none; font-weight: 650; font-size: 16.5px;
  padding: 16px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary .chev { transition: transform .2s ease; color: var(--peach-600); flex-shrink: 0; }
details.faq[open] summary .chev { transform: rotate(180deg); }
details.faq p { padding: 0 0 18px; color: var(--ink-soft); font-size: 15px; }

/* CTA band */
.cta-band { padding: 0 0 96px; }
.cta-inner {
  background: linear-gradient(135deg, var(--peach-600), var(--peach-800));
  border-radius: 28px; padding: 56px 40px; text-align: center; color: #fff;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.cta-inner h2 { font-size: 38px; font-weight: 820; margin-bottom: 12px; }
.cta-inner p { font-size: 18px; opacity: 0.92; max-width: 520px; margin: 0 auto 28px; }
.cta-inner .btn-primary { background: #fff; color: var(--peach-800); box-shadow: 0 10px 24px rgba(0,0,0,0.2); }
.cta-inner .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); box-shadow: none; }

/* Download */
.download { background: linear-gradient(180deg, var(--peach-50), var(--cream)); }
.dl-wrap { text-align: center; }
.dl-soon {
  display: inline-block; margin-top: 22px; padding: 9px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 600; color: var(--peach-800);
  background: var(--peach-100); border: 1px solid var(--peach-200);
  opacity: 0; transform: translateY(-4px); transition: opacity .18s ease, transform .18s ease;
  pointer-events: none;
}
.dl-wrap:hover .dl-soon, .dl-soon.show { opacity: 1; transform: translateY(0); }

/* Footer */
footer { border-top: 1px solid var(--line); background: var(--white); padding: 40px 0; }
.foot-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.foot-inner .brand img { width: 28px; height: 28px; }
.foot-links { display: flex; gap: 22px; font-size: 14px; color: var(--ink-soft); }
.foot-copy { font-size: 13px; color: var(--ink-soft); }

/* Responsive */
@media (max-width: 920px) {
  .hero h1 { font-size: 42px; }
  .why-grid, .feat-grid, .trust-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .menu-btn { display: inline-flex; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
    position: absolute; top: 68px; left: 0; right: 0; background: var(--cream);
    border-bottom: 1px solid var(--line); padding: 20px 24px;
  }
}
@media (max-width: 600px) {
  section { padding: 60px 0; }
  .hero h1 { font-size: 34px; }
  .section-head h2 { font-size: 30px; }
  .why-grid, .feat-grid, .trust-grid { grid-template-columns: 1fr; }
  .trust-grid { gap: 22px; max-width: 300px; margin: 0 auto; }
  .price-tag .amount { font-size: 52px; }
  .nav-cta, .hero-note { display: none; }
}
