/* ============== Tokens ============== */
:root{
  --cream: #F1E8D6;
  --cream-warm: #EFE3CC;
  --cream-soft: #F6EFE0;
  --paper: #FFFFFF;
  --ink: #1A1614;
  --ink-2: #3A332D;
  --ink-3: #6B635B;
  --ink-4: #8E867D;
  --rule: rgba(26,22,20,.08);
  --rule-2: rgba(26,22,20,.14);

  --terracotta: #E27B58;
  --terracotta-2: #D86B45;
  --terracotta-3: #B85431;
  --terracotta-tint: #F6DFD2;
  --terracotta-tint-2: #FAE9DD;

  --green: #7AB890;
  --green-2: #5E9C75;
  --green-tint: #DCEBE0;

  --pink: #E84C66;
  --blue: #5E7E9A;
  --mustard: #B89A5E;
  --plum: #8E5E7E;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 40px;

  --shadow-sm: 0 1px 2px rgba(26,22,20,.05), 0 4px 14px rgba(26,22,20,.05);
  --shadow-md: 0 2px 6px rgba(26,22,20,.05), 0 18px 50px rgba(26,22,20,.10);
  --shadow-phone: 0 30px 60px -20px rgba(26,22,20,.35), 0 60px 120px -30px rgba(26,22,20,.30);

  --font: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;

  --maxw: 1200px;
  --container-pad: 28px;
}

*{ box-sizing: border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior: smooth; }
html, body{ margin:0; padding:0; }
body{
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img,svg{ max-width:100%; display:block; }
a{ color: var(--ink); }
a:focus-visible, button:focus-visible{
  outline: 2px solid var(--terracotta-3);
  outline-offset: 3px;
  border-radius: 4px;
}
button{ font-family: inherit; cursor: pointer; }

/* ============== Layout primitives ============== */
.wrap{ width:100%; max-width: var(--maxw); margin:0 auto; padding: 0 var(--container-pad); }
section{ padding: 112px 0; position: relative; }
@media (max-width: 760px){ section{ padding: 72px 0; } }

.eyebrow{
  display: inline-flex; align-items:center; gap:10px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terracotta-3);
  margin: 0 0 22px;
}
.eyebrow::before{
  content:""; width: 22px; height:1.5px;
  background: var(--terracotta-3); border-radius: 99px;
}
h1, h2, h3, h4{
  color: var(--ink);
  letter-spacing: -.025em;
  line-height: 1.04;
  margin: 0 0 .35em;
  text-wrap: balance;
  font-weight: 700;
}
h1{ font-size: clamp(48px, 7vw, 92px); font-weight: 800; letter-spacing: -.035em; }
h2{ font-size: clamp(34px, 4.4vw, 56px); }
h3{ font-size: clamp(20px, 2vw, 26px); font-weight: 600; }
p{ margin: 0 0 1em; color: var(--ink-2); text-wrap: pretty; }
.lede{ font-size: clamp(18px, 1.35vw, 21px); color: var(--ink-2); max-width: 56ch; line-height: 1.5; }

.italic-accent{ font-style: italic; font-weight: 700; color: var(--terracotta-3); }

/* ============== Nav ============== */
.nav{
  position: sticky; top: 0; z-index: 50;
  background: rgba(241,232,214,.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--rule);
}
.nav-inner{
  display:flex; align-items:center; justify-content: space-between;
  height: 68px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight: 700; font-size: 19px; letter-spacing: -.02em;
  text-decoration:none; color: var(--ink);
}
.brand-mark{
  width: 40px; height: 40px; border-radius: 9px;
  background: var(--terracotta-2);
  display:grid; place-items:center;
  color: white; font-weight: 700;
  position: relative; overflow: hidden;
}
.brand-mark svg{ width: 18px; height: 18px; }
.brand .ps-lo{ color: var(--terracotta-3); font-weight: 400; }
.nav-links{ display:flex; gap: 32px; align-items:center; }
.nav-links a{
  text-decoration: none; color: var(--ink-2);
  font-size: 14.5px; font-weight: 500;
  transition: color .15s ease;
}
.nav-links a:hover{ color: var(--ink); }
.nav-cta{
  background: var(--ink); color: white !important;
  padding: 10px 18px; border-radius: 999px;
  text-decoration:none; font-size: 14px; font-weight: 600;
  transition: background .15s ease, transform .15s ease;
}
.nav-cta:hover{ background: var(--terracotta-3); transform: translateY(-1px); }
@media (max-width: 760px){
  .nav-links a:not(.nav-cta){ display: none; }
}

