/* ========== fonts ========== */
/* Drop these files into assets/fonts/ and they'll load automatically.
   Until then the stack falls back to Nunito (Google Fonts). */
@font-face {
  font-family: 'DIN Round Pro';
  src: url('assets/fonts/DINRoundPro.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DIN Round Pro';
  src: url('assets/fonts/DINRoundPro-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DIN Round Pro';
  src: url('assets/fonts/DINRoundPro-Bold.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DIN Round Pro';
  src: url('assets/fonts/DINRoundPro-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ========== tokens ========== */
:root {
  --bg: #000000;
  --fg: #ffffff;
  --fg-2: rgba(255, 255, 255, 0.72);
  --fg-3: rgba(255, 255, 255, 0.5);

  --accent: #4ee61c;
  --accent-dark: #2bb800;

  --mint:        #c5e8c9;
  --mint-fg:     #0a4626;
  --mint-fg-2:   #2e6a3f;

  --pink:        #f6c8cd;
  --pink-fg:     #5e1a1f;
  --pink-fg-2:   #884046;

  --cream:       #f6e3a8;
  --cream-fg:    #4a3a13;
  --cream-fg-2:  #6f5b2a;

  --lavender:    #c8caee;
  --lavender-fg: #1f1a4d;
  --lavender-fg-2: #494485;
}

/* ========== reset ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Google Sans', 'Nunito', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--accent); color: #0a2a02; }

.lower { text-transform: lowercase; }
.container { max-width: 920px; margin: 0 auto; padding: 0 20px; }

/* ========== hero ========== */
.hero {
  position: relative;
  padding: 56px 20px 80px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: min(700px, 110%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(81, 251, 10, 0.7), transparent 50%),
    radial-gradient(circle at 30% 60%, rgba(35, 200, 10, 0.5), transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(150, 255, 80, 0.45), transparent 60%);
  filter: blur(80px);
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 720px) {
  .hero::before { top: 4%; filter: blur(70px); opacity: 0.22; }
}
.hero__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.icon-cloud {
  position: relative;
  height: 470px;
  margin: 0 auto;
  max-width: 640px;
}
@media (max-width: 720px) {
  .icon-cloud { height: 461px; }
}
@media (max-width: 480px) {
  .icon-cloud { height: 441px; }
}

.float-icon {
  position: absolute;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.4));
  animation: float-y 4.5s ease-in-out infinite;
}
.float-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.icon-instagram { top: 0%;  left: 14%; animation-delay: 0s; }
.icon-facebook  { top: -2%; left: 44%; animation-delay: 0.6s; }
.icon-reddit    { top: 2%;  left: 72%; animation-delay: 1.2s; }
.icon-x         { top: 22%; left: 2%;  animation-delay: 0.3s; }
.icon-tiktok    { top: 22%; left: 84%; animation-delay: 0.9s; }
.icon-youtube   { top: 40%; left: 8%;  animation-delay: 1.5s; }
.icon-spotify   { top: 58%; left: 2%;  animation-delay: 0.45s; }
.icon-google    { top: 58%; left: 82%; animation-delay: 1.05s; }

@media (max-width: 720px) {
  .float-icon { width: 56px; height: 56px; }
  .icon-instagram { top: 0%;  left: 8%;  }
  .icon-facebook  { top: -2%; left: 42%; }
  .icon-reddit    { top: 2%;  left: 76%; }
  .icon-x         { top: 24%; left: 0%;  }
  .icon-tiktok    { top: 24%; left: 84%; }
  .icon-youtube   { top: 44%; left: 2%;  }
  .icon-spotify   { top: 60%; left: 0%;  }
  .icon-google    { top: 60%; left: 82%; }
}

/* hero phone */
.hero__phone {
  position: absolute;
  left: 50%;
  top: 14%;
  transform: translateX(-50%);
  width: 260px;
  z-index: 2;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}
.hero__phone img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 32px 32px 0 0;
}
@media (max-width: 480px) {
  .hero__phone { width: 220px; top: 12%; }
}

/* hero copy */
.hero__copy {
  margin-top: 0;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-family: 'Google Sans', 'Nunito', system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: clamp(34px, 6.5vw, 52px);
  line-height: 1.0;
}
.hero h1 .accent { color: var(--accent); }
.hero__sub {
  margin-top: 14px;
  color: var(--fg-2);
  font-size: 17.25px;
  max-width: 280px;
  margin-left: auto; margin-right: auto;
  line-height: 1.45;
}
.hero__cta { margin-top: 28px; display: inline-flex; }

.btn {
  position: relative;
  display: inline-flex;
}
.btn__shadow {
  position: absolute; inset: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  transform: translateY(4px);
}
.btn__face {
  position: relative;
  background: #fff;
  color: #111;
  border-radius: 999px;
  padding: 14px 32px;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.01em;
  transition: transform 80ms;
}
.btn:active .btn__face { transform: translateY(3px); }

/* ========== bento ========== */
.bento {
  display: flex;
  gap: 16px;
  align-items: stretch;
  padding: 0 20px 80px;
  max-width: 920px;
  margin: 0 auto;
}
.bento__col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bento__col > .card:last-child { flex: 1 1 auto; }
@media (max-width: 720px) {
  .bento { flex-direction: column; gap: 12px; padding: 0 16px 60px; }
  .bento__col { display: contents; }
  .card--mint     { order: 1; }
  .card--pink     { order: 2; }
  .card--cream    { order: 3; }
  .card--lavender { order: 4; }
}

.card {
  border-radius: 28px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.card h3 {
  font-family: 'Google Sans', 'Nunito', system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 3.4vw, 30px);
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.card__sub {
  margin-top: 12px;
  font-size: 14.5px;
  font-weight: 500;
}

.card--mint     { background: var(--mint);     color: var(--mint-fg); }
.card--pink     { background: var(--pink);     color: var(--pink-fg); }
.card--cream    { background: var(--cream);    color: var(--cream-fg); }
.card--lavender { background: var(--lavender); color: var(--lavender-fg); }

.card--mint h3     { color: var(--mint-fg); }
.card--pink h3     { color: var(--pink-fg); }
.card--cream h3    { color: var(--cream-fg); }
.card--lavender h3 { color: var(--lavender-fg); }

.card--mint     .card__sub { color: var(--mint-fg-2); }
.card--pink     .card__sub { color: var(--pink-fg-2); font-size: 13.5px; }
.card--cream    .card__sub { color: var(--cream-fg-2); max-width: 280px; }
.card--lavender .card__sub { color: var(--lavender-fg-2, #494485); }

/* media slots */
.card__media {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card__media img { display: block; height: auto; max-width: 100%; }

/* mint: tilted phone (image already tilted) — bleeds to bottom edge */
.card__media--phone {
  align-items: flex-end;
  justify-content: center;
  margin: 22px -28px -28px;
}
.card__media--phone img {
  width: 65%;
  max-width: 65%;
  filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.25));
}

/* pink: orbit chips — flush left, fits within right edge */
.card__media--orbits {
  margin: 18px -28px -28px -28px;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}
.card__media--orbits img {
  width: 100%;
  max-width: 100%;
  flex-shrink: 0;
}

/* cream: invite card */
.card__media--invite {
  margin-top: 24px;
  justify-content: stretch;
  align-items: center;
}
.card__media--invite img {
  width: 100%;
  max-width: 420px;
}

/* lavender: tall detail page (image pre-tilted) — bleeds to bottom edge */
.card__media--detail {
  align-items: flex-end;
  justify-content: center;
  margin: 22px -28px -28px;
}
.card__media--detail img {
  width: 65%;
  max-width: 65%;
  filter: drop-shadow(0 30px 50px rgba(31, 26, 77, 0.35));
}


/* ========== footer ========== */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: min(900px, 130%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(81, 251, 10, 0.7), transparent 50%),
    radial-gradient(circle at 30% 60%, rgba(35, 200, 10, 0.5), transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(150, 255, 80, 0.45), transparent 60%);
  filter: blur(90px);
  opacity: 0.225;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 720px) {
  .footer::before { filter: blur(70px); opacity: 0.16; }
}
.footer__top, .footer__wordmark { position: relative; z-index: 1; }
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  align-items: start;
  padding: 0 20px;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; margin-bottom: 12px; }
}
.footer__brand { display: flex; flex-direction: column; gap: 8px; }
.brand-row { display: flex; align-items: center; gap: 8px; }
.brand-mark-img {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}
.brand-name {
  font-family: 'Google Sans', 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.footer__legal { color: var(--fg-3); font-size: 13px; }
.footer__legal-name { color: var(--fg); font-weight: 900; }
.footer__col {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 8px;
}
.footer__col a { font-size: 14px; color: var(--fg); }
.footer__col a:hover { color: var(--accent); }

.footer__wordmark {
  margin-top: 56px;
  padding: 24px 0 0;
  overflow: hidden;
}
.footer__wordmark img {
  width: 100%;
  max-width: none;
  display: block;
  opacity: 0.1;
  filter: brightness(2);
}

/* mobile-only image size overrides (must come AFTER desktop rules to win the cascade) */
@media (max-width: 720px) {
  .card__media--phone img { width: 48%; max-width: 48%; }
  .card__media--detail img { width: 55%; max-width: 55%; }
}

/* ========== simple text pages ========== */
.page {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 24px 120px;
}
.page__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--fg-3);
  margin-bottom: 40px;
  transition: color 0.2s;
}
.page__back:hover { color: var(--accent); }
.page h1 {
  font-family: 'Google Sans', 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 5vw, 48px);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.page__updated {
  color: var(--fg-3);
  font-size: 14px;
  margin-bottom: 36px;
}
.page p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-2);
  margin-bottom: 18px;
}
.page h2 {
  font-family: 'Google Sans', 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--fg);
}
.page a { color: var(--accent); }
.page a:hover { text-decoration: underline; }

/* anims */
@keyframes float-y {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(-3deg); }
  50% { transform: translateY(-22px) rotate(0deg); }
  75% { transform: translateY(-10px) rotate(3deg); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
