  :root {
    --ice-blue: #DCF2F7;
    --clarity-teal: #4A9AB0;
    --deep-plum: #33254C;
    --bloom-rose: #CB295C;
    --bloom-amber: #EF9834;
    --cream: #FAF7F2;
    --plum-deeper: #1F1532;
    --plum-lighter: #4A3A6E;
  }

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

  html, body {
    height: 100%;
    overflow-x: hidden;
  }

  body {
    font-family: 'Nunito', system-ui, sans-serif;
    background: var(--deep-plum);
    color: var(--cream);
    min-height: 100vh;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .atg-takeover {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: var(--deep-plum);
    overflow-y: auto;
    overflow-x: hidden;
    font-family: 'Nunito', system-ui, sans-serif;
    color: var(--cream);
  }

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

  /* LAYER 1: Ambient gradient field */
  .ambient {
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
      radial-gradient(ellipse 80% 60% at 15% 25%, rgba(74,154,176,0.22), transparent 60%),
      radial-gradient(ellipse 70% 70% at 85% 80%, rgba(239,152,52,0.18), transparent 60%),
      radial-gradient(ellipse 60% 50% at 50% 60%, rgba(203,41,92,0.14), transparent 65%),
      linear-gradient(180deg, var(--plum-deeper) 0%, var(--deep-plum) 60%, var(--plum-lighter) 100%);
    animation: ambientShift 24s ease-in-out infinite alternate;
  }
  @keyframes ambientShift {
    0%   { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(8deg); }
  }

  /* LAYER 2: Glow orbs */
  .orbs { position: fixed; inset: 0; z-index: 1; pointer-events: none; }
  .orb { position: absolute; border-radius: 50%; filter: blur(80px); mix-blend-mode: screen; }
  .orb-teal  { width: 520px; height: 520px; background: var(--clarity-teal); top: 8%;  left: -8%; opacity: 0.55; animation: floatA 18s ease-in-out infinite; }
  .orb-amber { width: 420px; height: 420px; background: var(--bloom-amber);  bottom: 5%; right: -6%; opacity: 0.45; animation: floatB 22s ease-in-out infinite; }
  .orb-rose  { width: 360px; height: 360px; background: var(--bloom-rose);   top: 55%; left: 65%; opacity: 0.40; animation: floatC 26s ease-in-out infinite; }
  @keyframes floatA { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(80px, 60px) scale(1.1); } }
  @keyframes floatB { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-60px, -80px) scale(1.15); } }
  @keyframes floatC { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-100px, 40px) scale(0.95); } }

  /* LAYER 3: Drifting fog clouds */
  .fog { position: fixed; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
  .cloud { position: absolute; filter: blur(8px); }
  .cloud-1 { width: 1600px; height: 600px; top: 12%; left: -40%; opacity: 0.14; animation: drift1 70s linear infinite; }
  .cloud-2 { width: 1400px; height: 520px; top: 55%; left: -30%; opacity: 0.10; animation: drift2 85s linear infinite; }
  .cloud-3 { width: 1800px; height: 680px; top: 78%; left: -50%; opacity: 0.08; animation: drift3 100s linear infinite; }
  @keyframes drift1 { from { transform: translateX(0); } to { transform: translateX(180vw); } }
  @keyframes drift2 { from { transform: translateX(0); } to { transform: translateX(160vw); } }
  @keyframes drift3 { from { transform: translateX(0); } to { transform: translateX(200vw); } }

  /* LAYER 4: Floating petals (the moonshot move) */
  .floating-petals {
    position: fixed;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
  }
  .fp {
    position: absolute;
    bottom: -40px;
    width: 11px;
    height: 26px;
    opacity: 0;
    filter: blur(0.4px) drop-shadow(0 0 6px rgba(255,255,255,0.15));
    will-change: transform, opacity;
    --peak-opacity: 0.65;
  }
  @keyframes rise {
    0%   { transform: translateY(0) translateX(0) rotate(0deg) scale(1);     opacity: 0; }
    8%   { opacity: var(--peak-opacity); }
    50%  { transform: translateY(-50vh) translateX(calc(var(--drift-x) * 0.5)) rotate(calc(var(--drift-rot) * 0.5)) scale(0.95); }
    92%  { opacity: var(--peak-opacity); }
    100% { transform: translateY(-110vh) translateX(var(--drift-x)) rotate(var(--drift-rot)) scale(0.85); opacity: 0; }
  }

  .fp-1  { left:  6%; --drift-x:  40px; --drift-rot:  360deg; animation: rise 22s linear infinite  -3s; }
  .fp-2  { left: 14%; width: 10px; height: 24px; --drift-x: -30px; --drift-rot: -360deg; animation: rise 28s linear infinite  -8s; }
  .fp-3  { left: 22%; width: 13px; height: 30px; --drift-x:  60px; --drift-rot:  540deg; animation: rise 19s linear infinite -14s; }
  .fp-4  { left: 32%; width: 11px; height: 26px; --drift-x: -20px; --drift-rot:  360deg; animation: rise 25s linear infinite  -6s; }
  .fp-5  { left: 40%; width: 9px;  height: 22px; --drift-x:  50px; --drift-rot: -360deg; animation: rise 30s linear infinite -16s; }
  .fp-6  { left: 50%; width: 12px; height: 28px; --drift-x: -40px; --drift-rot:  450deg; animation: rise 21s linear infinite  -2s; }
  .fp-7  { left: 58%; width: 11px; height: 26px; --drift-x:  30px; --drift-rot: -360deg; animation: rise 26s linear infinite -11s; }
  .fp-8  { left: 66%; width: 13px; height: 30px; --drift-x: -60px; --drift-rot:  360deg; animation: rise 18s linear infinite  -7s; }
  .fp-9  { left: 74%; width: 10px; height: 24px; --drift-x:  40px; --drift-rot:  540deg; animation: rise 24s linear infinite -19s; }
  .fp-10 { left: 82%; width: 12px; height: 28px; --drift-x: -25px; --drift-rot: -360deg; animation: rise 27s linear infinite  -5s; }
  .fp-11 { left: 88%; width: 11px; height: 26px; --drift-x:  50px; --drift-rot:  360deg; animation: rise 23s linear infinite -13s; }
  .fp-12 { left: 94%; width: 12px; height: 28px; --drift-x: -30px; --drift-rot:  450deg; animation: rise 29s linear infinite  -9s; }

  /* LAYER 5: Cursor light */
  .cursor-light {
    position: fixed; inset: 0; z-index: 4; pointer-events: none;
    background: radial-gradient(circle 220px at var(--mx, 50%) var(--my, 50%), rgba(220, 242, 247, 0.05), transparent 70%);
    transition: background 0.18s ease-out;
    mix-blend-mode: screen;
  }

  /* LAYER 6: Stage */
  .stage {
    position: relative; z-index: 10; min-height: 100vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 48px 24px; text-align: center;
  }

  /* Bloom mark (4 petals, no plum) */
  .bloom-wrap {
    width: 96px; height: 96px; margin-bottom: 32px;
    animation: breathe 4.5s ease-in-out infinite;
  }
  .bloom-wrap svg { width: 100%; height: 100%; animation: spin 90s linear infinite; }
  @keyframes breathe {
    0%, 100% { transform: scale(1);    filter: drop-shadow(0 0 24px rgba(239,152,52,0.18)); }
    50%      { transform: scale(1.045); filter: drop-shadow(0 0 36px rgba(239,152,52,0.30)); }
  }
  @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

  /* Card */
  .card {
    max-width: 720px; width: 100%;
    padding: 56px 48px;
    background: rgba(31, 21, 50, 0.88);
    border: 1px solid rgba(220, 242, 247, 0.10);
    border-radius: 24px;
    backdrop-filter: blur(20px) saturate(110%);
    -webkit-backdrop-filter: blur(20px) saturate(110%);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    animation: cardIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  @keyframes cardIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

  /* Eyebrow */
  .eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: 12px; letter-spacing: 0.28em;
    color: var(--ice-blue); text-transform: uppercase;
    margin-bottom: 28px;
    opacity: 0; animation: fadeUp 0.9s ease-out 0.3s forwards;
  }
  .eyebrow-dots { display: inline-flex; gap: 5px; }
  .eyebrow-dots span {
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--ice-blue); opacity: 0.5;
    animation: pulseEyebrow 2.4s ease-in-out infinite;
  }
  .eyebrow-dots span:nth-child(2) { animation-delay: 0.8s; }
  .eyebrow-dots span:nth-child(3) { animation-delay: 1.6s; }
  @keyframes pulseEyebrow { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

  /* Headline */
  .headline {
    font-family: 'Montserrat', sans-serif; font-weight: 800;
    font-size: clamp(2.4rem, 6.5vw, 5rem); line-height: 1.05;
    letter-spacing: -0.025em; color: #FFFFFF; margin-bottom: 18px;
    opacity: 0; animation: fadeUp 1s ease-out 0.5s forwards;
  }
  .headline .accent {
    background: linear-gradient(120deg, var(--bloom-amber) 0%, var(--clarity-teal) 50%, var(--ice-blue) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    background-size: 200% 100%;
    animation: gradShift 8s ease-in-out infinite alternate;
  }
  @keyframes gradShift { 0% { background-position: 0% 50%; } 100% { background-position: 100% 50%; } }

  /* Subhead */
  .subhead {
    font-family: 'Nunito', sans-serif; font-style: italic; font-weight: 400;
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: var(--ice-blue); margin-bottom: 28px;
    opacity: 0; animation: fadeUp 1s ease-out 0.7s forwards;
  }

  /* Lede */
  .lede {
    font-family: 'Nunito', sans-serif; font-weight: 400;
    font-size: 1.05rem; line-height: 1.7;
    color: rgba(250, 247, 242, 0.85);
    max-width: 540px; margin: 0 auto 44px;
    opacity: 0; animation: fadeUp 1s ease-out 0.85s forwards;
  }
  .lede strong { color: var(--cream); font-weight: 600; }
  .lede a {
    color: var(--ice-blue);
    text-decoration: underline;
    text-decoration-color: rgba(74, 154, 176, 0.55);
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    font-weight: 600;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
  }
  .lede a:hover {
    color: var(--ice-blue);
    text-decoration-color: var(--bloom-amber);
    text-decoration-thickness: 2px;
  }

  /* Contact block (replaces form) */
  .contact {
    margin: 0 auto 36px;
    opacity: 0; animation: fadeUp 1s ease-out 1s forwards;
  }
  .contact-label {
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: 11px; letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(220, 242, 247, 0.55);
    margin-bottom: 14px;
  }
  .contact-email {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Montserrat', sans-serif; font-weight: 600;
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    color: var(--ice-blue); text-decoration: none;
    padding: 10px 6px; position: relative;
    transition: color 0.3s ease;
  }
  .contact-email::after {
    content: '';
    position: absolute;
    left: 6px; right: 6px; bottom: 4px;
    height: 1px;
    background: linear-gradient(90deg, var(--bloom-amber) 0%, var(--clarity-teal) 50%, var(--bloom-rose) 100%);
    background-size: 200% 100%;
    background-position: 0% 50%;
    transition: height 0.3s ease, background-position 0.7s ease;
  }
  .contact-email:hover { color: var(--bloom-amber); }
  .contact-email:hover::after { height: 2px; background-position: 100% 50%; }
  .contact-email-arrow {
    display: inline-block;
    opacity: 0; transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .contact-email:hover .contact-email-arrow { opacity: 1; transform: translateX(0); }

  /* Signature dots */
  .signature {
    display: flex; justify-content: center; gap: 18px;
    margin-top: 8px;
    opacity: 0; animation: fadeUp 1s ease-out 1.2s forwards;
  }
  .sig-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(220, 242, 247, 0.25); position: relative;
    transition: background 0.6s ease, box-shadow 0.6s ease;
  }
  .sig-dot.teal.active  { background: var(--clarity-teal); box-shadow: 0 0 18px rgba(74,154,176,0.7); }
  .sig-dot.amber.active { background: var(--bloom-amber);  box-shadow: 0 0 18px rgba(239,152,52,0.7); }
  .sig-dot.rose.active  { background: var(--bloom-rose);   box-shadow: 0 0 18px rgba(203,41,92,0.7); }
  .sig-dot::after {
    content: attr(data-label);
    position: absolute; bottom: -28px; left: 50%; transform: translateX(-50%);
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: 10px; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--ice-blue);
    opacity: 0; transition: opacity 0.3s ease;
    pointer-events: none; white-space: nowrap;
  }
  .sig-dot:hover::after { opacity: 0.9; }

  /* Footer */
  .page-footer {
    margin-top: 56px; text-align: center;
    opacity: 0; animation: fadeUp 1s ease-out 1.4s forwards;
  }
  .tagline {
    font-family: 'Nunito', sans-serif; font-style: italic;
    font-size: 1rem; color: var(--ice-blue);
    margin-bottom: 12px; letter-spacing: 0.01em;
  }
  .copyright {
    font-family: 'Montserrat', sans-serif; font-weight: 600;
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(220, 242, 247, 0.45);
  }

  @keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

  /* Responsive */
  @media (max-width: 640px) {
    .card { padding: 40px 24px; border-radius: 20px; }
    .bloom-wrap { width: 80px; height: 80px; margin-bottom: 24px; }
    .orb-teal  { width: 360px; height: 360px; }
    .orb-amber { width: 300px; height: 300px; }
    .orb-rose  { width: 260px; height: 260px; }
    .eyebrow { font-size: 11px; letter-spacing: 0.22em; }
    .stage { padding: 32px 16px; }
    .signature { gap: 22px; }
    .fp { --peak-opacity: 0.55; }
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    .bloom-wrap svg { animation: none; }
    .ambient { animation: none; }
    .orb { animation: none; }
    .cloud { animation: none; }
    .fp { display: none; }
  }