/* ============== Hero ============== */
.hero{
  padding-top: 70px;
  padding-bottom: 96px;
  position: relative;
  overflow: hidden;
}
.hero::before{
  content:""; position:absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 90% -10%, rgba(226,123,88,.08), transparent 60%),
    radial-gradient(700px 360px at -10% 30%, rgba(122,184,144,.06), transparent 70%);
  pointer-events:none;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; gap: 56px; }
}
.hero h1 .stroke{
  position: relative; white-space: nowrap; display: inline-block;
}
.hero h1 .stroke::after{
  content:""; position:absolute; left:-2px; right:-2px; bottom: .08em;
  height: .22em;
  background: var(--terracotta);
  opacity: .35;
  border-radius: 99px;
  z-index: -1;
  transform: skew(-3deg);
}
.hero .lede{ margin-top: 26px; max-width: 50ch; }
.hero-cta{
  display:flex; gap: 16px; align-items: center; flex-wrap: wrap;
  margin-top: 36px;
}
.app-store-btn{
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink); color: white !important;
  padding: 12px 22px 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  box-shadow: 0 4px 14px rgba(26,22,20,.18);
}
.app-store-btn:hover{ background: #000; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,22,20,.24); }
.app-store-btn svg{ width: 28px; height: 28px; flex-shrink:0; }
.app-store-btn .as-small{ font-size: 11px; opacity:.85; display:block; line-height:1; margin-bottom:3px; letter-spacing: .04em; }
.app-store-btn .as-big{ font-size: 18px; font-weight: 600; line-height: 1; letter-spacing: -.01em; }

.hero-meta{
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13.5px;
  color: var(--ink-3);
  font-weight: 500;
}
.hero-meta .dot{ width: 4px; height:4px; border-radius:50%; background: var(--ink-4); }

.hero-stats{
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
  max-width: 560px;
}
.hstat{ }
.hstat .v{
  font-size: 28px; font-weight: 700; letter-spacing: -.02em;
  color: var(--ink); display:block; line-height: 1.05;
}
.hstat .l{
  font-size: 12.5px; color: var(--ink-3); margin-top: 4px; font-weight: 500;
  letter-spacing: .01em;
}

/* hero phone column */
.hero-phone{
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 720px;
}
.hero-phone .phone{
  transform: rotate(-3deg);
}
.hero-phone::before{
  content:"";
  position: absolute; inset: 0;
  background:
    radial-gradient(360px 200px at 50% 55%, rgba(226,123,88,.18), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* ============== Generic phone frame ============== */
.phone{
  position: relative;
  width: 320px;
  background: transparent;
  z-index: 2;
}
.phone-screen{
  position: relative;
  width: 100%;
  aspect-ratio: 320 / 670;
  background: transparent;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.phone-notch{
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 28px; border-radius: 99px;
  background: #0c0c0d;
  z-index: 5;
}
.phone-statusbar{
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 24px 4px;
  font-size: 13px; font-weight: 600;
  color: var(--ink);
  position: relative; z-index: 2;
}
.phone-statusbar .sb-right{
  display: inline-flex; gap: 6px; align-items: center;
}
.phone-body{ flex: 1; min-height: 0; overflow: hidden; padding: 4px 0 0; display: flex; flex-direction: column; }

/* generic app top bar */
.app-topbar{
  background: var(--paper);
  padding: 14px 18px 18px;
  display: flex; align-items: center; gap: 14px;
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
  position: relative;
  box-shadow: 0 2px 0 rgba(26,22,20,.02);
}
.app-back-pill{
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--cream-soft);
  border-radius: 99px;
  padding: 7px 14px 7px 10px;
  font-size: 14px; font-weight: 600;
}
.app-back-pill svg{ width: 14px; height: 14px; }
.app-title{ font-size: 15px; font-weight: 600; color: var(--ink); }

/* ============== Timeline phone (hero) ============== */
.tl-ready{
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px 14px;
}
.tl-ready .badge{
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--green); color: white;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.tl-ready .badge svg{ width: 20px; height: 20px; }
.tl-ready .t1{ font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.1; }
.tl-ready .t2{ font-size: 12.5px; color: var(--ink-3); margin-top: 2px; }
.tl-sep{ height: 1px; background: var(--rule); margin: 0 18px; }

.tl-label{
  font-size: 10px; letter-spacing: .15em;
  color: var(--ink-4); font-weight: 700;
  padding: 16px 18px 8px;
  text-transform: uppercase;
}
.tl{
  padding: 0 16px 4px;
  position: relative;
}
.tl-header{
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: end;
  padding-bottom: 8px;
}
.tl-axis{
  position: relative; height: 18px;
  display: flex; justify-content: space-between;
  font-size: 10px;
  color: var(--ink-4); font-weight: 500;
}
.tl-axis span{ position: relative; }
.tl-axis span::after{
  content:""; position: absolute; left: 50%; bottom: -4px;
  width: 1px; height: 4px; background: var(--rule-2);
}
.tl-row{
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: center;
  gap: 8px;
  padding: 3px 0;
}
.tl-row .lab{
  font-size: 13px; color: var(--ink); font-weight: 600; line-height: 1.1;
  padding-right: 6px;
}
.tl-track{
  position: relative;
  background: rgba(26,22,20,.05);
  height: 32px;
  border-radius: 8px;
  overflow: hidden;
}
.tl-bar{
  position: absolute; top: 0; bottom: 0;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 9.5px; font-weight: 700;
  letter-spacing: .12em;
  border-radius: 4px;
}
.tl-now{
  position: absolute; top: 32px; bottom: 16px;
  left: calc(78px + 18px + 32%);
  width: 2px; background: var(--terracotta-2);
  z-index: 3;
  pointer-events: none;
}
.tl-now::before{
  content: "5:24 PM";
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--terracotta-2); color: white;
  font-size: 9.5px; font-weight: 700;
  padding: 3px 7px; border-radius: 99px;
  white-space: nowrap;
}


/* ============== Hero Phone Image ============== */
.phone-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============== Sections ============== */
.section-title-block{ max-width: 720px; margin-bottom: 64px; }
.section-title-block .lede{ margin-top: 16px; }

/* ============== Problem ============== */
.problem{
  background:
    linear-gradient(180deg, transparent 0%, rgba(216,107,69,.06) 100%),
    var(--cream);
}
.problem-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px){ .problem-grid{ grid-template-columns: 1fr; gap: 48px; } }

.problem-visual{
  position: relative;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 28px;
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
}
.problem-visual .pvtitle{
  font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 18px;
}
.dish-row{
  display: grid;
  grid-template-columns: 92px 1fr 60px;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--rule);
}
.dish-row:last-child{ border-bottom: none; }
.dish-row .dn{ font-size: 14px; font-weight: 600; color: var(--ink); }
.dish-row .meter{ height: 8px; border-radius: 99px; background: var(--cream-warm); position: relative; overflow: hidden; }
.dish-row .meter .fill{ position: absolute; top: 0; bottom: 0; border-radius: 99px; }
.dish-row .st{
  font-size: 11.5px; font-weight: 700; letter-spacing: .05em;
  text-align: right;
  text-transform: uppercase;
}
.st-cold{ color: #5E7E9A; }
.st-hot{ color: var(--terracotta-3); }
.st-rest{ color: #8E5E7E; }
.problem-visual .verdict{
  margin-top: 18px;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; border-top: 1px solid var(--rule);
}
.verdict .ll{ font-size: 12.5px; color: var(--ink-3); }
.verdict .vv{ font-size: 14px; font-weight: 700; color: var(--pink); }

/* Improved Problem visual (Chart style) */
.pv-chart-area {
  position: relative;
  margin-top: 32px;
}
.pv-grid-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 92px 1fr 60px;
  gap: 14px;
  pointer-events: none;
  z-index: 5;
}
.pv-dinner-line {
  grid-column: 2;
  position: relative;
  height: 100%;
}
.pv-dinner-line::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 80%;
  width: 2px;
  background: var(--pink);
}
.pv-dinner-line::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 80%;
  border-left: 1px dashed var(--pink);
  opacity: 0.3;
}
.dl-tag {
  position: absolute;
  top: -28px;
  left: 80%;
  transform: translateX(-50%);
  background: var(--pink);
  color: white;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pv-axis {
  display: grid;
  grid-template-columns: 92px 1fr 60px;
  gap: 14px;
  margin-top: 12px;
  padding-bottom: 8px;
}
.pv-axis-ticks {
  grid-column: 2;
  display: flex;
  justify-content: space-between;
  padding: 0 2px;
}
.pv-axis-ticks span {
  font-size: 9px;
  color: var(--ink-4);
  font-weight: 700;
  position: relative;
  font-family: var(--mono);
}
.pv-axis-ticks span::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 1px;
  height: 4px;
  background: var(--rule-2);
}

