/* Lock.com coming soon — production landing styles */
@charset "UTF-8";

:root {
  --bg: #000;
  --bg-soft: #080808;
  --card-bg: rgba(245, 241, 234, 0.045);
  --card-bg-strong: rgba(245, 241, 234, 0.07);
  --fg: #f5f1ea;
  --fg-90: rgba(245, 241, 234, 0.9);
  --fg-70: rgba(245, 241, 234, 0.72);
  --fg-50: rgba(245, 241, 234, 0.52);
  --fg-30: rgba(245, 241, 234, 0.3);
  --fg-20: rgba(245, 241, 234, 0.2);
  --fg-12: rgba(245, 241, 234, 0.12);
  --fg-hover: #cccaee;
  --accent: #f5f1ea;
  --accent-hover: #cccaee;
  --bg-40: rgba(0, 0, 0, 0.4);
  --bg-60: rgba(0, 0, 0, 0.6);
  --bg-80: rgba(0, 0, 0, 0.8);
  --success: #a7f3d0;
  --error: #f87171;
  --radius-lg: 28px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.56);
  --max-width: 1320px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  min-width: 320px;
  background: var(--bg);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100svh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(204, 202, 238, 0.16), transparent 34rem),
    radial-gradient(circle at 14% 18%, rgba(245, 241, 234, 0.07), transparent 26rem),
    var(--bg);
  color: var(--fg);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

::selection { background: rgba(204, 202, 238, 0.35); color: #fff; }

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; border: 0; }
button, a, input { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid rgba(204, 202, 238, 0.95); outline-offset: 4px; }
[hidden] { display: none !important; }

/* Header */
header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  pointer-events: none;
}

header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 128px;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
  backdrop-filter: blur(12px) saturate(170%);
  -webkit-backdrop-filter: blur(12px) saturate(170%);
  background: linear-gradient(to bottom, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.42) 38%, rgba(0,0,0,0.16) 72%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 44%, rgba(0,0,0,0.62) 72%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 44%, rgba(0,0,0,0.62) 72%, transparent 100%);
}

header.is-scrolled::before { opacity: 1; }

.nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding: clamp(18px, 2.8vw, 34px) clamp(18px, 4vw, 48px);
  pointer-events: auto;
}

.logo {
  width: auto;
  height: clamp(24px, 2.2vw, 30px);
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.48));
}

/* Signup forms */
.signup-desktop,
.signup-mobile { position: relative; }

.signup-desktop {
  display: flex;
  align-items: center;
  gap: 8px;
  width: auto;
  max-width: none;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.js .signup-desktop {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.32s var(--ease-out), transform 0.32s var(--ease-out), visibility 0s linear 0.32s;
}

.js .signup-desktop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.36s var(--ease-out), transform 0.36s var(--ease-out), visibility 0s;
}

.signup-desktop input[type="email"],
.signup-mobile input[type="email"] {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--fg-20);
  outline: none;
  color: var(--fg);
  background: rgba(0, 0, 0, 0.54);
  box-shadow: inset 0 1px 0 rgba(245, 241, 234, 0.08);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.signup-desktop input[type="email"]::placeholder,
.signup-mobile input[type="email"]::placeholder { color: rgba(245, 241, 234, 0.58); }

.signup-desktop input[type="email"]:focus,
.signup-mobile input[type="email"]:focus {
  border-color: rgba(204, 202, 238, 0.7);
  background: rgba(0, 0, 0, 0.72);
  box-shadow: inset 0 1px 0 rgba(245, 241, 234, 0.12), 0 0 0 4px rgba(204, 202, 238, 0.12);
}

.signup-desktop input[type="email"] {
  width: 242px;
  height: 44px;
  padding: 0 15px;
  border-radius: 12px;
  font-size: 14px;
}

