@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Hanken+Grotesk:wght@300;400;500;600&display=swap');

:root {
  --ink: #120a26;
  --ink-2: #1b1138;
  --violet: #6a4685;
  --violet-soft: #8a6bb0;
  --peach: #e29a6e;
  --peach-hot: #ffb877;
  --accent: #ffc98a;
  --text: #f5f1ff;
  --muted: #c3b8df;
  --muted-2: #9387b8;
  --glass: rgba(255, 255, 255, 0.07);
  --glass-strong: rgba(255, 255, 255, 0.12);
  --hair: rgba(255, 255, 255, 0.14);
  --hair-soft: rgba(255, 255, 255, 0.08);
  --radius: 22px;
  --maxw: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Hanken Grotesk', sans-serif;
  color: var(--text);
  background: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* atmospheric twilight background */
.bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(120% 90% at 85% 110%, rgba(255, 184, 119, 0.42) 0%, rgba(226, 154, 110, 0.16) 28%, transparent 55%),
    radial-gradient(90% 80% at 12% -10%, rgba(138, 107, 176, 0.45) 0%, transparent 50%),
    linear-gradient(160deg, #1a1038 0%, #160d2b 45%, #120a26 100%);
}
.bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* nav */
header.nav {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  background: rgba(18, 10, 38, 0.45);
  border-bottom: 1px solid var(--hair-soft);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 500; letter-spacing: -0.01em; font-size: 1.05rem; color: var(--text); text-decoration: none; }
.brand img { width: 30px; height: 30px; border-radius: 8px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a:not(.btn) { color: var(--muted); text-decoration: none; font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:not(.btn):hover { color: var(--text); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 24px; border-radius: 999px;
  font-family: inherit; font-size: 1rem; font-weight: 500;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.2s;
}
.btn-primary {
  color: #2a160a;
  background: linear-gradient(135deg, var(--accent), var(--peach-hot));
  box-shadow: 0 10px 30px -8px rgba(255, 184, 119, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -8px rgba(255, 184, 119, 0.7); }
.btn-ghost { color: var(--text); background: var(--glass); border-color: var(--hair); }
.btn-ghost:hover { background: var(--glass-strong); transform: translateY(-2px); }

/* hero */
.hero { padding: 92px 0 60px; text-align: center; }
.hero .icon-lg {
  width: 132px; height: 132px; border-radius: 30px; margin: 0 auto 30px;
  filter: drop-shadow(0 26px 50px rgba(20, 10, 45, 0.7));
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.eyebrow {
  display: inline-block; font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--peach-hot); margin-bottom: 22px; font-weight: 500;
}
.hero h1 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(2.6rem, 6.5vw, 4.7rem); line-height: 1.02;
  letter-spacing: -0.02em; margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--peach-hot); }
.hero p.lede {
  font-size: clamp(1.05rem, 2vw, 1.32rem); color: var(--muted);
  max-width: 560px; margin: 0 auto 38px;
}
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.note { margin-top: 18px; font-size: 0.85rem; color: var(--muted-2); }

/* fade-up on load */
.fade { opacity: 0; transform: translateY(22px); animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }
.d1 { animation-delay: 0.05s; } .d2 { animation-delay: 0.15s; } .d3 { animation-delay: 0.25s; }
.d4 { animation-delay: 0.35s; } .d5 { animation-delay: 0.45s; } .d6 { animation-delay: 0.55s; }

/* dashboard preview mock */
.preview { margin: 30px auto 0; max-width: 880px; padding: 0 8px; }
.window {
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--hair);
  box-shadow: 0 50px 110px -30px rgba(8, 4, 20, 0.85), 0 0 0 1px rgba(255,255,255,0.04) inset;
}
.titlebar {
  height: 38px; display: flex; align-items: center; gap: 8px; padding: 0 16px;
  background: rgba(20, 12, 40, 0.7); backdrop-filter: blur(10px);
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.r { background: #ff5f57; } .dot.y { background: #febc2e; } .dot.g { background: #28c840; }
.shot { display: block; width: 100%; height: auto; }

/* sections */
section { padding: 70px 0; }
.section-head { text-align: center; max-width: 600px; margin: 0 auto 52px; }
.section-head h2 { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(2rem, 4vw, 2.9rem); letter-spacing: -0.02em; margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.card {
  background: var(--glass); border: 1px solid var(--hair-soft); border-radius: var(--radius);
  padding: 30px 28px; backdrop-filter: blur(12px);
  transition: transform 0.25s ease, border-color 0.25s, background 0.25s;
}
.card:hover { transform: translateY(-4px); border-color: var(--hair); background: var(--glass-strong); }
.card .ic {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  font-size: 1.4rem; margin-bottom: 18px;
  background: linear-gradient(150deg, rgba(255,201,138,0.25), rgba(138,107,176,0.25));
  border: 1px solid var(--hair);
}
.card .ic svg { width: 24px; height: 24px; fill: none; stroke: var(--accent); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1.18rem; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
.card p { color: var(--muted); font-size: 0.97rem; }

/* privacy highlight band */
.band {
  text-align: center; border-radius: var(--radius); padding: 56px 32px;
  background: linear-gradient(150deg, rgba(138,107,176,0.18), rgba(255,184,119,0.12));
  border: 1px solid var(--hair);
}
.band h2 { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 14px; letter-spacing: -0.02em; }
.band p { color: var(--muted); max-width: 540px; margin: 0 auto 26px; }
.pills { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.pill { padding: 8px 16px; border-radius: 999px; background: var(--glass); border: 1px solid var(--hair); font-size: 0.9rem; color: var(--text); }
.pill b { color: var(--peach-hot); font-weight: 600; }

/* footer */
footer {
  border-top: 1px solid var(--hair-soft); margin-top: 40px; padding: 40px 0;
  color: var(--muted-2); font-size: 0.9rem;
}
footer .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--text); }
.foot-links { display: flex; gap: 22px; }

/* article (privacy page) */
.article { max-width: 720px; margin: 0 auto; padding: 80px 28px 40px; }
.article .eyebrow { color: var(--peach-hot); }
.article h1 { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(2.2rem, 5vw, 3.2rem); letter-spacing: -0.02em; margin: 14px 0 8px; }
.article .updated { color: var(--muted-2); font-size: 0.9rem; margin-bottom: 40px; }
.article h2 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.5rem; margin: 38px 0 12px; letter-spacing: -0.01em; }
.article p, .article li { color: var(--muted); font-size: 1.02rem; }
.article p { margin-bottom: 14px; }
.article ul { margin: 0 0 14px 22px; }
.article li { margin-bottom: 8px; }
.article strong { color: var(--text); font-weight: 600; }
.article a { color: var(--peach-hot); }
.callout {
  background: var(--glass); border: 1px solid var(--hair); border-radius: 16px;
  padding: 22px 24px; margin: 8px 0 24px;
}
.callout p { margin: 0; color: var(--text); }

@media (max-width: 600px) {
  .nav-links a:not(.btn) { display: none; }
  .hero { padding: 60px 0 40px; }
}
