  /* ---------- Tokens ---------- */
  :root {
    --paper: #ece4d2;
    --paper-2: #f5efe0;
    --paper-3: #e2d8c1;
    --ink: #161411;
    --ink-soft: #2b2721;
    --moss: #1d3a2a;
    --moss-deep: #112619;
    --moss-lit: #3a5a44;
    --terracotta: #b95a3c;
    --terracotta-deep: #8a3e26;
    --ochre: #c8944a;
    --stone: #877a63;
    --line: #2b2721;

    --serif: "Fraunces", "Noto Serif TC", serif;
    --han: "Noto Serif TC", "Fraunces", serif;
    --sans: "Instrument Sans", -apple-system, sans-serif;
    --mono: "JetBrains Mono", ui-monospace, monospace;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
  }

  /* Paper grain */
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.09 0 0 0 0 0.08 0 0 0 0 0.07 0 0 0 0.22 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    opacity: 0.5;
    pointer-events: none;
    z-index: 100;
    mix-blend-mode: multiply;
  }

  /* Vignette */
  body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at 50% 40%, transparent 40%, rgba(22, 20, 17, 0.12) 100%);
    pointer-events: none;
    z-index: 99;
  }

  ::selection { background: var(--moss); color: var(--paper-2); }

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

  /* ---------- Layout ---------- */
  .container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
  }

  @media (max-width: 720px) {
    .container { padding: 0 24px; }
  }

  /* ---------- Top Masthead ---------- */
  .masthead {
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
  }

  .masthead-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .masthead-mark {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -0.01em;
    text-transform: none;
  }

  .masthead-mark .icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow:
      0 0 0 1px rgba(22,20,17,0.08),
      0 2px 6px -2px rgba(22,20,17,0.25);
  }

  .masthead-meta {
    display: flex;
    gap: 28px;
    color: var(--ink-soft);
  }

  .masthead-meta span::before {
    content: "· ";
    color: var(--terracotta);
  }

  .masthead-meta span:first-child::before { content: ""; }

  .masthead-cta {
    padding: 6px 14px;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--paper);
    transition: all 0.3s ease;
  }

  .masthead-cta:hover {
    background: var(--moss);
    border-color: var(--moss);
  }

  .lang-switch {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--ink);
    background-color: var(--paper-2);
    border: 1px solid var(--ink);
    border-radius: 2px;
    padding: 7px 28px 7px 12px;
    cursor: pointer;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1 L5 5 L9 1' fill='none' stroke='%23161411' stroke-width='1.2' stroke-linecap='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    transition: all 0.25s ease;
    max-width: 180px;
    line-height: 1.2;
  }

  .lang-switch:hover {
    background-color: var(--paper-3);
    border-color: var(--terracotta);
    color: var(--terracotta);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1 L5 5 L9 1' fill='none' stroke='%23b95a3c' stroke-width='1.2' stroke-linecap='round'/></svg>");
  }

  .lang-switch:focus-visible {
    outline: none;
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(185, 90, 60, 0.18);
  }

  .lang-switch option {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    background: var(--paper);
    color: var(--ink);
    padding: 8px 12px;
  }

  @media (max-width: 900px) {
    .masthead-meta { display: none; }
  }

  @media (max-width: 720px) {
    .lang-switch {
      font-size: 9px;
      padding: 6px 24px 6px 10px;
    }
  }

  /* ---------- Hero ---------- */
  .hero {
    padding: 80px 0 40px;
    position: relative;
    border-bottom: 1px solid var(--line);
  }

  .hero-issue {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 60px;
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--ink);
    border-bottom-style: dotted;
  }

  .hero-issue .divider {
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(
      to right,
      var(--ink) 0 2px,
      transparent 2px 6px
    );
    margin: 0 24px;
    align-self: center;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: end;
    margin-bottom: 60px;
  }

  @media (max-width: 1100px) {
    .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  }

  .hero-title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(64px, 11vw, 180px);
    line-height: 0.88;
    letter-spacing: -0.04em;
    color: var(--ink);
    font-variation-settings: "opsz" 144, "SOFT" 30;
  }

  .hero-title .italic {
    font-style: italic;
    font-weight: 400;
    color: var(--moss);
    font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 1;
  }

  .hero-title .han {
    font-family: var(--han);
    font-weight: 300;
    font-size: 0.42em;
    display: block;
    margin-top: 0.2em;
    color: var(--ink-soft);
    letter-spacing: 0.05em;
  }

  .hero-title .amp {
    font-style: italic;
    font-weight: 300;
    color: var(--terracotta);
    font-variation-settings: "WONK" 1, "SOFT" 100;
  }

  .hero-side {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-bottom: 12px;
  }

  .hero-kicker {
    font-family: var(--han);
    font-size: 17px;
    line-height: 1.85;
    color: var(--ink);
    font-weight: 400;
  }

  .hero-kicker em {
    font-family: var(--serif);
    font-style: italic;
    color: var(--moss);
    font-weight: 400;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 4px;
    flex-wrap: wrap;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.2, 0.6, 0.2, 1);
    border: 1px solid var(--ink);
    cursor: pointer;
  }

  .btn-primary {
    background: var(--ink);
    color: var(--paper);
  }

  .btn-primary:hover {
    background: var(--moss);
    border-color: var(--moss);
    transform: translateY(-1px);
  }

  .btn-primary svg { transition: transform 0.3s ease; }
  .btn-primary:hover svg { transform: translate(2px, -2px); }

  .btn-ghost {
    background: transparent;
    color: var(--ink);
  }

  .btn-ghost:hover {
    background: var(--ink);
    color: var(--paper);
  }

  /* Hero meta strip */
  .hero-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--ink);
  }

  @media (max-width: 900px) {
    .hero-strip { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  }

  .strip-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .strip-item .label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stone);
  }

  .strip-item .value {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.1;
    font-variation-settings: "opsz" 144;
  }

  .strip-item .value .han {
    font-family: var(--han);
    font-size: 18px;
    margin-left: 6px;
    color: var(--ink-soft);
  }

  /* Decorative botanical mark */
  .botanical-mark {
    position: absolute;
    right: 40px;
    top: 80px;
    width: 140px;
    opacity: 0.18;
    pointer-events: none;
    transform: rotate(8deg);
  }

  @media (max-width: 1100px) {
    .botanical-mark { display: none; }
  }

  /* App icon pedestal */
  .icon-pedestal {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 12px 0 4px;
  }

  .icon-pedestal .icon-big {
    width: 180px;
    height: 180px;
    border-radius: 40px;
    object-fit: cover;
    box-shadow:
      0 0 0 1px rgba(22,20,17,0.08),
      0 20px 40px -20px rgba(22,20,17,0.35),
      0 8px 14px -8px rgba(22,20,17,0.25);
    transform: rotate(-4deg);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .icon-pedestal:hover .icon-big {
    transform: rotate(0deg) scale(1.02);
  }

  .icon-pedestal::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(29, 58, 42, 0.12) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
  }

  .icon-pedestal .caption {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stone);
  }

  .icon-pedestal .caption .star {
    color: var(--ochre);
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
  }

  @media (max-width: 1100px) {
    .icon-pedestal .icon-big { width: 140px; height: 140px; border-radius: 32px; }
  }

  /* ---------- Section base ---------- */
  .section {
    padding: 120px 0;
    border-bottom: 1px solid var(--line);
    position: relative;
  }

  .section-number {
    display: flex;
    align-items: baseline;
    gap: 18px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 40px;
  }

  .section-number .chapter {
    font-family: var(--serif);
    font-style: italic;
    font-size: 44px;
    color: var(--terracotta);
    letter-spacing: -0.02em;
    text-transform: none;
    font-weight: 400;
  }

  .section-number .line {
    flex: 1;
    height: 1px;
    background: var(--ink);
    max-width: 280px;
  }

  .section-title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(44px, 6vw, 96px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    font-variation-settings: "opsz" 144, "SOFT" 40;
  }

  .section-title .italic {
    font-style: italic;
    color: var(--moss);
  }

  .section-title .han {
    display: block;
    font-family: var(--han);
    font-size: 0.36em;
    color: var(--ink-soft);
    margin-top: 0.3em;
    letter-spacing: 0.05em;
    font-weight: 300;
  }

  .section-lede {
    font-family: var(--han);
    font-size: 18px;
    line-height: 1.9;
    color: var(--ink);
    max-width: 640px;
    margin-bottom: 60px;
  }

  .section-lede em {
    font-family: var(--serif);
    font-style: italic;
    color: var(--terracotta-deep);
  }

  /* ---------- Core Loop ---------- */
  .loop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--ink);
    border-left: 1px solid var(--ink);
  }

  @media (max-width: 1100px) {
    .loop-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 640px) {
    .loop-grid { grid-template-columns: 1fr; }
  }

  .loop-step {
    padding: 40px 32px 48px;
    border-right: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    position: relative;
    background: var(--paper-2);
    transition: background 0.4s ease;
    min-height: 320px;
    display: flex;
    flex-direction: column;
  }

  .loop-step:hover {
    background: var(--paper-3);
  }

  .loop-step:hover .loop-icon {
    transform: rotate(-8deg) scale(1.05);
  }

  .loop-step .step-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 80px;
    font-weight: 300;
    line-height: 0.8;
    color: var(--moss);
    margin-bottom: 20px;
    font-variation-settings: "opsz" 144, "WONK" 1;
  }

  .loop-step .step-num sup {
    font-size: 14px;
    font-style: normal;
    font-family: var(--mono);
    letter-spacing: 0.1em;
    vertical-align: super;
    color: var(--stone);
    margin-left: 6px;
  }

  .loop-icon {
    position: absolute;
    top: 32px;
    right: 28px;
    width: 36px;
    height: 36px;
    color: var(--terracotta);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .loop-step h3 {
    font-family: var(--han);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 10px;
    color: var(--ink);
  }

  .loop-step h3 em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
    color: var(--moss);
    display: block;
    margin-top: 4px;
    letter-spacing: 0.02em;
  }

  .loop-step p {
    font-family: var(--han);
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--ink-soft);
    margin-top: auto;
  }

  /* ---------- Phone showcase ---------- */
  .showcase {
    padding: 160px 0 140px;
    background: var(--moss-deep);
    color: var(--paper);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--moss-deep);
  }

  .showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.2 0 0 0 0 0.14 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    opacity: 0.4;
    mix-blend-mode: overlay;
    pointer-events: none;
  }

  .showcase .container {
    position: relative;
    z-index: 2;
  }

  .showcase .section-number { color: var(--paper-3); }
  .showcase .section-number .chapter { color: var(--ochre); }
  .showcase .section-number .line { background: var(--paper-3); opacity: 0.3; }
  .showcase .section-title { color: var(--paper); }
  .showcase .section-title .italic { color: var(--ochre); }
  .showcase .section-title .han { color: var(--paper-3); opacity: 0.75; }
  .showcase .section-lede { color: var(--paper-3); }
  .showcase .section-lede em { color: var(--ochre); }

  .phone-stage {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-top: 80px;
    align-items: end;
  }

  @media (max-width: 1100px) {
    .phone-stage { grid-template-columns: 1fr; max-width: 340px; margin: 80px auto 0; }
  }

  .phone-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .phone-col:nth-child(2) { transform: translateY(-40px); }
  .phone-col:nth-child(3) { transform: translateY(20px); }

  @media (max-width: 1100px) {
    .phone-col { transform: none !important; }
  }

  .phone {
    width: 100%;
    aspect-ratio: 9 / 19.5;
    background: #111;
    border-radius: 38px;
    padding: 8px;
    box-shadow:
      0 0 0 2px #0a0a0a,
      0 40px 80px -30px rgba(0,0,0,0.6),
      0 10px 20px -10px rgba(0,0,0,0.4);
    position: relative;
  }

  .phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    background: var(--paper-2);
    color: var(--ink);
    font-size: 11px;
    display: flex;
    flex-direction: column;
  }

  .phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 18px;
    background: #0a0a0a;
    border-radius: 12px;
    z-index: 3;
  }

  .phone-status {
    display: flex;
    justify-content: space-between;
    padding: 14px 24px 6px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    color: var(--ink);
  }

  /* Phone 1: Today screen */
  .screen-today {
    padding: 38px 18px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .screen-today .date {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--stone);
  }

  .screen-today .heading {
    font-family: var(--han);
    font-size: 26px;
    font-weight: 500;
    line-height: 1;
    color: var(--ink);
  }

  .screen-today .heading em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    display: block;
    font-size: 14px;
    color: var(--moss);
    margin-top: 4px;
  }

  .today-group {
    margin-top: 8px;
  }

  .today-group-label {
    display: flex;
    justify-content: space-between;
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--stone);
    padding: 8px 0 6px;
    border-bottom: 1px solid var(--ink);
  }

  .today-group-label.overdue { color: var(--terracotta); }

  .today-group-label .han {
    font-family: var(--han);
    letter-spacing: 0.1em;
    font-size: 9px;
  }

  .today-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(22,20,17,0.2);
  }

  .today-row .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--moss-lit);
    flex-shrink: 0;
  }

  .today-row .dot.overdue { background: var(--terracotta); }

  .today-row .name {
    flex: 1;
    font-family: var(--han);
    font-size: 12px;
    color: var(--ink);
  }

  .today-row .name small {
    display: block;
    font-family: var(--sans);
    font-size: 9px;
    color: var(--stone);
    margin-top: 1px;
  }

  .today-row .check {
    width: 22px;
    height: 22px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
  }

  /* Phone 2: Plant detail */
  .screen-plant {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 38px;
  }

  .plant-hero {
    aspect-ratio: 1 / 1;
    background:
      radial-gradient(circle at 30% 30%, #3a5a44 0%, #1d3a2a 60%, #0f2418 100%),
      #112619;
    position: relative;
    overflow: hidden;
  }

  .plant-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><g fill='none' stroke='%23a5c9a9' stroke-width='0.6' opacity='0.4'><path d='M100 180 Q100 120 100 40'/><path d='M100 140 Q60 130 40 100 Q50 105 70 115 Q85 125 100 140' fill='%234a7a5a' fill-opacity='0.6'/><path d='M100 110 Q140 100 160 75 Q150 80 130 90 Q115 98 100 110' fill='%234a7a5a' fill-opacity='0.6'/><path d='M100 80 Q70 70 55 45 Q65 55 80 65 Q92 72 100 80' fill='%235a8a66' fill-opacity='0.6'/><path d='M100 50 Q125 42 140 22 Q132 30 120 38 Q110 44 100 50' fill='%235a8a66' fill-opacity='0.6'/></g></svg>");
    background-size: 80% 80%;
    background-repeat: no-repeat;
    background-position: center;
  }

  .plant-hero .scientific {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 13px;
    color: var(--paper-2);
    letter-spacing: -0.01em;
  }

  .plant-hero .tag {
    position: absolute;
    top: 14px;
    left: 14px;
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--paper-3);
    background: rgba(0,0,0,0.3);
    padding: 4px 8px;
    border-radius: 2px;
  }

  .plant-meta {
    padding: 14px 16px 16px;
    flex: 1;
  }

  .plant-meta .name {
    font-family: var(--han);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.1;
    color: var(--ink);
  }

  .plant-meta .loc {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stone);
    margin-top: 4px;
  }

  .plant-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--ink);
  }

  .plant-stat {
    text-align: center;
  }

  .plant-stat .n {
    font-family: var(--serif);
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    color: var(--moss);
    line-height: 1;
  }

  .plant-stat .l {
    font-family: var(--han);
    font-size: 9px;
    color: var(--stone);
    margin-top: 4px;
    letter-spacing: 0.05em;
  }

  .plant-timeline {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed rgba(22,20,17,0.2);
  }

  .timeline-entry {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 6px 0;
  }

  .timeline-entry .date {
    font-family: var(--mono);
    font-size: 9px;
    color: var(--stone);
    width: 36px;
    flex-shrink: 0;
    padding-top: 2px;
  }

  .timeline-entry .evt {
    font-family: var(--han);
    font-size: 11px;
    color: var(--ink);
  }

  .timeline-entry .evt em {
    display: block;
    font-family: var(--sans);
    font-style: normal;
    font-size: 9px;
    color: var(--stone);
    margin-top: 1px;
  }

  /* Phone 3: Notification */
  .screen-notif {
    padding-top: 38px;
    flex: 1;
    background: linear-gradient(180deg, #0a0806 0%, #1a1410 100%);
    color: var(--paper);
    position: relative;
  }

  .screen-notif::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 300' xmlns='http://www.w3.org/2000/svg'><g fill='none' stroke='%23a5c9a9' stroke-width='0.3' opacity='0.12'><circle cx='100' cy='50' r='140'/><circle cx='100' cy='50' r='100'/><circle cx='100' cy='50' r='60'/></g></svg>");
    background-size: cover;
  }

  .screen-notif .lockscreen-time {
    text-align: center;
    font-family: var(--serif);
    font-weight: 300;
    font-size: 52px;
    letter-spacing: -0.04em;
    padding-top: 40px;
    color: var(--paper);
    font-variation-settings: "opsz" 144;
  }

  .screen-notif .lockscreen-date {
    text-align: center;
    font-family: var(--han);
    font-size: 11px;
    color: rgba(245,239,224,0.7);
    margin-top: 2px;
  }

  .notif-card {
    margin: 40px 12px 14px;
    background: rgba(245,239,224,0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 14px;
    padding: 12px;
    border: 1px solid rgba(245,239,224,0.15);
  }

  .notif-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
  }

  .notif-app {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--sans);
    font-size: 9px;
    color: rgba(245,239,224,0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .notif-icon {
    width: 16px;
    height: 16px;
    background: var(--moss-lit);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--paper);
    font-family: var(--serif);
    font-style: italic;
    font-size: 10px;
  }

  .notif-time {
    font-family: var(--mono);
    font-size: 8px;
    color: rgba(245,239,224,0.5);
  }

  .notif-title {
    font-family: var(--han);
    font-size: 13px;
    font-weight: 500;
    color: var(--paper);
    margin-bottom: 3px;
  }

  .notif-body {
    font-family: var(--han);
    font-size: 11px;
    color: rgba(245,239,224,0.78);
    line-height: 1.5;
  }

  .notif-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 10px;
  }

  .notif-action {
    padding: 6px 0;
    background: rgba(245,239,224,0.08);
    border-radius: 6px;
    text-align: center;
    font-family: var(--han);
    font-size: 10px;
    color: var(--paper);
    border: 1px solid rgba(245,239,224,0.1);
  }

  .notif-action.primary {
    background: var(--ochre);
    color: var(--ink);
    font-weight: 500;
    border-color: var(--ochre);
  }

  .phone-caption {
    display: flex;
    gap: 10px;
    align-items: baseline;
    padding: 0 4px;
  }

  .phone-caption .num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: var(--ochre);
  }

  .phone-caption .txt {
    font-family: var(--han);
    font-size: 13px;
    color: var(--paper-3);
    line-height: 1.5;
  }

  /* ---------- Features Index ---------- */
  .features {
    background: var(--paper);
  }

  .features-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid var(--ink);
  }

  .features-table tr {
    border-bottom: 1px solid var(--ink);
    transition: background 0.3s ease;
    cursor: default;
  }

  .features-table tr:hover {
    background: var(--paper-3);
  }

  .features-table tr:hover .feat-num {
    color: var(--terracotta);
    transform: translateX(4px);
  }

  .features-table td {
    padding: 28px 16px;
    vertical-align: top;
  }

  .feat-num {
    width: 90px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 44px;
    font-weight: 300;
    line-height: 1;
    color: var(--ink-soft);
    transition: all 0.4s ease;
    font-variation-settings: "opsz" 144, "WONK" 1;
  }

  .feat-title {
    width: 30%;
    font-family: var(--han);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--ink);
  }

  .feat-title em {
    display: block;
    font-family: var(--serif);
    font-style: italic;
    font-size: 13px;
    font-weight: 400;
    color: var(--moss);
    margin-top: 4px;
  }

  .feat-desc {
    font-family: var(--han);
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--ink-soft);
  }

  .feat-tags {
    width: 200px;
    text-align: right;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stone);
    white-space: nowrap;
  }

  .feat-tags span {
    display: inline-block;
    padding: 4px 8px;
    border: 1px solid var(--stone);
    border-radius: 2px;
    margin-left: 4px;
    margin-bottom: 4px;
  }

  @media (max-width: 900px) {
    .features-table, .features-table tbody, .features-table tr, .features-table td {
      display: block;
      width: 100%;
    }
    .features-table td { padding: 10px 0; }
    .features-table tr { padding: 24px 0; }
    .feat-num { width: auto; }
    .feat-tags { text-align: left; }
    .feat-tags span { margin-left: 0; margin-right: 4px; }
  }

  /* ---------- AI section ---------- */
  .ai {
    padding: 140px 0;
    position: relative;
    background: var(--paper-2);
    border-bottom: 1px solid var(--line);
  }

  .ai-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 100px;
    align-items: start;
  }

  @media (max-width: 1100px) {
    .ai-grid { grid-template-columns: 1fr; gap: 60px; }
  }

  .ai-card {
    background: var(--ink);
    color: var(--paper);
    padding: 40px;
    position: relative;
    border-radius: 4px;
    box-shadow:
      0 30px 60px -20px rgba(0,0,0,0.4),
      0 10px 20px -10px rgba(0,0,0,0.2);
  }

  .ai-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    pointer-events: none;
    border-radius: 4px;
  }

  .ai-card-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--stone);
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(245,239,224,0.2);
    margin-bottom: 24px;
  }

  .ai-card-head .status {
    color: var(--ochre);
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .ai-card-head .status::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ochre);
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
  }

  .ai-match {
    font-family: var(--serif);
    font-style: italic;
    font-size: 34px;
    font-weight: 400;
    color: var(--paper);
    line-height: 1.15;
    font-variation-settings: "opsz" 144, "WONK" 1, "SOFT" 80;
  }

  .ai-match .common {
    display: block;
    font-family: var(--han);
    font-style: normal;
    font-size: 14px;
    color: var(--ochre);
    margin-top: 4px;
    letter-spacing: 0.02em;
  }

  .ai-confidence {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .ai-confidence .bar {
    flex: 1;
    height: 2px;
    background: rgba(245,239,224,0.2);
    position: relative;
    overflow: hidden;
  }

  .ai-confidence .bar::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 94%;
    background: var(--ochre);
  }

  .ai-confidence .pct {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ochre);
    letter-spacing: 0.08em;
  }

  .ai-alt {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px dashed rgba(245,239,224,0.15);
  }

  .ai-alt-label {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 10px;
  }

  .ai-alt-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .ai-alt-item {
    display: flex;
    justify-content: space-between;
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: var(--paper-3);
  }

  .ai-alt-item .pct {
    font-family: var(--mono);
    font-style: normal;
    font-size: 10px;
    color: var(--stone);
  }

  .ai-diagnose {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(245,239,224,0.2);
  }

  .ai-diagnose-label {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 10px;
  }

  .ai-diagnose-title {
    font-family: var(--han);
    font-size: 17px;
    font-weight: 500;
    color: var(--paper);
    margin-bottom: 8px;
  }

  .ai-diagnose-rx {
    font-family: var(--han);
    font-size: 13px;
    line-height: 1.7;
    color: var(--paper-3);
  }

  .ai-quota {
    margin-top: 28px;
    padding: 14px 16px;
    background: rgba(245,239,224,0.08);
    border-radius: 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--han);
    font-size: 12px;
    color: var(--paper-3);
  }

  .ai-quota .chip {
    padding: 4px 10px;
    background: var(--ochre);
    color: var(--ink);
    border-radius: 2px;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
  }

  /* ---------- Pricing ---------- */
  .pricing {
    padding: 140px 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 70px;
    border: 1px solid var(--ink);
  }

  @media (max-width: 900px) {
    .pricing-grid { grid-template-columns: 1fr; }
  }

  .tier {
    padding: 48px 40px 40px;
    position: relative;
    border-right: 1px solid var(--ink);
    background: var(--paper-2);
  }

  .tier:last-child { border-right: none; }

  @media (max-width: 900px) {
    .tier { border-right: none; border-bottom: 1px solid var(--ink); }
    .tier:last-child { border-bottom: none; }
  }

  .tier.featured {
    background: var(--ink);
    color: var(--paper);
  }

  .tier-stamp {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 5px 10px;
    border: 1px solid currentColor;
    border-radius: 2px;
    color: var(--terracotta);
  }

  .tier.featured .tier-stamp {
    color: var(--ochre);
    border-color: var(--ochre);
  }

  .tier-name {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 20px;
  }

  .tier.featured .tier-name { color: var(--paper-3); }

  .tier-price {
    font-family: var(--serif);
    font-size: 88px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--ink);
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 10px;
    font-variation-settings: "opsz" 144;
  }

  .tier.featured .tier-price { color: var(--paper); }

  .tier-price .cur {
    font-size: 32px;
    font-weight: 400;
    font-style: italic;
    color: var(--terracotta);
  }

  .tier.featured .tier-price .cur { color: var(--ochre); }

  .tier-price .per {
    font-family: var(--han);
    font-size: 14px;
    font-weight: 400;
    color: var(--stone);
    font-style: normal;
    margin-left: 4px;
  }

  .tier.featured .tier-price .per { color: var(--paper-3); }

  .tier-sub {
    font-family: var(--han);
    font-size: 14px;
    color: var(--ink-soft);
    margin-bottom: 30px;
  }

  .tier.featured .tier-sub { color: var(--paper-3); }

  .tier-list {
    list-style: none;
    border-top: 1px solid currentColor;
    padding-top: 20px;
  }

  .tier-list li {
    font-family: var(--han);
    font-size: 14px;
    line-height: 1.5;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.15);
    display: flex;
    gap: 10px;
    align-items: baseline;
  }

  .tier.featured .tier-list li {
    border-bottom-color: rgba(245,239,224,0.15);
  }

  .tier-list li::before {
    content: "—";
    color: var(--terracotta);
    font-family: var(--serif);
    font-style: italic;
  }

  .tier.featured .tier-list li::before { color: var(--ochre); }

  .tier-list li em {
    font-family: var(--mono);
    font-style: normal;
    font-size: 10px;
    color: var(--stone);
    letter-spacing: 0.08em;
    margin-left: auto;
  }

  .tier.featured .tier-list li em { color: var(--paper-3); }

  .tier-cta {
    margin-top: 28px;
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
    transition: all 0.3s ease;
  }

  .tier-cta:hover { background: var(--ink); color: var(--paper); }

  .tier.featured .tier-cta {
    background: var(--ochre);
    color: var(--ink);
    border-color: var(--ochre);
  }

  .tier.featured .tier-cta:hover {
    background: var(--paper);
    color: var(--ink);
    border-color: var(--paper);
  }

  /* ---------- Colophon / Footer ---------- */
  .colophon {
    padding: 100px 0 60px;
    background: var(--ink);
    color: var(--paper);
    position: relative;
  }

  .colophon::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    pointer-events: none;
  }

  .colophon .container { position: relative; }

  .colophon-hero {
    font-family: var(--serif);
    font-size: clamp(56px, 9vw, 140px);
    font-weight: 300;
    line-height: 0.92;
    letter-spacing: -0.04em;
    margin-bottom: 80px;
    font-variation-settings: "opsz" 144, "SOFT" 40;
  }

  .colophon-hero .italic {
    font-style: italic;
    color: var(--ochre);
  }

  .colophon-hero .han {
    font-family: var(--han);
    font-size: 0.4em;
    font-weight: 300;
    color: var(--paper-3);
    display: block;
    margin-top: 0.3em;
  }

  .colophon-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(245,239,224,0.2);
    align-items: start;
  }

  @media (max-width: 900px) {
    .colophon-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  }

  .colophon-col h4 {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 16px;
    font-weight: 500;
  }

  .colophon-col p, .colophon-col li {
    font-family: var(--han);
    font-size: 13px;
    line-height: 1.7;
    color: var(--paper-3);
    list-style: none;
  }

  .colophon-col li { padding: 4px 0; }
  .colophon-col li a { transition: color 0.2s ease; }
  .colophon-col li a:hover { color: var(--ochre); }

  .colophon-col dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 14px;
    font-size: 12px;
  }

  .colophon-col dt {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--stone);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .colophon-col dd {
    font-family: var(--mono);
    color: var(--paper-3);
    font-size: 11px;
  }

  .colophon-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px dashed rgba(245,239,224,0.2);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stone);
    flex-wrap: wrap;
    gap: 16px;
  }

  .colophon-foot .sig em {
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: var(--ochre);
    text-transform: none;
    letter-spacing: -0.01em;
  }

  /* Reveal on scroll */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.6, 0.2, 1);
  }

  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-d2 { transition-delay: 0.08s; }
  .reveal-d3 { transition-delay: 0.16s; }
  .reveal-d4 { transition-delay: 0.24s; }

  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .ai-card-head .status::before { animation: none; }
  }