.signup-desktop button,
.signup-mobile button {
  flex: 0 0 auto;
  color: #000;
  background: linear-gradient(180deg, #fff 0%, var(--accent) 78%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.78), 0 12px 32px rgba(245,241,234,0.12);
  transition: transform 0.18s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.signup-desktop button:hover,
.signup-mobile button:hover {
  background: linear-gradient(180deg, #fff 0%, var(--accent-hover) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.86), 0 16px 40px rgba(204,202,238,0.18);
}

.signup-desktop button:active,
.signup-mobile button:active { transform: scale(0.98); }

.signup-desktop button {
  height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.form-error {
  position: absolute;
  right: 0;
  bottom: -34px;
  z-index: 3;
  max-width: min(360px, 100vw - 32px);
  padding: 6px 9px;
  border: 1px solid rgba(245, 241, 234, 0.12);
  border-radius: 999px;
  color: var(--error);
  background: rgba(0, 0, 0, 0.72);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.form-error:empty { display: none; }
.form-error.is-success { color: var(--success); }

/* Hero video */
.hero-video-wrapper {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background: #000;
}

.hero-video-wrapper::before,
.hero-video-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-video-wrapper::before {
  background:
    radial-gradient(circle at 50% 44%, rgba(245, 241, 234, 0.11), transparent 34rem),
    linear-gradient(to bottom, rgba(0,0,0,0.36), rgba(0,0,0,0.24) 45%, rgba(0,0,0,0.82) 100%);
}

.hero-video-wrapper::after {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.34), transparent 24%, transparent 76%, rgba(0,0,0,0.34)),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.018), rgba(255,255,255,0.018) 1px, transparent 1px, transparent 3px);
  mix-blend-mode: screen;
  opacity: 0.28;
}

.hero-video-wrapper .hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(18%) contrast(1.06) brightness(0.84);
  transform: translateZ(0);
}

/* Layout */
main {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 100svh;
  overflow: visible;
}

.hero-viewport {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  padding: clamp(84px, 10svh, 130px) 18px clamp(40px, 8svh, 84px);
}

.headline {
  position: relative;
  z-index: 3;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  gap: clamp(18px, 2.4svh, 28px);
  pointer-events: auto;
}

.words {
  position: relative;
  margin: 0;
  text-align: center;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  line-height: 0.83;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-wrap: balance;
}

.words::before {
  content: "";
  position: absolute;
  inset: -8% -16%;
  z-index: -1;
  opacity: 0.7;
  background: radial-gradient(circle at 50% 48%, rgba(245, 241, 234, 0.12), transparent 56%);
  filter: blur(24px);
}

.words span {
  display: block;
  color: var(--fg);
  font-size: clamp(6.3rem, 19.2vw, 13.2rem);
  text-shadow: 0 1px 0 rgba(255,255,255,0.18), 0 22px 68px rgba(0,0,0,0.62);
}

.js .words span {
  opacity: 0;
  transform: translateY(0.12em) scale(0.992);
  filter: blur(10px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out), filter 0.7s var(--ease-out);
}

.js .words span.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.signup-mobile,
.subtitle {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.js .signup-mobile,
.js .subtitle {
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out), visibility 0s linear 0.55s;
}

.js .headline.is-copy-visible .signup-mobile,
.js .headline.is-copy-visible .subtitle {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.62s var(--ease-out), transform 0.62s var(--ease-out), visibility 0s;
}

.signup-mobile {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(100%, 520px);
  max-width: calc(100vw - 36px);
  margin-inline: auto;
  padding: 7px;
  border: 1px solid var(--fg-12);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.46);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(245, 241, 234, 0.09);
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
}

.signup-mobile:focus-within {
  border-color: rgba(204, 202, 238, 0.5);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(245,241,234,0.12), 0 0 0 5px rgba(204,202,238,0.1);
}

.signup-mobile input[type="email"] {
  flex: 1 1 auto;
  min-width: 0;
  height: 58px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  font-size: 16px;
}

