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

    :root {
      --ink: #1a1814;
      --parchment: #f5f0e8;
      --warm-white: #faf8f4;
      --sage: #7a8c75;
      --sage-light: #a8b8a3;
      --sage-tint: #e8ede4;
      --sage-dark: #5d6f58;
      --gold: #b8975a;
      --gold-light: #d4b47a;
      --muted: #7a746a;
      --border: rgba(26,24,20,0.1);
      --serif: 'Cormorant Garamond', serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--warm-white);
      color: var(--ink);
      font-weight: 300;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* NAV */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.25rem 3rem;
      background: rgba(250,248,244,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
    .nav-logo {
      font-family: var(--serif);
      font-size: 1.5rem;
      font-weight: 400;
      letter-spacing: 0.05em;
      color: var(--ink);
      text-decoration: none;
    }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
    .nav-links a {
      font-size: 0.85rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--ink); }
    .nav-cta {
      background: var(--sage);
      color: white !important;
      padding: 0.6rem 1.4rem;
      border-radius: 2px;
      font-size: 0.8rem !important;
    }
    .nav-cta:hover { background: var(--sage-dark); }

    /* HERO */
    .hero {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      align-items: center;
      gap: 4rem;
      max-width: 1200px;
      margin: 0 auto;
      padding: 5rem 3rem 4rem;
    }
    .hero-text { animation: fadeUp 0.9s ease both; }
    .hero-eyebrow {
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sage-dark);
      margin-bottom: 1.5rem;
      display: flex; align-items: center; gap: 1rem;
    }
    .hero-eyebrow::before {
      content: ''; display: block; width: 2rem; height: 1px; background: var(--sage-dark);
    }
    h1 {
      font-family: var(--serif);
      font-size: clamp(2.6rem, 4.8vw, 4.4rem);
      font-weight: 300;
      line-height: 1.08;
      letter-spacing: -0.01em;
      margin-bottom: 1.5rem;
      text-wrap: balance;
    }
    h1 em { font-style: italic; color: var(--sage-dark); }
    .hero-sub {
      font-size: 1.1rem;
      color: var(--muted);
      max-width: 48ch;
      margin-bottom: 2.5rem;
      line-height: 1.7;
    }
    .hero-sub strong { color: var(--ink); font-weight: 500; }
    .btn-row { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--sage);
      color: white;
      padding: 0.95rem 2rem;
      border-radius: 2px;
      font-size: 0.85rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.2s;
    }
    .btn-primary:hover { background: var(--sage-dark); }
    .btn-secondary {
      display: inline-flex; align-items: center; gap: 0.5rem;
      color: var(--muted);
      font-size: 0.85rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      border-bottom: 1px solid var(--border);
      padding-bottom: 2px;
      transition: all 0.2s;
    }
    .btn-secondary:hover { color: var(--ink); border-color: var(--ink); }

    /* Phone */
    .hero-visual { display: flex; justify-content: center; animation: fadeUp 0.9s 0.15s ease both; }
    .phone {
      width: 100%;
      max-width: 320px;
      padding: 10px;
      border-radius: 42px;
      background: #1a1814;
      box-shadow: 0 30px 70px rgba(26,24,20,0.18);
    }
    .phone img {
      width: 100%;
      display: block;
      border-radius: 32px;
      aspect-ratio: 390/844;
      object-fit: cover;
      object-position: top;
      background: var(--parchment);
    }

    /* LEAD-IN STRIP */
    .assurance-strip {
      background: var(--sage-tint);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .assurance-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1.5rem 3rem;
      display: flex;
      gap: 3rem;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      color: var(--sage-dark);
    }
    .assurance-item {
      display: flex; align-items: center; gap: 0.6rem;
    }
    .assurance-item svg { flex-shrink: 0; }
    .assurance-item strong { color: var(--ink); font-weight: 500; }

    /* SECTION BASE */
    section { scroll-margin-top: 5rem; }
    .section-label {
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
      display: inline-flex; align-items: center; gap: 1rem;
    }
    .section-label::before {
      content: ''; display: block; width: 2rem; height: 1px; background: var(--gold);
    }
    h2 {
      font-family: var(--serif);
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 300;
      line-height: 1.15;
      margin-bottom: 1rem;
      text-wrap: balance;
    }
    h2 em { font-style: italic; color: var(--sage-dark); }

    /* ACTION CARDS — "start here" */
    .actions {
      padding: 6rem 3rem 3rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    .actions-head { max-width: 640px; margin-bottom: 3rem; }
    .actions-head p {
      font-size: 1rem;
      color: var(--muted);
      margin-top: 0.5rem;
      line-height: 1.75;
    }
    .action-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .action-card {
      padding: 2rem 1.75rem 1.75rem;
      background: var(--warm-white);
      border: 1px solid var(--border);
      border-radius: 2px;
      display: flex;
      flex-direction: column;
      position: relative;
      color: inherit;
    }
    .action-card .step-num {
      font-family: var(--serif);
      font-size: 2rem;
      line-height: 1;
      color: var(--gold);
      font-weight: 300;
      margin-bottom: 0.75rem;
    }
    .action-card h3 {
      font-family: var(--serif);
      font-size: 1.35rem;
      font-weight: 400;
      line-height: 1.25;
      margin-bottom: 0.6rem;
      color: var(--ink);
    }
    .action-card p {
      font-size: 0.92rem;
      color: var(--muted);
      line-height: 1.65;
      flex: 1;
      margin-bottom: 1rem;
    }
    .action-card .card-arrow {
      font-size: 0.75rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--sage-dark);
      display: inline-flex;
      gap: 0.5rem;
      align-items: center;
    }

    /* WHAT CLOSURE HANDLES */
    .handles {
      padding: 4rem 3rem 6rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    .handles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--border);
      margin-top: 3rem;
    }
    .handle-card {
      background: var(--warm-white);
      padding: 2rem;
    }
    .handle-card h4 {
      font-family: var(--serif);
      font-size: 1.2rem;
      font-weight: 400;
      margin-bottom: 0.75rem;
      display: flex; align-items: center; gap: 0.6rem;
    }
    .handle-card h4::before {
      content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--sage);
    }
    .handle-card ul { list-style: none; }
    .handle-card li {
      font-size: 0.88rem;
      color: var(--muted);
      padding: 0.4rem 0;
      border-bottom: 1px dashed var(--border);
      line-height: 1.5;
    }
    .handle-card li:last-child { border-bottom: 0; }

    /* PROCESS / GUIDE PREVIEW — full-bleed, phone + explanation */
    .process {
      background: var(--parchment);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 6rem 3rem;
    }
    .process-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .process-text h2 { margin-bottom: 1rem; }
    .process-text .lead {
      font-size: 1.05rem;
      color: var(--muted);
      margin-bottom: 2rem;
      line-height: 1.75;
      max-width: 46ch;
    }
    .process-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    .process-list li {
      display: flex;
      gap: 1.25rem;
      padding: 1rem 0;
      border-top: 1px solid var(--border);
    }
    .process-list li:last-child { border-bottom: 1px solid var(--border); }
    .process-list .num {
      font-family: var(--serif);
      font-size: 1.4rem;
      font-weight: 300;
      color: var(--gold);
      min-width: 2.5rem;
    }
    .process-list h5 {
      font-family: var(--serif);
      font-size: 1.2rem;
      font-weight: 400;
      margin-bottom: 0.3rem;
    }
    .process-list p {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.65;
    }
    .process-visual { display: flex; justify-content: center; }

    /* TONE / GRIEF SECTION — dark */
    .tone-section {
      background: var(--ink);
      color: var(--parchment);
      padding: 6rem 3rem;
    }
    .tone-inner {
      max-width: 720px;
      margin: 0 auto;
      text-align: center;
    }
    .tone-eyebrow {
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sage-light);
      margin-bottom: 2rem;
      display: inline-flex; align-items: center; gap: 1rem;
    }
    .tone-eyebrow::before {
      content: ''; display: block; width: 2rem; height: 1px; background: var(--sage-light);
    }
    .tone-body {
      font-family: var(--serif);
      font-size: clamp(1.4rem, 2.2vw, 1.9rem);
      font-style: italic;
      font-weight: 300;
      line-height: 1.55;
      color: var(--parchment);
      margin-bottom: 2rem;
    }
    .tone-sign {
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--sage-light);
    }

    /* FAQ-ish "did someone leave an export for you" section */
    .export-section {
      padding: 6rem 3rem;
      max-width: 1100px;
      margin: 0 auto;
    }
    .export-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .export-visual {
      background: var(--parchment);
      border: 1px solid var(--border);
      padding: 2.5rem 2rem;
      border-radius: 2px;
      position: relative;
    }
    .export-file {
      background: var(--warm-white);
      border: 1px dashed var(--gold);
      padding: 1.25rem 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
    }
    .export-file-icon {
      width: 40px;
      height: 50px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      border-radius: 2px;
      flex-shrink: 0;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-family: var(--serif);
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      font-weight: 500;
    }
    .export-file-icon::after {
      content: '';
      position: absolute; top: 0; right: 0;
      width: 10px; height: 10px;
      background: var(--parchment);
      clip-path: polygon(0 0, 100% 100%, 100% 0);
    }
    .export-file-text strong {
      display: block;
      font-family: var(--serif);
      font-size: 1rem;
      margin-bottom: 0.15rem;
      color: var(--ink);
      font-weight: 400;
    }
    .export-file-text span {
      font-size: 0.78rem;
      color: var(--muted);
    }
    .export-pw-field {
      background: var(--warm-white);
      border: 1px solid var(--border);
      padding: 0.9rem 1rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-family: 'DM Sans', monospace;
      letter-spacing: 0.3em;
      color: var(--ink);
      font-size: 0.95rem;
    }
    .export-pw-field::before {
      content: '🔒';
      font-size: 0.9rem;
      letter-spacing: 0;
    }
    .export-text h2 { margin-bottom: 1rem; }
    .export-text p {
      font-size: 1rem;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 1rem;
    }

    /* RESOURCES STRIP */
    .resources {
      padding: 4rem 3rem;
      background: var(--warm-white);
      border-top: 1px solid var(--border);
    }
    .resources-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      gap: 4rem;
      align-items: start;
    }
    .resources-inner h2 { margin-bottom: 0.75rem; }
    .resources-inner .section-label { margin-bottom: 1rem; }
    .resources-inner > div:first-child p {
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.7;
    }
    .resources-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem 2rem;
    }
    .resource {
      padding: 1.2rem 0;
      border-top: 1px solid var(--border);
    }
    .resource:last-child, .resource:nth-last-child(2) { border-bottom: 1px solid var(--border); }
    .resource h5 {
      font-family: var(--serif);
      font-size: 1.05rem;
      font-weight: 400;
      margin-bottom: 0.3rem;
    }
    .resource p {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.5;
      margin-bottom: 0.4rem;
    }
    .resource a {
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--sage-dark);
      text-decoration: none;
      border-bottom: 1px solid var(--border);
      padding-bottom: 1px;
    }
    .resource a:hover { border-color: var(--sage-dark); }

    /* CTA FINAL */
    .final-cta {
      padding: 6rem 3rem;
      text-align: center;
      max-width: 640px;
      margin: 0 auto;
    }
    .final-cta .section-label { justify-content: center; }
    .final-cta h2 { margin-bottom: 1.25rem; }
    .final-cta p {
      font-size: 1.02rem;
      color: var(--muted);
      margin-bottom: 2.5rem;
      line-height: 1.7;
    }

    /* FOOTER */
    footer {
      border-top: 1px solid var(--border);
      padding: 2rem 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      background: var(--warm-white);
    }
    .footer-logo {
      font-family: var(--serif);
      font-size: 1.2rem;
      color: var(--ink);
      text-decoration: none;
    }
    .footer-links { display: flex; gap: 2rem; list-style: none; }
    .footer-links a {
      font-size: 0.8rem; color: var(--muted); text-decoration: none; letter-spacing: 0.05em;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--ink); }
    .footer-copy { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.03em; }

