:root{
    --bg1:#1d1640;
    --bg2:#07061a;
    --bg3:#000000;
  
    --glass: rgba(30,25,70,.45);
    --glass2: rgba(18,16,40,.55);
  
    --text:#e8ecff;
    --muted: rgba(232,236,255,.75);
  
    --line: rgba(140,160,255,.18);
    --line2: rgba(140,160,255,.12);
  
    --cyan:#6ce0ff;
    --teal:#39d0c8;
    --lilac:#b07cff;
    --orange:#ffa34d;
  }
  
  *{ box-sizing:border-box; }
  html{ scroll-behavior:smooth; }

  .sr-only{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  
  body{
    margin:0;
    color:var(--text);
    background: radial-gradient(circle at 20% 10%, var(--bg1), var(--bg2) 50%, var(--bg3));
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    overflow-x:hidden;
    position:relative;
  }
  
  /* Continuous atmospheric background — on body so every section shares it (no break) */
  body::before{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    z-index:0;
    background:
      radial-gradient(1400px 900px at 50% 12%, rgba(57,208,200,.07), transparent 52%),
      radial-gradient(1200px 800px at 50% 55%, rgba(176,124,255,.055), transparent 50%),
      radial-gradient(1100px 700px at 50% 98%, rgba(255,163,77,.045), transparent 50%);
    filter: blur(40px);
  }
  
  body::after{
    content:"";
    position:fixed;
    inset:-20%;
    pointer-events:none;
    z-index:0;
    background:
      radial-gradient(600px 450px at 20% 20%, rgba(108,224,255,.18), transparent 60%),
      radial-gradient(550px 420px at 75% 35%, rgba(176,124,255,.14), transparent 60%),
      radial-gradient(700px 520px at 60% 85%, rgba(57,208,200,.12), transparent 62%);
    filter: blur(12px);
    opacity:.9;
    animation: drift 12s ease-in-out infinite alternate;
  }
  
  @keyframes drift{
    from{ transform: translate3d(0,0,0) scale(1); }
    to{ transform: translate3d(2%, -1%, 0) scale(1.03); }
  }
  
  .page{ width:100%; position:relative; z-index:1; }
  
  /* Full-screen section layout: consistent across hero, path, noticed, meaning, cta */
  .panel{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px;
  }
  
  /* HERO — .panel supplies min-height, flex, padding */
  .hero-inner{
    width:min(1080px, 100%);
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:22px;
  }
  
  .brand{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:8px;
    text-align:center;
  }
  
  .brand-logo{
    width:220px;
    height:auto;
    filter: drop-shadow(0 0 18px rgba(108,224,255,.22));
  }
  
  .brand-sub{
    font-size:13px;
    letter-spacing:.12em;
    text-transform:uppercase;
    color: rgba(232,236,255,.55);
  }
  
  .hero-card{
    width:min(860px, 100%);
    padding:40px 36px 30px;
    border-radius:24px;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border:1px solid var(--line);
    box-shadow:
      0 0 0 1px rgba(140,160,255,.08),
      0 28px 90px rgba(0,0,0,.70),
      0 0 160px rgba(80,120,255,.14);
    text-align:center;
    position:relative;
  }
  
  .hero-card::before{
    content:"";
    position:absolute;
    inset:-1px;
    border-radius:24px;
    padding:1px;
    background: linear-gradient(135deg,
      rgba(57,208,200,.30),
      rgba(108,224,255,.22),
      rgba(255,163,77,.22),
      rgba(176,124,255,.22)
    );
    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events:none;
    opacity:.85;
  }
  
  .badge{
    display:inline-flex;
    gap:6px;
    align-items:center;
    padding:8px 12px;
    border-radius:999px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--line2);
    color: rgba(232,236,255,.70);
    font-size:13px;
    margin-bottom:16px;
  }
  
  .badge span{
    color: rgba(232,236,255,.92);
    font-weight:600;
  }
  
  h1{
    font-size: clamp(28px, 3.2vw, 44px);
    margin: 6px 0 10px;
    letter-spacing:-.02em;
  }
  
  .sub{
    margin:0 auto;
    max-width: 54ch;
    color: var(--muted);
    line-height:1.55;
  }
  
  .recognition{
    margin:22px 0 22px;
    font-size: 16px;
    line-height:1.6;
    color: rgba(232,236,255,.92);
  }
  
  .cta-row{
    display:flex;
    gap:12px;
    justify-content:center;
    flex-wrap:wrap;
    margin-top:10px;
  }
  
  .btn{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding: 14px 22px;
    border-radius:999px;
    font-weight:650;
    text-decoration:none;
    cursor:pointer;
    user-select:none;
    border:1px solid transparent;
    letter-spacing:.02em;

    /* IMPORTANT: keeps shine inside the button */
    overflow: hidden;
    isolation: isolate;

    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease, background .25s ease;
  }

  /* Primary gradient now includes your orange + purple */
  .btn-primary{
    color:#041018;
    background: linear-gradient(135deg,
      var(--teal) 0%,
      var(--cyan) 55%,
      var(--lilac) 100%
    );
    box-shadow:
      0 14px 44px rgba(108,224,255,.25),
      0 0 0 1px rgba(140,160,255,.10);
  }

  /* Orange shows up as a glow, not a stripe */
  .btn-primary:hover{
    transform: translateY(-2px);
    box-shadow:
      0 18px 62px rgba(108,224,255,.42),
      0 0 36px rgba(176,124,255,.22),
      0 0 26px rgba(255,163,77,.18);
  }

  .btn-primary::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:999px;
    pointer-events:none;
    opacity:.65;
    /* thin orange rim + faint purple rim */
    box-shadow:
      inset 0 0 0 1px rgba(255,163,77,.22),
      inset 0 0 0 1px rgba(176,124,255,.10);
  }

  .btn-ghost{
    color: rgba(232,236,255,.88);
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(140,160,255,.18);
  }

  .btn-ghost:hover{
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow:
      0 12px 40px rgba(176,124,255,.16),
      0 0 26px rgba(255,163,77,.14);
  }

  .btn-big{ padding: 16px 26px; font-size:16px; }

  /* Shine layer: clipped to button and moves only across button width */
  .btn-shine{
    position:absolute;
    top:-30%;
    bottom:-30%;
    width: 45%;
    left: -55%;
    border-radius: 999px;
    background: linear-gradient(120deg,
      transparent 0%,
      rgba(255,255,255,.38) 45%,
      transparent 100%
    );
    filter: blur(0.2px);
    opacity:.55;
    pointer-events:none;
    z-index: 0;
  }

  .btn > *:not(.btn-shine){
    position: relative;
    z-index: 1;
  }

  /* Trigger: ONLY animate the shine within the button */
  .btn-primary:hover .btn-shine{
    animation: shine-across .85s ease-out 1;
  }

  @keyframes shine-across{
    0%   { left: -55%; opacity: .0; }
    10%  { opacity: .55; }
    100% { left: 110%; opacity: .0; }
  }
  
  .micro{
    margin-top:14px;
    font-size:13px;
    color: rgba(232,236,255,.58);
  }
  
  .scroll-hint{
    opacity:.7;
    font-size:13px;
    margin-top: 10px;
  }
  
  .scroll-link{
    color: rgba(232,236,255,.65);
    text-decoration:none;
    border-bottom: 1px solid rgba(232,236,255,.25);
  }
  
  /* CONTENT SECTIONS — .panel supplies min-height 100vh, flex, centering */
  .content.panel{
    padding: 100px 24px;
    min-height: 100vh;
  }
  
  .content-inner{
    width: min(1120px, 100%);
    margin: 0 auto;
    text-align: center;
  }

  /* Surface card: backbone panel — every idea lives inside a surface */
  .surface-card{
    width: 100%;
    max-width: min(720px, 100%);
    margin: 0 auto;
    padding: 36px 40px 40px;
    border-radius: 20px;
    background: rgba(30, 28, 50, .42);
    border: 1px solid rgba(140, 160, 255, .12);
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, .04);
    text-align: left;
  }

  .surface-card .surface-title{
    margin: 0 0 16px;
  }

  .surface-card .surface-support{
    margin: 0 0 24px;
    max-width: 62ch;
    color: var(--muted);
    line-height: 1.6;
  }

  .surface-card .divider{
    margin: 28px 0;
  }

  .meaning-block{
    padding: 14px 0;
    border-left: 2px solid rgba(140, 160, 255, .2);
    padding-left: 20px;
    margin: 0 0 8px;
    color: rgba(232, 236, 255, .88);
    line-height: 1.55;
  }

  .surface-close{
    margin: 28px 0 0;
    font-weight: 600;
    color: rgba(255, 248, 238, .96);
    line-height: 1.6;
    max-width: 62ch;
    text-shadow: 0 0 28px rgba(255, 163, 77, .22);
  }

  .surface-card .reassure{
    margin-top: 28px;
  }

  .surface-card .reassure h3{
    margin: 0 0 10px;
  }

  .surface-card .reassure p{
    margin: 0;
  }

  /* Trust module: explanation + anchored bullet list + consequence */
  .trust-surface .surface-support{
    margin-bottom: 20px;
  }

  .trust-surface .trust-list{
    margin: 20px 0;
  }

  .trust-surface .trust-consequence{
    margin: 24px 0 0;
    padding-top: 20px;
    border-top: 1px solid rgba(140, 160, 255, .1);
    color: rgba(232, 236, 255, .8);
    line-height: 1.6;
    max-width: 62ch;
  }

  /* Wide CTA surface: two-column, button centered to text column height */
  .surface-card.cta-surface{
    max-width: min(900px, 100%);
    padding: 40px 44px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: stretch;
    justify-content: space-between;
    text-align: left;
    position: relative;
  }

  .cta-surface .cta-text-col{
    flex: 1 1 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .cta-surface .cta-action-col{
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
  }

  .cta-emblem{
    position: absolute;
    /* Slight overlap with card edge — avoids sticker-behind-glass; part of arrow meets boundary */
    right: -10px;
    bottom: clamp(28px, 4vw, 56px);
    width: clamp(56px, 12%, 120px);
    height: auto;
    pointer-events: none;
    z-index: 0;
    opacity: .06;
    mix-blend-mode: soft-light;
    /* Card lighting: recessed into panel only; no outer glow — etched, not illuminated */
    filter:
      blur(0.4px)
      contrast(1.07)
      drop-shadow(0 1px 1px rgba(0, 0, 0, .06));
    transition: none;
  }

  .cta-emblem img{
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    /* Inherit card light (top): highlight where mark meets surface; inner shadow = pressed/stamped */
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .1),
      inset 0 -1px 1px rgba(0, 0, 0, .14),
      inset 0 0 20px rgba(0, 0, 0, .08);
  }

  @media (max-width: 768px){
    .cta-emblem{
      opacity: .04;
      right: -6px;
      bottom: clamp(20px, 3vw, 40px);
    }
  }
  
  .kicker{
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 12px;
    color: rgba(255,163,77,.92);
    margin-bottom: 10px;
  }

  .content h2{
    font-size: clamp(22px, 2.4vw, 32px);
    margin: 0 0 18px;
  }
  
  .lead{
    margin: 0 auto 40px;
    max-width: 62ch;
    color: var(--muted);
    line-height: 1.6;
  }
  
  .grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 36px;
  }
  
  .card{
    padding: 18px 18px 16px;
    border-radius: 16px;
    background: rgba(40,35,90,.34);
    border: 1px solid rgba(140,160,255,.14);
    box-shadow: 0 14px 40px rgba(0,0,0,.28);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    text-align: left;
  }
  
  .card:hover{
    transform: translateY(-4px);
    box-shadow: 0 18px 56px rgba(0,0,0,.40), 0 0 0 1px rgba(255,163,77,.12);
    border-color: rgba(255,163,77,.18);
  }
  
  .card-title{
    font-weight:700;
    margin-bottom:6px;
  }
  
  .card-text{
    color: rgba(232,236,255,.70);
    line-height:1.5;
  }

  /* Choose Your Path: 3 cards, glass, hover arrow */
  .path-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 36px;
  }

  .path-card{
    display: block;
    padding: 20px 20px 18px;
    border-radius: 16px;
    background: rgba(40,35,90,.34);
    border: 1px solid rgba(140,160,255,.14);
    box-shadow: 0 14px 40px rgba(0,0,0,.28);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    text-align: left;
    text-decoration: none;
    color: inherit;
    position: relative;
  }

  .path-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 18px 56px rgba(108,224,255,.12), 0 0 0 1px rgba(255,163,77,.12);
    border-color: rgba(255,163,77,.18);
  }

  .path-card:hover::after{
    content: "→";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--cyan);
    opacity: .9;
  }

  .path-card-title{
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: rgba(232,236,255,.95);
  }

  .path-card-micro{
    display: block;
    font-size: 13px;
    color: rgba(232,236,255,.62);
    line-height: 1.45;
  }

  .divider{
    height: 1px;
    width: min(800px, 100%);
    margin: 48px auto 36px;
    background: linear-gradient(90deg,
      transparent,
      rgba(108,224,255,.18),
      rgba(255,163,77,.26),
      rgba(176,124,255,.18),
      transparent
    );
  }
  
  .reassure h3{
    margin: 0 0 12px;
  }
  .reassure p{
    margin: 0 auto;
    max-width: 70ch;
    color: rgba(232,236,255,.78);
    line-height: 1.65;
  }

  /* Trust marker section: glass panel + feature chips */
  .trust-panel{
    margin: 0 auto;
    max-width: min(620px, 100%);
    padding: 24px 28px;
    border-radius: 18px;
    background: var(--glass2);
    border: 1px solid rgba(140,160,255,.14);
    box-shadow: 0 20px 70px rgba(0,0,0,.45);
    text-align: left;
  }

  .trust-list{
    list-style: none;
    margin: 0 0 18px 0;
    padding: 0;
  }

  .trust-item{
    position: relative;
    padding: 10px 0 10px 32px;
    color: rgba(232,236,255,.9);
    line-height: 1.45;
    font-size: 15px;
  }

  .trust-item::before{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 12px rgba(108,224,255,.5);
  }

  .trust-micro{
    margin: 0;
    font-size: 13px;
    color: rgba(232,236,255,.58);
    line-height: 1.5;
  }

  .content.alt{
    border-top: 1px solid rgba(140,160,255,.06);
  }
  
  .cta-panel{
    margin-top: 36px;
    padding: 28px;
    border-radius: 18px;
    background: var(--glass2);
    border: 1px solid rgba(140,160,255,.14);
    box-shadow: 0 20px 70px rgba(0,0,0,.45);
    display:flex;
    gap:18px;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    text-align:left;
  }
  
  .cta-left{ flex: 1 1 420px; }
  .cta-right{ flex: 0 0 auto; display:flex; flex-direction:column; gap:10px; align-items:flex-start; }

  .cta-card{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cta-stack{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(14px, 1.4vw, 22px);
    max-width: 520px;
    margin: 0 auto;
  }

  .cta-button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    min-width: 260px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    margin: 0 auto;
    transform: translateY(1px);
  }

  .helper-text{
    margin: 0;
    opacity: 0.78;
    max-width: 36ch;
  }

  .cta-kicker{
    color: rgba(232,236,255,.55);
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:.14em;
    margin-bottom:6px;
  }
  
  .cta-title{ font-size:20px; font-weight:800; margin-bottom:6px; }
  .cta-text{ color: rgba(232,236,255,.72); line-height:1.55; max-width: 60ch; }
  
  .foot{
    margin-top: 34px;
    color: rgba(232,236,255,.55);
    font-size: 13px;
    line-height:1.6;
  }
  
  @media (max-width: 768px){
    .panel{
      min-height: auto;
      display: block;
      padding: 64px 18px;
    }
    .content.panel{
      padding: 64px 18px;
    }
    .content h2{ margin: 0 0 12px; }
    .lead{ margin: 0 auto 28px; }
    .grid{ gap: 16px; margin-top: 24px; }
    .path-grid{ gap: 16px; margin-top: 24px; }
    .divider{ margin: 36px auto 28px; }
  }

  @media (max-width: 520px){
    .hero.panel{ padding: 56px 18px 64px; }
    .hero-card{ padding: 28px 18px 22px; }
    .brand-logo{ width: 190px; }
  }