.signup-mobile input[type="email"]:focus {
  background: rgba(245, 241, 234, 0.045);
  box-shadow: none;
}

.signup-mobile button {
  min-width: max-content;
  height: 58px;
  padding: 0 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.subtitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  width: min(100%, 680px);
  margin-inline: auto;
  padding-inline: 12px;
  text-align: center;
}

.subtitle > p {
  margin: 0;
  max-width: 610px;
  color: var(--fg-90);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 420;
  line-height: 1.65;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.72);
}

.launch-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 100%;
  padding: 9px 22px;
  border: 1px solid var(--fg-12);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.36);
  box-shadow: 0 18px 54px rgba(0,0,0,0.34), inset 0 1px 0 rgba(245,241,234,0.08);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}

.js .launch-box {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.52s var(--ease-out) 0.12s, transform 0.52s var(--ease-out) 0.12s;
}

.js .headline.is-copy-visible .launch-box {
  opacity: 1;
  transform: translateY(0);
}

.launch-text {
  color: var(--fg);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.launch-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 18px;
  border-left: 1px solid var(--fg-12);
}

.launch-socials a,
.socials-footer a {
  color: var(--fg-50);
  transition: color 0.2s ease, transform 0.2s ease;
}

.launch-socials a:hover,
.socials-footer a:hover {
  color: var(--fg);
  transform: translateY(-1px);
}

.launch-socials svg {
  width: 17px;
  height: 17px;
}

/* Ticker */
.ticker-wrap {
  position: relative;
  z-index: 4;
  width: 100%;
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid var(--fg-12);
  border-bottom: 1px solid var(--fg-12);
  background: linear-gradient(180deg, rgba(245,241,234,0.035), rgba(245,241,234,0.015)), var(--bg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035);
}

.ticker-wrap::before,
.ticker-wrap::after {
  content: "";
  position: absolute;
  inset-block: 0;
  z-index: 2;
  width: min(14vw, 150px);
  pointer-events: none;
}

.ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, rgba(0,0,0,0.92) 24%, transparent 100%);
}

.ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, rgba(0,0,0,0.92) 24%, transparent 100%);
}

.ticker {
  display: flex;
  align-items: center;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
  animation: ticker 52s linear infinite;
}

.ticker:hover { animation-play-state: paused; }

.ticker-item {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  padding-inline: clamp(20px, 3vw, 34px);
  color: var(--fg);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0.94;
}

.ticker-item svg {
  display: block !important;
  flex: 0 0 22px;
  width: 22px !important;
  min-width: 22px;
  height: 22px !important;
  overflow: visible;
  color: currentColor;
  opacity: 0.9;
}

.ticker-item svg path,
.ticker-item svg circle,
.ticker-item svg line,
.ticker-item svg polygon,
.ticker-item svg rect,
.ticker-item svg polyline {
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

@keyframes ticker {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

/* Content */
.content-section {
  position: relative;
  z-index: 3;
  padding: clamp(86px, 11vw, 150px) clamp(18px, 4vw, 48px);
  background:
    radial-gradient(circle at 18% 18%, rgba(204, 202, 238, 0.105), transparent 30rem),
    radial-gradient(circle at 88% 8%, rgba(245, 241, 234, 0.075), transparent 28rem),
    linear-gradient(180deg, #000 0%, #050505 52%, #000 100%);
}

.content-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(245, 241, 234, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 241, 234, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 78%, transparent 100%);
  opacity: 0.28;
}

.container {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max-width));
  margin-inline: auto;
}

.section-header {
  max-width: 830px;
  margin-bottom: clamp(48px, 7vw, 78px);
}

