:root {
  --bg: #090d14;
  --bg-soft: #0e1420;
  --surface: #111925;
  --surface-2: #151f2e;
  --line: rgba(221, 233, 255, 0.11);
  --line-strong: rgba(221, 233, 255, 0.2);
  --text: #edf3fb;
  --muted: #a7b2c3;
  --muted-2: #748197;
  --blue: #8ab8ff;
  --blue-bright: #b8d4ff;
  --pink: #f0a6c8;
  --max: 1180px;
  --header-height: 76px;
  --radius: 24px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 15% -10%, rgba(79, 128, 204, 0.13), transparent 34rem),
    var(--bg);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: rgba(138, 184, 255, 0.25); color: #fff; }

.shell { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.section { padding-block: 120px; }
.section-tint {
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(17, 25, 37, 0.78), rgba(13, 19, 29, 0.9));
}
.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;
}
.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 1000;
  padding: 10px 16px; border-radius: 8px; color: var(--bg); background: var(--text);
  text-decoration: none; transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(9, 13, 20, 0.82);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; font: 700 18px/1 "Space Grotesk", sans-serif; text-decoration: none; }
.brand-mark {
  display: grid; place-items: center; width: 35px; height: 35px; border-radius: 11px;
  color: #09101a; background: linear-gradient(135deg, var(--blue-bright), var(--pink));
  box-shadow: 0 8px 28px rgba(138, 184, 255, .18);
}
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav a { color: var(--muted); font-size: 14px; font-weight: 600; text-decoration: none; transition: color .2s ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--text); }
.site-nav .nav-social { padding: 9px 15px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--text); }
.menu-button { display: none; }