.problem-visual::before, .problem-visual::after{
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  background: var(--terracotta);
  border-radius: 4px;
  transform: rotate(45deg);
}
.problem-visual::before{ top: -6px; left: 40px; }
.problem-visual::after{ bottom: -6px; right: 60px; background: var(--green); }

/* ============== How it works ============== */
.how{ background: var(--cream); position: relative; }
.how-steps{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}
@media (max-width: 980px){
  .how-steps{ grid-template-columns: 1fr; gap: 48px; }
}
.step{
  display: flex; flex-direction: column; align-items: stretch;
}
.step-num{
  font-size: 13px; font-weight: 700;
  color: var(--terracotta-3);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
  letter-spacing: .08em;
}
.step-num::before{
  content: ""; width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--terracotta-2); color: white;
  display: inline-grid; place-items: center;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0;
}
.step:nth-child(1) .step-num::before{ content: "1"; }
.step:nth-child(2) .step-num::before{ content: "2"; }
.step:nth-child(3) .step-num::before{ content: "3"; }
.step h3{ font-size: 22px; margin-bottom: 8px; }
.step p{ font-size: 15px; color: var(--ink-2); margin-bottom: 28px; }
.step-phone-wrap{
  display: flex; justify-content: center;
  padding: 28px 16px;
  margin-top: auto;
  position: relative;
}
.step-phone-wrap .phone{ transform: scale(.85); transform-origin: top center; margin-bottom: -90px; }