.section-header h2 {
  margin: 0 0 20px;
  color: var(--fg);
  font-size: clamp(2.65rem, 6vw, 5.85rem);
  font-weight: 650;
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.section-header p {
  margin: 0;
  max-width: 780px;
  color: var(--fg-70);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  font-weight: 390;
  line-height: 1.72;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 24px);
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  padding: clamp(28px, 4vw, 50px);
  border: 1px solid var(--fg-12);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.018) 34%, rgba(204,202,238,0.045) 100%), var(--card-bg);
  box-shadow: 0 32px 100px rgba(0,0,0,0.32), inset 0 1px 0 rgba(245,241,234,0.08);
  transform: translateZ(0);
  transition: border-color 0.28s ease, transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  opacity: 0;
  background: radial-gradient(circle at 18% 0%, rgba(245,241,234,0.18), transparent 20rem), linear-gradient(135deg, rgba(204,202,238,0.12), transparent 46%);
  transition: opacity 0.28s ease;
}

.card:hover {
  border-color: rgba(245, 241, 234, 0.24);
  transform: translateY(-4px);
  background: linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.024) 34%, rgba(204,202,238,0.065) 100%), var(--card-bg-strong);
  box-shadow: 0 44px 120px rgba(0,0,0,0.44), inset 0 1px 0 rgba(245,241,234,0.12);
}

.card:hover::before { opacity: 1; }
.card > * { position: relative; z-index: 1; }

.js .section-header,
.js .card {
  opacity: 0;
  transform: translateY(22px);
}

.js .section-header.is-visible,
.js .card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.72s var(--ease-out), transform 0.72s var(--ease-out), border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.js .card.is-visible:hover {
  transform: translateY(-4px);
}

.col-12 { grid-column: span 12; }
.col-8 { grid-column: span 8; }
.col-7 { grid-column: span 7; }
.col-6 { grid-column: span 6; }
.col-5 { grid-column: span 5; }
.col-4 { grid-column: span 4; }

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 32px;
  border: 1px solid var(--fg-12);
  border-radius: 18px;
  color: var(--fg);
  background: radial-gradient(circle at 35% 20%, rgba(245,241,234,0.16), transparent 56%), rgba(245,241,234,0.045);
  box-shadow: inset 0 1px 0 rgba(245,241,234,0.08);
}

.card-icon svg { width: 28px; height: 28px; }

.card-icon svg path,
.card-icon svg rect,
.card-icon svg line,
.card-icon svg polyline,
.card-icon svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  margin: 0 0 15px;
  color: var(--fg);
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.card p {
  margin: 0;
  color: var(--fg-70);
  font-size: 1rem;
  font-weight: 380;
  line-height: 1.68;
}

.tech-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: auto;
  padding-top: 34px;
}

.tech-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid rgba(245, 241, 234, 0.08);
  font-size: 14px;
  line-height: 1.4;
}

.tech-item span:first-child { color: var(--fg-50); }
.tech-item span:last-child { color: var(--fg); font-weight: 620; text-align: right; }

.seed-showcase {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(10px, 1.7vw, 16px);
  margin-top: clamp(30px, 4.8vw, 50px);
}

.seed-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  aspect-ratio: 1;
  border: 1px solid var(--fg-12);
  border-radius: 20px;
  background: radial-gradient(circle at 50% 0%, rgba(245,241,234,0.11), transparent 62%), rgba(245,241,234,0.035);
  box-shadow: inset 0 1px 0 rgba(245,241,234,0.06);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.seed-icon-box:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 241, 234, 0.22);
  background: radial-gradient(circle at 50% 0%, rgba(204,202,238,0.14), transparent 62%), rgba(245,241,234,0.058);
}

.seed-icon-box .emoji {
  margin-bottom: 9px;
  font-size: clamp(1.55rem, 4vw, 2.1rem);
  line-height: 1;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.34));
}