.hero {
  min-height: 800px;
  padding-top: calc(var(--header-height) + 88px);
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  align-items: center;
  gap: 80px;
}
.eyebrow, .kicker {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 11px; }
.eyebrow span { width: 26px; height: 1px; background: var(--blue); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Space Grotesk", sans-serif; line-height: 1.05; letter-spacing: -.04em; }
h1 { max-width: 650px; margin-bottom: 27px; font-size: clamp(4rem, 8vw, 7.6rem); font-weight: 600; }
h1 em { display: block; color: var(--blue-bright); font-style: normal; }
.hero-lead { max-width: 610px; margin-bottom: 34px; color: var(--muted); font-size: clamp(1.08rem, 1.5vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 22px; border-radius: 13px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #0b1018; background: var(--text); }
.button-primary:hover { background: var(--blue-bright); }
.button-quiet { border: 1px solid var(--line-strong); color: var(--text); background: rgba(255,255,255,.02); }
.button-quiet:hover { border-color: rgba(184,212,255,.5); background: rgba(184,212,255,.06); }
.quick-facts {
  display: flex; gap: 0; margin: 54px 0 0; padding: 0;
  border-top: 1px solid var(--line);
}
.quick-facts div { flex: 1; padding: 19px 24px 0 0; }
.quick-facts div + div { padding-left: 24px; border-left: 1px solid var(--line); }
.quick-facts dt { color: var(--muted-2); font-size: 11px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.quick-facts dd { margin: 3px 0 0; color: var(--text); font-size: 14px; font-weight: 600; }

.hero-art { position: relative; width: 100%; max-width: 475px; justify-self: end; }
.art-glow {
  position: absolute; inset: 18% 3% 0;
  border-radius: 50%; background: rgba(120, 170, 244, .24); filter: blur(80px);
}
.art-frame {
  position: relative; height: 585px; overflow: hidden;
  border: 1px solid rgba(207, 226, 255, .2); border-radius: 240px 240px 32px 32px;
  background:
    radial-gradient(circle at 50% 15%, rgba(169, 203, 255, .15), transparent 38%),
    linear-gradient(160deg, #162235, #0d131d 70%);
  box-shadow: var(--shadow);
}
.art-frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(5, 8, 13, .28));
}
.art-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.floating-note {
  position: absolute; z-index: 2; display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border: 1px solid var(--line-strong); border-radius: 12px;
  color: var(--text); background: rgba(11, 16, 25, .78); backdrop-filter: blur(14px);
  box-shadow: 0 12px 32px rgba(0,0,0,.24); font-size: 12px; font-weight: 600;
}
.note-one { left: -38px; bottom: 92px; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #91d5b3; box-shadow: 0 0 0 4px rgba(145,213,179,.12); }

.section-heading { max-width: 790px; margin-bottom: 58px; }
.section-heading h2 { margin-bottom: 0; font-size: clamp(2.5rem, 5vw, 4.8rem); font-weight: 600; }
.split-heading { max-width: none; display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(270px, .7fr); align-items: end; gap: 80px; }
.split-heading > p { margin-bottom: 7px; color: var(--muted); }
.about-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr); gap: 90px; align-items: start; }
.about-copy { max-width: 720px; }
.about-copy p { color: var(--muted); font-size: 17px; }
.about-copy .large-copy { color: var(--text); font-size: clamp(1.35rem, 2.6vw, 2.05rem); line-height: 1.45; letter-spacing: -.02em; }
.quote-card {
  padding: 36px; border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(25, 37, 55, .88), rgba(16, 23, 34, .9));
  box-shadow: var(--shadow);
}
.quote-card svg { width: 38px; height: 38px; margin-bottom: 46px; fill: var(--blue); opacity: .8; }
.quote-card blockquote { margin: 0 0 26px; font: 500 clamp(1.25rem, 2vw, 1.65rem)/1.45 "Space Grotesk", sans-serif; letter-spacing: -.02em; }
.quote-card p { margin: 0; color: var(--muted-2); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }

.interest-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.interest-card { position: relative; min-height: 390px; padding: 30px; background: rgba(9, 14, 22, .35); }
.interest-card + .interest-card { border-left: 1px solid var(--line); }
.interest-card::after { content: ""; position: absolute; inset: auto 0 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--pink)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.interest-card:hover::after { transform: scaleX(1); }
.interest-icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 72px; border: 1px solid var(--line-strong); border-radius: 15px; background: var(--surface-2); }
.interest-icon svg { width: 27px; height: 27px; fill: none; stroke: var(--blue-bright); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.card-number { margin-bottom: 14px; color: var(--muted-2); font-size: 11px; font-weight: 700; letter-spacing: .14em; }
.interest-card h3 { margin-bottom: 15px; font-size: 24px; }
.interest-card > p:last-child { margin: 0; color: var(--muted); font-size: 14px; }

.friends-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.friend-card { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); transition: transform .25s ease, border-color .25s ease; }
.friend-card:hover { transform: translateY(-5px); border-color: rgba(184, 212, 255, .28); }
.friend-image { height: 250px; overflow: hidden; background: #182232; }
.friend-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.65,.3,1); }
.friend-card:hover .friend-image img { transform: scale(1.035); }
.friend-image.contain-image { padding: 26px; background: linear-gradient(145deg, #172233, #0c121b); }
.friend-image.contain-image img { object-fit: contain; }
.friend-image.dark-image { background: #090b12; }
.friend-image.community-image { padding: 20px; }
.friend-image.duckie-image { padding: 36px; background: linear-gradient(145deg, #123038, #0b171e); }
.friend-image.private-image { padding: 34px; background: linear-gradient(145deg, #141e2d, #090d14); }
.private-card { border-style: dashed; }
.friend-info { padding: 22px 24px 24px; }
.friend-info p { margin-bottom: 7px; color: var(--muted-2); font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.friend-info h3 { margin: 0; font-size: 23px; }
.anonymous-note { display: flex; align-items: center; gap: 18px; margin-top: 24px; padding: 24px 27px; border: 1px dashed var(--line-strong); border-radius: 17px; color: var(--muted); }
.anonymous-note span { display: grid; place-items: center; flex: 0 0 38px; height: 38px; border-radius: 50%; background: rgba(138,184,255,.1); color: var(--blue); }
.anonymous-note p { margin: 0; }
.anonymous-note strong { color: var(--text); }

.social-section { padding: 0 0 120px; }
.social-panel {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(370px, .85fr); gap: 80px; align-items: center;
  padding: 58px; border: 1px solid var(--line); border-radius: 28px;
  background:
    radial-gradient(circle at 12% 8%, rgba(114, 164, 239, .16), transparent 24rem),
    linear-gradient(145deg, #121c2a, #0d131d);
  box-shadow: var(--shadow);
}
.social-panel h2 { margin-bottom: 18px; font-size: clamp(2.4rem, 4vw, 4rem); }
.social-panel > div:first-child > p:last-child { max-width: 570px; margin: 0; color: var(--muted); }
.social-links { display: grid; gap: 12px; }
.social-links a { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; padding: 16px; border: 1px solid var(--line); border-radius: 15px; background: rgba(5,8,13,.28); text-decoration: none; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.social-links a:hover { transform: translateX(3px); border-color: rgba(184,212,255,.32); background: rgba(184,212,255,.05); }
.social-links small { display: block; margin-bottom: 2px; color: var(--muted-2); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.social-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--surface-2); }
.social-icon svg { width: 21px; height: 21px; fill: none; stroke: var(--blue-bright); stroke-width: 1.6; }
.social-icon svg .fill { fill: var(--blue-bright); stroke: none; }
.social-icon svg .fill-dark { fill: var(--surface-2); stroke: none; }

.site-footer { border-top: 1px solid var(--line); }
.footer-inner { min-height: 112px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-inner p, .footer-inner > a:last-child { margin: 0; color: var(--muted-2); font-size: 13px; text-decoration: none; }
.footer-inner > a:last-child:hover { color: var(--text); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr .78fr; gap: 42px; }
  .art-frame { height: 530px; }
  .interest-grid { grid-template-columns: repeat(2, 1fr); }
  .interest-card { min-height: 330px; }
  .interest-card:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .interest-card:nth-child(4) { border-top: 1px solid var(--line); }
  .friends-grid { grid-template-columns: repeat(2, 1fr); }
  .social-panel { gap: 45px; padding: 46px; }
}

@media (max-width: 780px) {
  :root { --header-height: 68px; }
  .shell { width: min(100% - 32px, var(--max)); }
  .section { padding-block: 88px; }
  .menu-button { display: grid; gap: 6px; width: 42px; height: 42px; place-content: center; border: 1px solid var(--line); border-radius: 12px; color: var(--text); background: var(--surface); }
  .menu-button span:not(.sr-only) { width: 18px; height: 1.5px; background: currentColor; transition: transform .2s ease; }
  .menu-button[aria-expanded="true"] span:nth-last-child(2) { transform: translateY(3.75px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
  .site-nav {
    position: absolute; top: calc(100% + 8px); left: 16px; right: 16px; display: none; align-items: stretch; gap: 4px;
    padding: 10px; border: 1px solid var(--line); border-radius: 16px; background: rgba(12, 18, 27, .97); box-shadow: var(--shadow);
  }
  .site-nav.open { display: grid; }
  .site-nav a { padding: 12px 13px; border-radius: 9px; }
  .site-nav a:hover { background: var(--surface-2); }
  .site-nav .nav-social { border: 0; }
  .hero { min-height: auto; padding-top: calc(var(--header-height) + 58px); grid-template-columns: 1fr; gap: 60px; }
  h1 { font-size: clamp(4rem, 18vw, 6.2rem); }
  .hero-art { max-width: 470px; justify-self: center; }
  .art-frame { height: min(620px, 130vw); }
  .note-one { left: -5px; }
  .split-heading, .about-grid, .social-panel { grid-template-columns: 1fr; gap: 34px; }
  .section-heading { margin-bottom: 42px; }
  .about-grid { gap: 44px; }
  .quote-card svg { margin-bottom: 32px; }
  .social-panel { padding: 38px 28px; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 24px, var(--max)); }
  .hero { padding-bottom: 68px; }
  .eyebrow { font-size: 10px; letter-spacing: .12em; }
  h1 { margin-bottom: 22px; }
  .hero-actions { align-items: stretch; }
  .button { flex: 1; min-width: 145px; }
  .quick-facts { display: grid; grid-template-columns: 1fr 1fr; }
  .quick-facts div { padding-right: 12px; }
  .quick-facts div + div { padding-left: 16px; }
  .quick-facts div:nth-child(3) { grid-column: 1 / -1; margin-top: 16px; padding: 16px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .art-frame { border-radius: 180px 180px 28px 28px; }
  .floating-note { font-size: 10px; }
  .interest-grid { grid-template-columns: 1fr; }
  .interest-card { min-height: 300px; }
  .interest-card + .interest-card { border-left: 0; border-top: 1px solid var(--line); }
  .interest-icon { margin-bottom: 52px; }
  .friends-grid { grid-template-columns: 1fr; gap: 16px; }
  .friend-image { height: min(88vw, 360px); }
  .anonymous-note { align-items: flex-start; padding: 20px; }
  .social-section { padding-bottom: 88px; }
  .social-panel { padding: 34px 20px; border-radius: 22px; }
  .social-links a { gap: 11px; padding: 13px; font-size: 13px; }
  .footer-inner { padding-block: 32px; flex-direction: column; justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
