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

    :root {
      --ink: #1a1814;
      --parchment: #f5f0e8;
      --warm-white: #faf8f4;
      --sage: #7a8c75;
      --sage-light: #a8b8a3;
      --gold: #b8975a;
      --gold-light: #d4b47a;
      --muted: #7a746a;
      --border: rgba(26,24,20,0.1);
    }

    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: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.25rem 3rem;
      background: rgba(250,248,244,0.9);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', 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(--ink) !important;
      color: var(--warm-white) !important;
      padding: 0.6rem 1.4rem;
      border-radius: 2px;
      font-size: 0.8rem !important;
      letter-spacing: 0.1em !important;
    }

    .nav-cta:hover { background: var(--gold) !important; color: var(--ink) !important; }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 6rem 3rem 4rem;
      max-width: 1200px;
      margin: 0 auto;
      gap: 4rem;
    }

    .hero-text { animation: fadeUp 1s ease both; }

    .hero-eyebrow {
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 2rem;
      height: 1px;
      background: var(--gold);
    }

    h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 5vw, 5rem);
      font-weight: 300;
      line-height: 1.1;
      letter-spacing: -0.01em;
      margin-bottom: 1.5rem;
    }

    h1 em {
      font-style: italic;
      color: var(--sage);
    }

    .hero-sub {
      font-size: 1.1rem;
      color: var(--muted);
      max-width: 420px;
      margin-bottom: 2.5rem;
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      align-items: center;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--ink);
      color: var(--warm-white);
      padding: 0.9rem 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(--gold); color: var(--ink); }

    .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); }

    /* Hero visual */
    .hero-visual {
      animation: fadeUp 1s 0.2s ease both;
      display: flex;
      justify-content: center;
    }

    .app-mockup {
      width: 280px;
      background: var(--ink);
      border-radius: 40px;
      padding: 10px;
      box-shadow: 0 40px 80px rgba(26,24,20,0.2), 0 0 0 1px rgba(255,255,255,0.05);
      position: relative;
    }
    .app-screenshot {
      width: 100%;
      display: block;
      border-radius: 30px;
      aspect-ratio: 461/996;
      object-fit: cover;
      object-position: top;
      background: var(--parchment);
    }

    .app-screen {
      width: 100%;
      height: 100%;
      background: linear-gradient(160deg, #1f1d19 0%, #2a2720 100%);
      border-radius: 30px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      padding: 2rem 1.5rem;
    }

    .app-status {
      display: flex;
      justify-content: space-between;
      font-size: 0.6rem;
      color: rgba(255,255,255,0.4);
      margin-bottom: 2rem;
      letter-spacing: 0.05em;
    }

    .app-header-label {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      color: var(--parchment);
      margin-bottom: 0.3rem;
    }

    .app-sub-label {
      font-size: 0.65rem;
      color: rgba(255,255,255,0.35);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }

    .app-progress-block {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 8px;
      padding: 0.9rem;
      margin-bottom: 0.75rem;
    }

    .app-progress-label {
      font-size: 0.6rem;
      color: rgba(255,255,255,0.4);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }

    .app-progress-bar {
      height: 3px;
      background: rgba(255,255,255,0.08);
      border-radius: 2px;
      overflow: hidden;
      margin-bottom: 0.4rem;
    }

    .app-progress-fill {
      height: 100%;
      background: var(--sage-light);
      border-radius: 2px;
      transition: width 2s ease;
    }

    .app-progress-pct {
      font-size: 0.65rem;
      color: var(--sage-light);
      text-align: right;
    }

    .app-checklist-item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.6rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      font-size: 0.65rem;
      color: rgba(255,255,255,0.5);
      letter-spacing: 0.03em;
    }

    .app-check-circle {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .app-check-circle.done {
      background: var(--sage);
      border-color: var(--sage);
    }

    .app-check-circle.done::after {
      content: '✓';
      font-size: 0.5rem;
      color: white;
    }

    .app-check-text.done { color: rgba(255,255,255,0.25); text-decoration: line-through; }

    /* DIVIDER */
    .section-divider {
      width: 100%;
      height: 1px;
      background: var(--border);
      margin: 0;
    }

    /* FEATURES */
    .features {
      padding: 6rem 3rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-label {
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .section-label::before {
      content: '';
      display: block;
      width: 2rem;
      height: 1px;
      background: var(--gold);
    }

    h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3.5vw, 3.2rem);
      font-weight: 300;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .features-intro {
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 520px;
      margin-bottom: 4rem;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--border);
    }

    .feature-card {
      background: var(--warm-white);
      padding: 2.5rem;
      transition: background 0.2s;
    }

    .feature-card:hover { background: var(--parchment); }

    .feature-icon {
      width: 2.5rem;
      height: 2.5rem;
      margin-bottom: 1.5rem;
      opacity: 0.6;
    }

    .feature-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 400;
      margin-bottom: 0.75rem;
    }

    .feature-desc {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.7;
    }

    /* TWO PATHS */
    .paths {
      padding: 6rem 3rem;
      background: var(--parchment);
    }

    .paths-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .paths-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin-top: 3rem;
    }

    .path-card {
      padding: 3rem;
      border: 1px solid var(--border);
      background: var(--warm-white);
      position: relative;
      overflow: hidden;
    }

    .path-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
    }

    .path-card.bereaved::before { background: var(--sage); }
    .path-card.planner::before { background: var(--gold); }

    .path-tag {
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 1rem;
      padding: 0.3rem 0.8rem;
      display: inline-block;
      border-radius: 2px;
    }

    .bereaved .path-tag { background: rgba(122,140,117,0.1); color: var(--sage); }
    .planner .path-tag { background: rgba(184,151,90,0.1); color: var(--gold); }

    .path-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-weight: 300;
      margin-bottom: 1rem;
    }

    .path-desc {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 1.5rem;
    }

    .path-price {
      font-size: 0.8rem;
      color: var(--muted);
      border-top: 1px solid var(--border);
      padding-top: 1.5rem;
    }

    .path-price strong {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--ink);
      display: block;
      margin-bottom: 0.25rem;
    }

    /* PRIVACY SECTION */
    .privacy-section {
      padding: 6rem 3rem;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
    }

    .privacy-visual {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .privacy-block {
      background: var(--parchment);
      border: 1px solid var(--border);
      padding: 1.25rem 1.5rem;
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      border-radius: 2px;
    }

    .privacy-block-icon {
      font-size: 1.2rem;
      flex-shrink: 0;
      margin-top: 0.1rem;
    }

    .privacy-block-text strong {
      display: block;
      font-size: 0.85rem;
      font-weight: 500;
      margin-bottom: 0.2rem;
    }

    .privacy-block-text span {
      font-size: 0.8rem;
      color: var(--muted);
    }

    /* TESTIMONIAL / STORY */
    .story-section {
      background: var(--ink);
      color: var(--parchment);
      padding: 6rem 3rem;
    }

    .story-inner {
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
    }

    .story-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.5rem, 2.5vw, 2.2rem);
      font-weight: 300;
      font-style: italic;
      line-height: 1.5;
      margin-bottom: 2rem;
      opacity: 0.9;
    }

    .story-attr {
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--sage-light);
    }

    /* ONTARIO BADGE */
    .ontario-section {
      padding: 4rem 3rem;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .ontario-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 3rem;
      flex-wrap: wrap;
    }

    .ontario-text {
      flex: 1;
      min-width: 280px;
    }

    .ontario-text h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 400;
      margin-bottom: 0.5rem;
    }

    .ontario-text p {
      font-size: 0.9rem;
      color: var(--muted);
    }

    .ontario-badges {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .badge {
      padding: 0.6rem 1.2rem;
      border: 1px solid var(--border);
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      border-radius: 2px;
    }

    /* CTA FINAL */
    .final-cta {
      padding: 8rem 3rem;
      text-align: center;
      max-width: 700px;
      margin: 0 auto;
    }

    .final-cta h2 { margin-bottom: 1rem; }

    .final-cta p {
      font-size: 1.05rem;
      color: var(--muted);
      margin-bottom: 2.5rem;
    }

    /* 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;
    }

    .footer-logo {
      font-family: 'Cormorant Garamond', 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;
    }

    /* BEREAVED BANNER */
    .bereaved-banner {
      background: var(--sage);
      color: white;
      padding: 0.75rem 3rem;
      position: relative;
      z-index: 101;
    }

    .bereaved-banner-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .bereaved-banner-label {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: rgba(255,255,255,0.2);
      padding: 0.2rem 0.7rem;
      border-radius: 2px;
      white-space: nowrap;
    }

    .bereaved-banner-text {
      font-size: 0.85rem;
      opacity: 0.9;
      flex: 1;
    }

    .bereaved-banner-link {
      font-size: 0.8rem;
      font-weight: 500;
      color: white;
      text-decoration: none;
      border-bottom: 1px solid rgba(255,255,255,0.5);
      padding-bottom: 1px;
      white-space: nowrap;
      transition: border-color 0.2s;
    }

    .bereaved-banner-link:hover { border-color: white; }

    /* Adjust nav top offset to account for banner */
    nav { top: 36px; }

    .hero { padding-top: 8rem; }

    /* STATS BAR */
    .stats-bar {
      background: var(--ink);
      color: var(--parchment);
      padding: 3rem;
    }

    .stats-bar-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 0;
    }

    .stat-item {
      flex: 1;
      text-align: center;
      padding: 0 2rem;
    }

    .stat-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      font-weight: 300;
      line-height: 1;
      margin-bottom: 0.75rem;
      color: var(--gold-light);
    }

    .stat-desc {
      font-size: 0.8rem;
      color: rgba(245,240,232,0.6);
      line-height: 1.5;
    }

    .stat-desc span {
      display: block;
      font-size: 0.7rem;
      color: rgba(245,240,232,0.35);
      margin-top: 0.3rem;
      letter-spacing: 0.05em;
    }

    .stat-divider {
      width: 1px;
      height: 3rem;
      background: rgba(255,255,255,0.1);
      flex-shrink: 0;
    }

    /* CHECKLIST SECTION */
    .checklist-section {
      padding: 6rem 3rem;
      background: var(--parchment);
    }

    .checklist-inner {
      max-width: 800px;
      margin: 0 auto;
    }

    .checklist-intro {
      font-size: 1rem;
      color: var(--muted);
      margin-top: 0.75rem;
      margin-bottom: 2.5rem;
      line-height: 1.7;
    }

    .checklist-widget {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: start;
    }

    .checklist-items {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .cl-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.9rem 0;
      border-bottom: 1px solid var(--border);
      cursor: pointer;
      transition: background 0.15s;
    }

    .cl-item:first-child { border-top: 1px solid var(--border); }

    .cl-item:hover { background: rgba(26,24,20,0.02); }

    .cl-check { display: none; }

    .cl-box {
      width: 18px;
      height: 18px;
      border: 1.5px solid rgba(26,24,20,0.25);
      border-radius: 3px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.15s;
      background: white;
    }

    .cl-check:checked + .cl-box {
      background: var(--sage);
      border-color: var(--sage);
    }

    .cl-check:checked + .cl-box::after {
      content: '';
      width: 5px;
      height: 9px;
      border: 2px solid white;
      border-top: none;
      border-left: none;
      transform: rotate(45deg) translateY(-1px);
      display: block;
    }

    .cl-text {
      font-size: 0.88rem;
      color: var(--ink);
      line-height: 1.4;
      transition: color 0.15s;
    }

    .cl-item:has(.cl-check:checked) .cl-text {
      color: var(--muted);
      text-decoration: line-through;
      text-decoration-color: var(--sage-light);
    }

    /* Result panel */
    .checklist-result {
      background: white;
      border: 1px solid var(--border);
      padding: 2rem;
      position: sticky;
      top: 6rem;
    }

    .result-score-wrap {
      margin-bottom: 1.5rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid var(--border);
    }

    .result-score {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem;
      font-weight: 300;
      line-height: 1;
      margin-bottom: 0.4rem;
      transition: color 0.3s;
    }

    .result-score.good { color: var(--sage); }
    .result-score.fair { color: var(--gold); }
    .result-score.poor { color: #b05a4a; }

    .result-label {
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .result-message {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    .result-cta {
      width: 100%;
      justify-content: center;
    }

    /* STORY SECTION - expanded */
    .story-section {
      background: var(--ink);
      color: var(--parchment);
      padding: 6rem 3rem;
    }

    .story-inner {
      max-width: 640px;
      margin: 0 auto;
    }

    .story-eyebrow {
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sage-light);
      margin-bottom: 2rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .story-eyebrow::before {
      content: '';
      display: block;
      width: 2rem;
      height: 1px;
      background: var(--sage-light);
    }

    .story-body {
      font-size: 1rem;
      color: rgba(245,240,232,0.7);
      line-height: 1.85;
      margin-bottom: 1.25rem;
    }

    .story-quote-pull {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-style: italic;
      font-weight: 300;
      color: var(--parchment);
      line-height: 1.5;
      border-left: 2px solid var(--sage);
      padding-left: 1.5rem;
      margin: 2rem 0;
    }

    .story-attr {
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--sage-light);
      margin-top: 1.5rem;
    }

    /* features inner wrapper */
    .features-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* ANIMATIONS */
    @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);
    }

    .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);
}

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .bereaved-banner { padding: 0.75rem 1.5rem; }
      nav { padding: 1rem 1.5rem; top: auto; position: sticky; }
      .nav-links { display: none; }
      .hero { grid-template-columns: 1fr; padding: 4rem 1.5rem 3rem; gap: 3rem; }
      .hero-visual { order: -1; }
      .app-mockup { width: 220px; }
      .stats-bar { padding: 2rem 1.5rem; }
      .stats-bar-inner { flex-wrap: wrap; gap: 1.5rem; }
      .stat-item { flex: 1 1 40%; padding: 0 0.5rem; }
      .stat-divider { display: none; }
      .checklist-section { padding: 4rem 1.5rem; }
      .checklist-widget { grid-template-columns: 1fr; }
      .checklist-result { position: static; }
      .features { padding: 4rem 1.5rem; }
      .features-grid { grid-template-columns: 1fr; }
      .paths { padding: 4rem 1.5rem; }
      .paths-grid { grid-template-columns: 1fr; }
      .privacy-section { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 3rem; }
      .story-section { padding: 4rem 1.5rem; }
      .final-cta { padding: 5rem 1.5rem; }
      footer { padding: 1.5rem; flex-direction: column; text-align: center; }
    }