.download-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: .75rem;

    padding: 14px 28px;

    background: #111;
    color: white;

    border-radius: 12px;

    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;

    transition: all .2s ease;
}

.app-store-btn svg {
    width: 24px;
    height: 24px;
}

.app-store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    @media (max-width: 900px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links { display: none; }
      .hero { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 3rem; }
      .hero-visual { order: -1; }
      .assurance-inner { padding: 1.25rem 1.5rem; gap: 1.5rem; }
      .actions, .handles, .export-section, .resources, .process, .tone-section, .final-cta { padding-left: 1.5rem; padding-right: 1.5rem; }
      .action-grid { grid-template-columns: 1fr; }
      .handles-grid { grid-template-columns: 1fr; }
      .process-inner { grid-template-columns: 1fr; gap: 3rem; }
      .export-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .resources-inner { grid-template-columns: 1fr; gap: 2rem; }
      .resources-list { grid-template-columns: 1fr; }
      footer { flex-direction: column; text-align: center; }
    }

    /* Hero layout variants (Tweaks) */
    body.exec-hero-b .hero { grid-template-columns: 1fr; text-align: center; }
    body.exec-hero-b .hero-sub { margin-left: auto; margin-right: auto; }
    body.exec-hero-b .btn-row { justify-content: center; }
    body.exec-hero-b .hero-eyebrow { justify-content: center; }
    body.exec-hero-b .hero-eyebrow::before { display: none; }
    body.exec-hero-b .hero-visual { display: none; }
    body.exec-hero-b .process-visual { order: -1; }

    /* Tweaks panel */
    #tweaks {
      position: fixed;
      right: 1.5rem;
      bottom: 1.5rem;
      width: 280px;
      background: var(--warm-white);
      border: 1px solid var(--border);
      box-shadow: 0 20px 50px rgba(26,24,20,0.15);
      padding: 1.25rem;
      z-index: 200;
      display: none;
      border-radius: 4px;
      font-size: 0.85rem;
    }
    #tweaks.on { display: block; }
    #tweaks h4 {
      font-family: var(--serif);
      font-size: 1rem;
      font-weight: 400;
      margin-bottom: 1rem;
    }
    #tweaks label {
      display: block;
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.4rem;
      margin-top: 0.75rem;
    }
    #tweaks .opts {
      display: flex; gap: 0.4rem; flex-wrap: wrap;
    }
    #tweaks button {
      flex: 1;
      padding: 0.5rem 0.6rem;
      border: 1px solid var(--border);
      background: white;
      font-family: inherit;
      font-size: 0.75rem;
      letter-spacing: 0.05em;
      cursor: pointer;
      border-radius: 2px;
      color: var(--muted);
    }
    #tweaks button.active { border-color: var(--sage); color: var(--sage-dark); background: var(--sage-tint); }