 :root {
    /* Dawn / Celestial palette — soft */
    --cream: #f7f5ee;
    --cream-warm: #efe9db;
    --peach: #f9e4a0;
    --rose: #d4c5e8;
    --coral: #b8a4d4;
    --saffron: #f5d76e;
    --gold: #e3c64a;
    --indigo: #2a2547;
    --twilight: #7b6ba3;
    --aubergine: #a8c5e8;
    /* Vivid gradient stops */
    --vivid-purple: #6b3fca;
    --vivid-blue: #3a8fe0;
    --vivid-gold: #e0a824;
    --ink: #2a2547;
    --ink-soft: rgba(42, 37, 71, 0.72);
    --ink-dim: rgba(42, 37, 71, 0.55);
    --ink-faint: rgba(42, 37, 71, 0.35);
    --line: rgba(42, 37, 71, 0.1);
    --line-soft: rgba(42, 37, 71, 0.06);
    --serif: 'Fraunces', 'Times New Roman', serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* AMBIENT BACKGROUND */
  .ambient {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
  }
  .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    animation: float 24s ease-in-out infinite;
  }
  .orb-1 { width: 620px; height: 620px; background: radial-gradient(circle, #f5d76e, transparent 70%); top: -12%; left: -12%; }
  .orb-2 { width: 700px; height: 700px; background: radial-gradient(circle, #b8a4d4, transparent 70%); top: 18%; right: -18%; animation-delay: -8s; }
  .orb-3 { width: 560px; height: 560px; background: radial-gradient(circle, #a8c5e8, transparent 70%); top: 58%; left: 40%; animation-delay: -16s; }
  .orb-4 { width: 500px; height: 500px; background: radial-gradient(circle, #f9e4a0, transparent 70%); bottom: -8%; left: -6%; animation-delay: -20s; }

  @keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -40px) scale(1.08); }
    66% { transform: translate(-40px, 50px) scale(0.95); }
  }

  main { position: relative; z-index: 1; }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 10;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    background: rgba(247, 245, 238, 0.72);
    border-bottom: 1px solid var(--line-soft);
  }
  .logo {
    display: flex;
    align-items: center;
    height: 38px;
  }
  .logo img { display: block; height: 100%; width: auto; }
  .nav-right { display: flex; align-items: center; gap: 28px; }
  .nav-tag {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-faint);
  }
  .nav-btn {
    background: var(--ink);
    color: var(--cream);
    border: none;
    padding: 10px 20px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    text-decoration: none;
  }
  .nav-btn:hover { transform: translateY(-1px); background: var(--vivid-purple); }

  /* HERO */
  .hero {
    min-height: auto;
    padding: 120px 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
  }
  .eyebrow {
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--vivid-purple);
    margin-bottom: 36px;
    opacity: 0;
    animation: rise 1.2s 0.2s forwards ease-out;
    font-weight: 600;
  }
  .eyebrow::before, .eyebrow::after {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--vivid-purple);
    vertical-align: middle;
    margin: 0 14px;
    opacity: 0.6;
  }
  h1 {
    font-family: var(--serif);
    font-size: clamp(46px, 7.5vw, 100px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin-bottom: 32px;
    opacity: 0;
    animation: rise 1.2s 0.4s forwards ease-out;
  }
  h1 em {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(120deg, var(--vivid-purple), var(--vivid-blue) 50%, var(--vivid-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .sub {
    font-size: clamp(17px, 1.6vw, 20px);
    font-weight: 400;
    color: var(--ink-soft);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
    opacity: 0;
    animation: rise 1.2s 0.6s forwards ease-out;
  }
  .hero-form {
    display: flex;
    gap: 6px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(42, 37, 71, 0.08);
    opacity: 0;
    animation: rise 1.2s 0.8s forwards ease-out;
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  .hero-form:focus-within {
    border-color: var(--vivid-purple);
    box-shadow: 0 8px 30px rgba(107, 63, 202, 0.22);
  }
  .hero-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 14px 22px;
    color: var(--ink);
    font-family: inherit;
    font-size: 15px;
  }
  .hero-form input::placeholder { color: var(--ink-faint); }
  .btn {
    background: linear-gradient(135deg, var(--vivid-purple), var(--indigo));
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 20px rgba(107, 63, 202, 0.3);
  }
  .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(107, 63, 202, 0.42);
  }

  .hero-footnote {
    margin-top: 22px;
    font-size: 12px;
    color: var(--ink-faint);
    letter-spacing: 0.04em;
    opacity: 0;
    animation: rise 1.2s 1s forwards ease-out;
  }

  .hero-quote {
    margin-top: 56px;
    font-family: var(--serif);
    font-size: clamp(22px, 2.6vw, 32px);
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: -0.01em;
    font-style: italic;
    color: var(--ink);
    max-width: 720px;
    opacity: 0;
    animation: rise 1.4s 1.2s forwards ease-out;
  }
  .hero-quote em {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(120deg, var(--vivid-purple), var(--vivid-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .hero-quote-sub {
    margin-top: 14px;
    font-size: 14px;
    color: var(--ink-dim);
    letter-spacing: 0.04em;
    font-style: normal;
    font-family: var(--sans);
  }

  /* DEVICE VISUAL */
  .device-stage {
    padding: 20px 40px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .device {
    width: 260px;
    height: 260px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mark-wrap {
    width: 280px;
    height: 280px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 30px 60px rgba(107, 63, 202, 0.22));
  }
  .mark-logo {
    width: 100%;
    height: 100%;
    display: block;
    animation: breathe 6s ease-in-out infinite;
  }
  .device-core {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background:
      radial-gradient(circle at 32% 28%, rgba(255,255,255,0.35), transparent 50%),
      linear-gradient(140deg, var(--peach), var(--coral) 45%, var(--aubergine) 85%, var(--twilight));
    box-shadow:
      inset 0 2px 8px rgba(255,255,255,0.4),
      inset 0 -4px 16px rgba(42, 37, 71, 0.25),
      0 30px 60px rgba(184, 164, 212, 0.35),
      0 0 0 1px rgba(255,255,255,0.35);
    position: relative;
    animation: breathe 6s ease-in-out infinite;
  }
  .device-core::before {
    content: '';
    position: absolute;
    inset: 22px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.45);
  }
  .device-core::after {
    content: '';
    position: absolute;
    inset: 44px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 228, 160, 0.9) 0%, rgba(245, 215, 110, 0.3) 50%, transparent 75%);
    animation: pulse-dot 3.2s ease-in-out infinite;
  }
  .ring {
    position: absolute;
    border: 1px solid rgba(184, 164, 212, 0.5);
    border-radius: 50%;
    inset: 0;
    animation: ripple 4s ease-out infinite;
    opacity: 0;
  }
  .ring-2 { animation-delay: 1.3s; border-color: rgba(168, 197, 232, 0.5); }
  .ring-3 { animation-delay: 2.6s; border-color: rgba(123, 107, 163, 0.4); }

  @keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }
  @keyframes pulse-dot {
    0%, 100% { opacity: 0.4; transform: scale(0.95); }
    50% { opacity: 0.95; transform: scale(1.08); }
  }
  @keyframes ripple {
    0% { transform: scale(0.55); opacity: 0.65; }
    100% { transform: scale(1.7); opacity: 0; }
  }
  @keyframes rise {
    to { opacity: 1; transform: translateY(0); }
    from { opacity: 0; transform: translateY(14px); }
  }

  /* SECTIONS */
  section {
    padding: 70px 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .section-label {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--vivid-purple);
    margin-bottom: 24px;
    display: block;
    font-weight: 600;
  }
  h2 {
    font-family: var(--serif);
    font-size: clamp(34px, 4.8vw, 62px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.015em;
    margin-bottom: 28px;
    max-width: 860px;
  }
  h2 em {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(120deg, var(--vivid-purple), var(--vivid-blue) 50%, var(--vivid-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .lede {
    font-size: 19px;
    font-weight: 400;
    color: var(--ink-soft);
    max-width: 640px;
    margin-bottom: 40px;
    line-height: 1.6;
  }

  /* RHYTHM CARDS */
  .rhythm {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .rhythm-card {
    background: #fff;
    padding: 44px 32px;
    border-radius: 24px;
    border: 1px solid var(--line-soft);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
  }
  .rhythm-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(42, 37, 71, 0.08);
  }
  .rhythm-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad);
  }
  .rhythm-card.c1 { --grad: linear-gradient(90deg, #f5d76e, #b8a4d4); }
  .rhythm-card.c2 { --grad: linear-gradient(90deg, #b8a4d4, #a8c5e8); }
  .rhythm-card.c3 { --grad: linear-gradient(90deg, #a8c5e8, #7b6ba3); }
  .rhythm-card.c4 { --grad: linear-gradient(90deg, #7b6ba3, #2a2547); }

  .rhythm-time {
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
  }
  .rhythm-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--grad);
  }
  .rhythm-icon {
    width: 44px; height: 44px;
    margin-bottom: 24px;
  }
  .rhythm-title {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.25;
  }
  .rhythm-desc {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.65;
  }

  /* HOW IT WORKS */
  .how-bg {
    background: linear-gradient(180deg, transparent, rgba(168, 197, 232, 0.22), transparent);
    padding: 20px 0;
  }
  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 24px;
  }
  .step {
    background: #fff;
    border-radius: 28px;
    padding: 44px 36px;
    border: 1px solid var(--line-soft);
    position: relative;
  }
  .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vivid-purple), var(--vivid-blue));
    color: #fff;
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 28px;
    box-shadow: 0 8px 20px rgba(107, 63, 202, 0.3);
  }
  .step h4 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.25;
  }
  .step p {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.65;
  }

  /* ASTROLOGY SECTION — full-bleed override */
  .astrology {
    max-width: none;
    width: 100%;
    background: linear-gradient(160deg, #1a1730 0%, #3d3468 45%, #6b5c98 100%);
    color: var(--cream);
    padding: 90px 40px;
    position: relative;
    overflow: hidden;
    margin: 30px 0;
  }
  .astrology::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 30%, rgba(168, 197, 232, 0.2), transparent 40%),
      radial-gradient(circle at 80% 70%, rgba(245, 215, 110, 0.14), transparent 45%);
    pointer-events: none;
  }
  .stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.6;
  }
  .star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    animation: twinkle 4s ease-in-out infinite;
  }
  @keyframes twinkle {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
  }
  .astro-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .astrology .section-label { color: var(--saffron); }
  .astrology h2 { color: var(--cream); }
  .astrology h2 em {
    background: linear-gradient(120deg, var(--saffron), var(--peach));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .astro-copy p {
    font-size: 17px;
    color: rgba(247, 245, 238, 0.85);
    line-height: 1.7;
    margin-bottom: 20px;
  }
  .astro-copy p em {
    color: var(--saffron);
    font-style: normal;
    font-weight: 600;
  }
  .astro-inputs {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .chip {
    padding: 10px 18px;
    border: 1px solid rgba(247, 245, 238, 0.25);
    border-radius: 999px;
    font-size: 13px;
    color: rgba(247, 245, 238, 0.88);
    letter-spacing: 0.03em;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
  }
  .chip strong {
    color: var(--saffron);
    font-weight: 600;
    margin-right: 6px;
  }

  /* Chart visual */
  .chart-visual {
    position: relative;
    aspect-ratio: 1;
    max-width: 440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .chart-visual svg {
    width: 100%;
    height: 100%;
    animation: rotate 80s linear infinite;
  }
  @keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  .chart-center {
    position: absolute;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.35), transparent 50%),
                linear-gradient(140deg, var(--peach), var(--coral) 50%, var(--aubergine));
    box-shadow: 0 20px 50px rgba(0,0,0,0.35), inset 0 2px 8px rgba(255,255,255,0.35);
    animation: breathe 6s ease-in-out infinite;
  }

  /* QUOTE BLOCK */
  .quote-block {
    padding: 90px 40px;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    position: relative;
  }
  .quote-mark {
    font-family: var(--serif);
    font-size: 80px;
    background: linear-gradient(120deg, var(--vivid-purple), var(--vivid-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 0.5;
    margin-bottom: 24px;
  }
  .quote {
    font-family: var(--serif);
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.01em;
    font-style: italic;
  }
  .quote em {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(120deg, var(--vivid-purple), var(--vivid-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .quote-sub {
    margin-top: 36px;
    font-size: 16px;
    color: var(--ink-dim);
    letter-spacing: 0.02em;
    font-style: normal;
  }

  /* DEVICE DETAIL STRIP */
  .detail-strip {
    padding: 70px 40px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .detail-visual {
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(168, 197, 232, 0.3), rgba(184, 164, 212, 0.3));
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .detail-mark {
    width: 72%;
    max-width: 260px;
    height: auto;
    display: block;
    animation: breathe 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(107, 63, 202, 0.18));
  }
  .detail-device { display: none; }
  .detail-device::after {
    content: '';
    position: absolute;
    inset: 32%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 228, 160, 0.9), transparent 70%);
  }
  .detail-copy h3 {
    font-family: var(--serif);
    font-size: clamp(30px, 3.6vw, 42px);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
  }
  .detail-copy h3 em {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(120deg, var(--vivid-purple), var(--vivid-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .detail-copy p {
    font-size: 16px;
    color: var(--ink-soft);
    margin-bottom: 16px;
    line-height: 1.7;
  }

  /* FAQ */
  .faqs { max-width: 860px; margin: 0 auto; }
  details {
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
    transition: background 0.2s;
  }
  details summary {
    cursor: pointer;
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: var(--ink);
  }
  details summary::-webkit-details-marker { display: none; }
  details summary::after {
    content: '+';
    font-size: 24px;
    color: var(--vivid-purple);
    transition: transform 0.25s;
    font-family: var(--sans);
    font-weight: 400;
  }
  details[open] summary::after { transform: rotate(45deg); }
  details p {
    margin-top: 18px;
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 1.7;
    max-width: 720px;
  }

  /* FINAL CTA */
  .final-cta {
    padding: 90px 40px 30px;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
  }
  .final-cta h2 { margin: 0 auto 20px; }
  .final-cta .sub { margin-bottom: 36px; }

  /* SUCCESS */
  .success {
    display: none;
    padding: 18px 28px;
    background: linear-gradient(135deg, rgba(168, 197, 232, 0.25), rgba(184, 164, 212, 0.25));
    border: 1px solid rgba(107, 63, 202, 0.35);
    border-radius: 999px;
    color: var(--vivid-purple);
    font-size: 14px;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    font-weight: 600;
  }
  .success.show { display: block; animation: rise 0.6s ease-out forwards; }
  .copy-rights {
    padding-top: 50px;
  }
  /* RESPONSIVE */
  @media (max-width: 960px) {
    nav { padding: 16px 20px; }
    .nav-tag { display: none; }
    section, .quote-block, .final-cta { 
      padding: 50px 24px 30px;
    }
    .astrology { padding: 60px 24px; margin: 20px 0; }
    .astro-inner { grid-template-columns: 1fr; gap: 60px; }
    .chart-visual { max-width: 340px; }
    .hero { padding: 100px 24px 40px; }
    .rhythm { grid-template-columns: 1fr 1fr; }
    .steps { grid-template-columns: 1fr; gap: 20px; }
    .detail-strip { grid-template-columns: 1fr; gap: 40px; padding: 50px 24px; }
  }
  @media (max-width: 560px) {
    .rhythm { grid-template-columns: 1fr; }
    .hero-form { flex-direction: column; border-radius: 20px; padding: 8px; }
    .hero-form input { padding: 14px 18px; }
    .btn { width: 100%; padding: 16px; }
    h2 { font-size: 34px; }
  }
  @media (max-width: 768px) {
  .device-stage{
        padding: 20px 40px 0px;
  }
  }