.seed-icon-box .num {
  color: var(--fg-50);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

/* Footer */
.socials-footer {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding: 42px clamp(18px, 4vw, 48px) 52px;
  border-top: 1px solid var(--fg-12);
  background: #000;
}

.footer-copy {
  color: var(--fg-50);
  font-size: 13px;
  line-height: 1.5;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-icons svg { width: 20px; height: 20px; }

@media (min-width: 1024px) {
  .words span { font-size: min(14vw, 190px); }
}

@media (max-width: 1024px) {
  .col-8, .col-7, .col-6, .col-5, .col-4 { grid-column: span 12; }
}

@media (max-width: 768px) {
  .signup-desktop { display: none !important; }
  .hero-viewport { padding-top: 92px; }
  .words span { font-size: clamp(5.25rem, 25vw, 9.4rem); }
  .section-header h2 { letter-spacing: -0.05em; }
}

@media (max-width: 600px) {
  .nav { padding-inline: 20px; }
  .headline { gap: 18px; }
  .signup-mobile {
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
    width: min(100%, 430px);
    max-width: calc(100vw - 32px);
    padding: 9px;
    border-radius: 22px;
    background: rgba(0, 0, 0, 0.58);
  }
  .signup-mobile input[type="email"] {
    display: block;
    width: 100%;
    min-width: 0;
    height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(245, 241, 234, 0.12);
    border-radius: 15px;
    background: rgba(245, 241, 234, 0.035);
    text-align: center;
  }
  .signup-mobile button {
    width: 100%;
    height: 52px;
    min-width: 0;
    padding: 0 18px;
    border-radius: 15px;
  }
  .signup-mobile .form-error {
    position: static;
    align-self: center;
    max-width: 100%;
    margin-top: 2px;
    white-space: normal;
    text-align: center;
  }
  .subtitle { gap: 18px; padding-inline: 4px; }
  .subtitle > p { font-size: 14px; line-height: 1.55; }
  .launch-box {
    flex-direction: column;
    gap: 14px;
    width: min(100%, 330px);
    padding: 18px 22px;
    border-radius: 22px;
  }
  .launch-socials {
    justify-content: space-between;
    width: 100%;
    padding-top: 14px;
    padding-left: 0;
    border-top: 1px solid var(--fg-12);
    border-left: 0;
  }
  .ticker-wrap { padding: 18px 0; }
  .ticker-item { gap: 10px; padding-inline: 20px; font-size: 12px; }
  .ticker-item svg { flex-basis: 20px; width: 20px !important; min-width: 20px; height: 20px !important; }
  .content-section { padding: 78px 18px 86px; }
  .card { border-radius: 22px; }
  .tech-item { align-items: flex-start; flex-direction: column; gap: 5px; }
  .tech-item span:last-child { text-align: left; }
  .seed-showcase { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .socials-footer { flex-direction: column-reverse; justify-content: center; text-align: center; }
}

@media (max-width: 390px) {
  .hero-viewport { padding-inline: 14px; }
  .words span { font-size: clamp(4.8rem, 24vw, 7.2rem); }
  .signup-mobile { max-width: calc(100vw - 24px); }
}



/* Font/reveal gate: hero text stays hidden until web fonts are ready AND the hero reveal starts. */
.fonts-loading .headline,
.fonts-loading .scroll-cue {
  visibility: hidden;
}

.js .scroll-cue {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
}

/* Bottom-center scroll cue for the hero. */
.scroll-cue {
  position: fixed;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid var(--fg-12);
  border-radius: 999px;
  color: var(--fg-70);
  background: rgba(0, 0, 0, 0.44);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(245, 241, 234, 0.08);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--ease-out), visibility 0s, transform 0.28s var(--ease-out);
  animation: scrollCueFloat 1.6s ease-in-out infinite;
}
.scroll-cue svg { width: 15px; height: 15px; }
.scroll-cue svg path { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.is-page-scrolled .scroll-cue {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.24s var(--ease-out), visibility 0s linear 0.24s, transform 0.24s var(--ease-out);
  pointer-events: none;
}
@keyframes scrollCueFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 5px; }
}

.js body.is-hero-cta-visible:not(.is-page-scrolled) .scroll-cue {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

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