/* ============== My Meals phone ============== */
.mm-head{
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 18px 8px;
}
.mm-head .t{
  font-size: 22px; font-weight: 700; letter-spacing: -.02em;
  color: var(--ink);
}
.mm-head .avatar{
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--terracotta-2); color: white;
  display: grid; place-items: center;
}
.mm-head .avatar svg{ width: 18px; height: 18px; }

.mm-search{
  margin: 4px 18px 16px;
  background: var(--paper);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--ink-3);
}
.mm-search svg{ width: 14px; height: 14px; color: var(--ink-3); }

.mm-chips{
  display: flex; gap: 8px; padding: 0 18px 8px;
}
.chip{
  background: var(--paper);
  border-radius: 99px;
  padding: 7px 14px;
  font-size: 12px; font-weight: 600;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
}
.chip.active{ background: var(--ink); color: white; }
.chip .ct{
  font-size: 11px; opacity: .7; font-weight: 500;
}
.chip.add{
  background: transparent;
  border: 1.5px dashed var(--rule-2);
  color: var(--ink-3);
}

.mm-meta{
  display: flex; justify-content: space-between;
  padding: 12px 18px 8px;
  font-size: 11px; color: var(--ink-3);
}
.mm-cards{
  padding: 0 14px;
  overflow: hidden;
  flex: 1;
}
.meal-card{
  background: var(--paper);
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 10px;
  border: 1px solid rgba(26,22,20,.04);
}
.meal-card .mc-top{
  display: flex; justify-content: space-between; align-items: flex-start;
}
.meal-card .mc-title{
  font-size: 15px; font-weight: 700; color: var(--ink);
  letter-spacing: -.01em;
}
.meal-card .mc-dots{ color: var(--ink-3); font-size: 16px; line-height: 1; }
.meal-card .mc-sub{
  font-size: 11.5px; color: var(--ink-3); margin-top: 2px;
}
.meal-card .mc-bottom{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; align-items: center;
}
.meal-card .mc-time{
  font-size: 11.5px; color: var(--ink-3);
  display: inline-flex; align-items: center; gap: 4px;
}
.meal-card .mc-time::before{
  content: ""; width: 10px; height: 10px; border-radius: 50%;
  border: 1.4px solid var(--ink-3);
}
.meal-card .mc-pill{
  background: var(--terracotta-tint);
  color: var(--terracotta-3);
  font-size: 10.5px; font-weight: 700;
  padding: 3px 8px; border-radius: 99px;
}

.mm-fab{
  position: absolute;
  right: 22px; bottom: 90px;
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--terracotta-2);
  color: white;
  display: grid; place-items: center;
  box-shadow: 0 8px 20px rgba(216,107,69,.36);
  z-index: 4;
}
.mm-fab svg{ width: 22px; height: 22px; }

.mm-tabbar{
  margin-top: auto;
  background: var(--paper);
  border-radius: 20px 20px 0 0;
  display: flex; justify-content: space-around; align-items: center;
  padding: 14px 0 22px;
  border-top: 1px solid var(--rule);
}
.mm-tab{
  font-size: 13px; color: var(--ink-3); font-weight: 600;
  position: relative;
  padding: 4px 0 6px;
}
.mm-tab.active{
  color: var(--ink); font-weight: 700;
}
.mm-tab.active::after{
  content: ""; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--terracotta-2);
  border-radius: 2px;
}

/* ============== Set time phone ============== */
.st-body{ display: flex; flex-direction: column; height: 100%; }
.st-q{
  text-align: center;
  font-size: 19px; font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
  padding: 60px 32px 24px;
  line-height: 1.2;
}
.st-clock{
  margin: 0 36px;
  background: var(--paper);
  border: 2px solid var(--terracotta-2);
  border-radius: 22px;
  padding: 22px 0;
  text-align: center;
  font-size: 56px; font-weight: 800;
  letter-spacing: -.04em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.st-quick{
  display: flex; justify-content: center; gap: 10px;
  margin: 26px 18px 0;
}
.st-quick .q{
  font-size: 12px; font-weight: 700;
  padding: 9px 16px;
  border-radius: 99px;
  background: var(--paper);
  color: var(--ink);
}
.st-quick .q.active{ background: var(--ink); color: white; }
.st-hint{
  text-align: center;
  font-size: 11.5px; color: var(--ink-3);
  margin-top: 30px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.st-go{
  margin: 18px 22px 26px;
  background: var(--terracotta-2);
  color: white;
  text-align: center;
  font-size: 16px; font-weight: 700;
  padding: 16px;
  border-radius: 99px;
  box-shadow: 0 6px 18px rgba(216,107,69,.32);
}

/* ============== Features ============== */
.features{ background: var(--cream-warm); }
.features-grid{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.feature{
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 26px;
  padding: 32px;
  display: flex; flex-direction: column;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}
.feature.span-3{ grid-column: span 3; }
.feature.span-2{ grid-column: span 2; }
.feature.span-4{ grid-column: span 4; }
.feature.span-6{ grid-column: span 6; }
@media (max-width: 980px){
  .features-grid{ grid-template-columns: 1fr; }
  .feature.span-2, .feature.span-3, .feature.span-4, .feature.span-6{ grid-column: span 1; }
}
.feature .f-eyebrow{
  font-size: 11.5px; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--terracotta-3);
  margin-bottom: 14px;
}
.feature h3{ font-size: 22px; font-weight: 700; margin-bottom: 10px; letter-spacing: -.02em; }
.feature p{ font-size: 15px; color: var(--ink-2); margin: 0; }
.feature .f-art{
  margin-top: auto;
  padding-top: 24px;
}

/* Feature 1: reverse-engineered */
.reverse-art{
  display: flex; flex-direction: column; gap: 8px;
}
.reverse-art .rline{
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--ink-2);
}
.reverse-art .rline .rt{
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-3); width: 52px;
}
.reverse-art .rbar{
  flex: 1; height: 10px; border-radius: 4px;
  position: relative;
}
.reverse-art .rname{
  font-weight: 600; font-size: 12.5px; color: var(--ink); width: 80px;
}
.reverse-art .rfinish{
  border-left: 2px solid var(--terracotta-2);
  padding-left: 10px;
  margin-top: 6px;
  font-size: 11.5px;
  color: var(--terracotta-3);
  font-weight: 700;
}

/* Feature 2: timers */
.timers-art{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.tcard{
  background: var(--cream-soft);
  border-radius: 14px;
  padding: 14px 14px;
  position: relative;
  overflow: hidden;
}
.tcard .tn{
  font-size: 12px; font-weight: 600; color: var(--ink-2);
  margin-bottom: 6px;
}
.tcard .tt{
  font-size: 22px; font-weight: 800; letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.tcard.active{
  background: var(--ink); color: white;
}
.tcard.active .tn{ color: rgba(255,255,255,.7); }
.tcard.active .tt{ color: white; }
.tcard.active::after{
  content: ""; position: absolute; right: 12px; top: 12px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(122,184,144,.3);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse{
  0%,100%{ box-shadow: 0 0 0 4px rgba(122,184,144,.3); }
  50%{ box-shadow: 0 0 0 7px rgba(122,184,144,.1); }
}

/* Feature 3: import */
.import-art{
  display: flex; flex-direction: column; gap: 10px;
}
.import-input{
  background: var(--cream-soft);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 12px;
  font-family: var(--mono);
  color: var(--ink-3);
  display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--rule);
}
.import-input::before{
  content: "🔗"; font-size: 14px;
}
.import-arrow{
  text-align: center;
  font-size: 18px;
  color: var(--terracotta-3);
  line-height: 1;
}
.import-result{
  background: var(--cream-soft);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  border: 1px solid var(--rule);
}
.import-result .ir-name{
  font-weight: 700; color: var(--ink); margin-bottom: 4px;
}
.import-result .ir-meta{
  display: flex; gap: 12px; font-size: 11.5px; color: var(--ink-3);
  flex-wrap: wrap;
}
.import-result .ir-meta span strong{ color: var(--ink); font-weight: 600; }

/* Feature 4: live activity */
.la-art{
  background: #000;
  border-radius: 22px;
  padding: 16px 16px 18px;
  color: white;
  position: relative;
}
.la-art .la-top{
  display: flex; align-items: center; gap: 10px;
}
.la-art .la-icon{
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--terracotta-2);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.la-art .la-icon svg{ width: 16px; height: 16px; }
.la-art .la-name{ font-size: 13px; font-weight: 600; }
.la-art .la-sub{ font-size: 11px; color: rgba(255,255,255,.6); margin-top: 1px; }
.la-art .la-time{
  margin-left: auto;
  font-size: 22px; font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
}
.la-art .la-bar{
  margin-top: 12px;
  height: 6px; background: rgba(255,255,255,.12);
  border-radius: 99px; position: relative; overflow: hidden;
}
.la-art .la-bar::after{
  content: ""; position: absolute; inset: 0;
  width: 64%;
  background: linear-gradient(90deg, var(--terracotta), var(--terracotta-2));
  border-radius: 99px;
}

/* Feature: onboarding */
.onb-art{
  display: flex; gap: 12px;
}
.onb-art .otile{
  flex: 1;
  background: var(--cream-soft);
  border-radius: 14px;
  padding: 12px;
  font-size: 11.5px;
  display: flex; flex-direction: column; gap: 6px;
  border: 1px solid var(--rule);
}
.onb-art .otile .step-no{
  width: 18px; height: 18px; border-radius: 99px;
  background: var(--terracotta-2); color: white;
  display: grid; place-items: center;
  font-weight: 700; font-size: 10px;
}
.onb-art .otile.done{ opacity: .55; }
.onb-art .otile.done .step-no{ background: var(--green-2); }
.onb-art .otile .otitle{ font-weight: 600; color: var(--ink); }

/* ============== Made For (use cases) ============== */
.madefor{ background: var(--cream); }
.usecases{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}
@media (max-width: 760px){ .usecases{ grid-template-columns: 1fr; } }
.uc{
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.uc.feature-uc{
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 760px){ .uc.feature-uc{ grid-column: span 1; grid-template-columns: 1fr; } }
.uc h3{
  font-size: 22px; font-weight: 700;
  letter-spacing: -.02em; margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.uc h3 .ucmark{
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--terracotta-tint);
  color: var(--terracotta-3);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.uc h3 .ucmark svg{ width: 18px; height: 18px; }
.uc p{ font-size: 15px; color: var(--ink-2); margin: 0 0 1em; }
.uc p:last-child{ margin-bottom: 0; }
.uc .uc-meta{
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--rule);
}
.uc-meta .mt{
  font-size: 11.5px; font-weight: 600;
  padding: 5px 10px; border-radius: 99px;
  background: var(--cream-soft);
  color: var(--ink-2);
}

/* Feature usecase right-side visual */
.uc-visual{
  background: linear-gradient(160deg, var(--terracotta-tint-2), var(--cream-soft));
  border-radius: 18px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  border: 1px solid var(--rule);
}
.uc-clock{
  display: flex; align-items: baseline; gap: 8px;
}
.uc-clock .big{
  font-size: 44px; font-weight: 800; letter-spacing: -.04em;
  color: var(--ink); font-variant-numeric: tabular-nums; line-height: 1;
}
.uc-clock .label{
  font-size: 12px; color: var(--ink-3); font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
}
.uc-bars{
  display: grid; gap: 6px; margin-top: 8px;
}
.uc-bars .ucbar{
  display: grid; grid-template-columns: 80px 1fr; align-items: center; gap: 10px;
  font-size: 11px; color: var(--ink-2); font-weight: 600;
}
.uc-bars .ucbar .ucb{
  height: 9px; border-radius: 4px; position: relative;
  background: rgba(255,255,255,.55);
}
.uc-bars .ucbar .ucb span{
  position: absolute; top: 0; bottom: 0; border-radius: 4px;
}

/* ============== Pricing ============== */
.pricing{ background: var(--cream-warm); }
.price-grid{
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
  max-width: 920px;
}
@media (max-width: 760px){ .price-grid{ grid-template-columns: 1fr; } }
.pcard{
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 26px;
  padding: 36px;
  position: relative;
}
.pcard.pro{
  background: var(--ink);
  color: white;
  border-color: transparent;
}
.pcard.pro p, .pcard.pro li{ color: rgba(255,255,255,.85); }
.pcard .ph{
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 12px;
}
.pcard .pname{
  font-size: 14px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3);
}
.pcard.pro .pname{ color: var(--terracotta); }
.pcard .pbadge{
  background: var(--terracotta-2); color: white;
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 99px;
  letter-spacing: .04em;
}
.pcard .pprice{
  font-size: 56px; font-weight: 800; letter-spacing: -.035em;
  line-height: 1; margin: 14px 0 8px;
  font-variant-numeric: tabular-nums;
}
.pcard .pprice small{
  font-size: 16px; font-weight: 500; letter-spacing: 0;
  color: var(--ink-3); margin-left: 4px;
}
.pcard.pro .pprice small{ color: rgba(255,255,255,.6); }
.pcard .psub{ font-size: 14.5px; color: var(--ink-3); }
.pcard.pro .psub{ color: rgba(255,255,255,.7); }
.pcard ul{
  margin: 24px 0 28px; padding: 0; list-style: none;
  display: grid; gap: 12px;
}
.pcard li{
  font-size: 14.5px;
  display: flex; gap: 12px; align-items: flex-start;
  color: var(--ink-2);
}
.pcard li::before{
  content: "";
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green-tint); color: var(--green-2);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%235E9C75' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='3 8.5 6.5 12 13 4.5'/></svg>");
  background-repeat: no-repeat; background-position: center;
  background-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}
.pcard.pro li::before{
  background-color: rgba(226,123,88,.18);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23E27B58' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='3 8.5 6.5 12 13 4.5'/></svg>");
}
.pcard .pcta{
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%;
  padding: 14px;
  border-radius: 99px;
  font-weight: 700; font-size: 15px;
  text-decoration: none;
}
.pcard .pcta.free{
  background: var(--cream-warm); color: var(--ink);
}
.pcard .pcta.pro{
  background: var(--terracotta-2); color: white;
}
.pcard .pmeta{
  font-size: 12px; color: var(--ink-3);
  margin-top: 14px; text-align: center;
  font-family: var(--mono); letter-spacing: 0;
}
.pcard.pro .pmeta{ color: rgba(255,255,255,.5); }

/* ============== About ============== */
.about{ background: var(--cream); }
.about-inner{
  max-width: 820px; margin: 0 auto; text-align: left;
  display: grid; grid-template-columns: 140px 1fr; gap: 36px;
  align-items: start;
}
@media (max-width: 760px){ .about-inner{ grid-template-columns: 1fr; gap: 24px; } }
.about-photo{
  width: 140px; height: 140px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, var(--terracotta), var(--terracotta-3));
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
  color: white;
  font-size: 48px; font-weight: 800;
  letter-spacing: -.04em;
  box-shadow: 0 10px 30px rgba(216,107,69,.3);
}
.about-photo::after{
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 80%, rgba(255,255,255,.18), transparent 50%);
}
.about h2{ margin-bottom: 18px; font-size: clamp(28px, 3vw, 38px); }
.about p{ font-size: 16.5px; line-height: 1.6; color: var(--ink-2); }
.about-links{
  display: flex; gap: 16px; margin-top: 22px; flex-wrap: wrap;
}
.about-link{
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600;
  padding: 10px 16px; border-radius: 99px;
  background: var(--paper);
  border: 1px solid var(--rule);
  text-decoration: none; color: var(--ink);
  transition: transform .15s ease, background .15s ease;
}
.about-link:hover{ background: var(--ink); color: white; transform: translateY(-1px); }
.about-link svg{ width: 16px; height: 16px; }

/* ============== FAQ ============== */
.faq{ background: var(--cream-warm); }
.faq-list{
  display: grid; gap: 12px; max-width: 880px;
  margin-top: 24px;
}
.faq-item{
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 18px;
  overflow: hidden;
}
.faq-item summary{
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-size: 17px; font-weight: 600;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  gap: 18px;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary::after{
  content: "+";
  font-size: 24px; font-weight: 400;
  color: var(--terracotta-3);
  line-height: 1;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.faq-item[open] summary::after{ transform: rotate(45deg); }
.faq-item .faq-a{
  padding: 0 28px 24px;
  font-size: 15.5px; color: var(--ink-2);
  line-height: 1.6;
}
.faq-item .faq-a p{ margin: 0; }

/* ============== Footer ============== */
footer{
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
}
.foot-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 760px){
  .foot-grid{ grid-template-columns: 1fr 1fr; gap: 36px; }
}
.foot-brand{
  display: flex; align-items: center; gap: 10px;
  color: white; font-size: 20px; font-weight: 700; letter-spacing: -.02em;
  text-decoration: none; margin-bottom: 18px;
}
.foot-brand .brand-mark{ background: var(--terracotta-2); }
.foot-brand .ps-lo{ color: var(--terracotta); }
.foot-blurb{ font-size: 14px; line-height: 1.6; max-width: 32ch; }
.foot-col h4{
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.5); font-weight: 600;
  margin: 0 0 16px;
}
.foot-col ul{
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px;
}
.foot-col a{
  color: rgba(255,255,255,.75); text-decoration: none;
  font-size: 14px;
}
.foot-col a:hover{ color: var(--terracotta); }

.foot-bottom{
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,.5);
}
.foot-bottom .legal{
  display: flex; gap: 20px; flex-wrap: wrap;
}
.foot-bottom a{ color: rgba(255,255,255,.7); text-decoration: none; }
.foot-bottom a:hover{ color: var(--terracotta); }