@font-face {
  font-family: "Inter";
  src: url("/assets/InterVariable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --canvas: #ffffff;
  --field: #f8f8fa;
  --grid: #e6eaf2;
  --text: #111111;
  --secondary: #676b73;
  --ink: #122152;
  --creator: #1d327a;
  --signal: #2f7dff;
  --cyan: #22c7d8;
  --pink: #e85da8;
  --success: #2ac769;
  --border: rgba(18, 33, 82, 0.12);
  --shadow: 0 24px 60px rgba(18, 33, 82, 0.08);
  --content: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--canvas);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--signal);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(47, 125, 255, 0.3);
  outline-offset: 4px;
  border-radius: 6px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.wrap {
  width: min(100% - 64px, var(--content));
  margin-inline: auto;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.94);
}

.nav {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  position: relative;
  color: var(--ink);
  font-size: 24px;
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 1;
  text-decoration: none;
}

.brand::after {
  position: absolute;
  top: -3px;
  left: 25px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  color: var(--secondary);
  font-size: 14px;
  font-weight: 620;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  align-items: center;
  gap: 72px;
  padding-block: 92px 104px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--creator);
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0.02em;
}

.eyebrow-signal {
  position: relative;
  width: 34px;
  height: 10px;
}

.eyebrow-signal::before,
.eyebrow-signal::after {
  position: absolute;
  top: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
}

.eyebrow-signal::before {
  left: 0;
  background: var(--cyan);
}

.eyebrow-signal::after {
  right: 0;
  background: var(--signal);
}

.eyebrow-signal span {
  position: absolute;
  top: 5px;
  left: 7px;
  width: 21px;
  height: 1px;
  background: var(--signal);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(3.3rem, 6.2vw, 5.25rem);
  font-weight: 720;
  letter-spacing: -0.065em;
  line-height: 0.99;
}

.hero h1 em {
  color: var(--signal);
  font-style: normal;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 34px;
  color: var(--secondary);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 15px;
  font-weight: 680;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--creator);
  color: #fff;
  box-shadow: 0 12px 28px rgba(18, 33, 82, 0.18);
}

.button-mark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(42, 199, 105, 0.15);
}

.text-link {
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
}

.signal-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 34px;
  background-color: var(--field);
  background-image:
    linear-gradient(rgba(18, 33, 82, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 33, 82, 0.055) 1px, transparent 1px);
  background-size: 38px 38px;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.signal-card::before {
  position: absolute;
  inset: -35% -55%;
  z-index: -1;
  border: 1px solid rgba(34, 199, 216, 0.32);
  border-radius: 50%;
  content: "";
  transform: rotate(-9deg);
}

.signal-card svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.signal-path {
  stroke-dasharray: 9 12;
  animation: signalFlow 8s linear infinite;
}

.signal-label {
  position: absolute;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 12px;
  font-weight: 680;
  box-shadow: 0 8px 24px rgba(18, 33, 82, 0.08);
}

.signal-label.creator-label {
  top: 22%;
  left: 9%;
}

.signal-label.business-label {
  right: 8%;
  bottom: 19%;
}

@keyframes signalFlow {
  to {
    stroke-dashoffset: -210;
  }
}

.audiences {
  padding-block: 92px 112px;
  border-top: 1px solid var(--border);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.55fr);
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 64px;
}

.section-heading h2 {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 4.3vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-heading p {
  align-self: end;
  margin-bottom: 3px;
  color: var(--secondary);
  font-size: 17px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--border);
}

.audience {
  padding: 42px 48px 8px 0;
}

.audience + .audience {
  padding-right: 0;
  padding-left: 48px;
  border-left: 1px solid var(--border);
}

.audience-index {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--field);
  color: var(--signal);
  font-size: 12px;
  font-weight: 740;
}

.audience:nth-child(2) .audience-index {
  color: var(--cyan);
}

.audience h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 690;
  letter-spacing: -0.035em;
}

.audience p {
  max-width: 470px;
  margin-bottom: 0;
  color: var(--secondary);
  font-size: 17px;
}

.launch {
  padding-bottom: 112px;
}

.launch-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 42px 46px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--field);
}

.launch-copy {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 18px;
}

.launch-dot {
  width: 11px;
  height: 11px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 7px rgba(42, 199, 105, 0.13);
}

.launch h2 {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
  font-weight: 690;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.launch p {
  margin-bottom: 0;
  color: var(--secondary);
}

.launch a {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 15px;
  font-weight: 670;
}

.site-footer {
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  min-height: 118px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-copy {
  color: var(--secondary);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}

.footer-links a {
  color: var(--secondary);
  font-size: 13px;
  font-weight: 570;
}

.legal-hero {
  padding-block: 88px 58px;
  border-bottom: 1px solid var(--border);
}

.legal-shell {
  width: min(100% - 48px, 760px);
  margin-inline: auto;
}

.legal-hero .eyebrow {
  margin-bottom: 18px;
}

.legal-hero h1 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.7rem, 7vw, 4.8rem);
  font-weight: 720;
  letter-spacing: -0.06em;
  line-height: 1;
}

.legal-lede {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--secondary);
  font-size: 18px;
}

.legal-meta {
  margin-top: 24px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 560;
}

.legal-content {
  padding-block: 66px 104px;
}

.prose h2 {
  margin: 54px 0 13px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 690;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 30px 0 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 670;
}

.prose p,
.prose li {
  color: #3f434a;
  font-size: 16px;
  line-height: 1.75;
}

.prose ul,
.prose ol {
  padding-left: 1.25rem;
}

.prose li + li {
  margin-top: 9px;
}

.prose a {
  color: var(--signal);
  font-weight: 580;
}

.note {
  margin: 34px 0;
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--field);
}

.note p:last-child {
  margin-bottom: 0;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 46px;
}

.support-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--canvas);
}

.support-card h2 {
  margin: 0 0 9px;
  font-size: 19px;
}

.support-card p {
  margin-bottom: 0;
  font-size: 15px;
}

.profile-page,
.profile-placeholder {
  display: grid;
  min-height: calc(100vh - 195px);
  place-items: center;
  padding-block: 72px;
}

.profile-card,
.profile-panel {
  width: min(100%, 680px);
  padding: 54px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--canvas);
  box-shadow: var(--shadow);
  text-align: center;
}

.profile-card .eyebrow,
.profile-panel .eyebrow {
  margin-bottom: 30px;
}

.profile-avatar {
  display: grid;
  width: 104px;
  height: 104px;
  margin: 0 auto 22px;
  place-items: center;
  border: 1px solid rgba(47, 125, 255, 0.16);
  border-radius: 50%;
  background: rgba(47, 125, 255, 0.08);
  color: var(--creator);
  font-size: 30px;
  font-weight: 720;
  letter-spacing: -0.045em;
}

.profile-avatar-muted {
  border-color: var(--border);
  background: var(--field);
  color: var(--secondary);
}

.profile-kind {
  margin-bottom: 8px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 740;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-card h1,
.profile-panel h1 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(2.1rem, 7vw, 3.4rem);
  font-weight: 710;
  letter-spacing: -0.055em;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.profile-details,
.profile-panel p {
  max-width: 46ch;
  margin: 0 auto 26px;
  color: var(--secondary);
  font-size: 17px;
  line-height: 1.6;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 34px 0 0;
  border-block: 1px solid var(--border);
}

.profile-stats div {
  display: flex;
  min-width: 0;
  flex-direction: column-reverse;
  gap: 2px;
  padding: 22px 12px;
}

.profile-stats div + div {
  border-left: 1px solid var(--border);
}

.profile-stats dt {
  color: var(--secondary);
  font-size: 12px;
  font-weight: 580;
}

.profile-stats dd {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.profile-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.profile-socials a {
  padding: 9px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 620;
  text-decoration: none;
}

.profile-socials a > span:first-child {
  color: var(--secondary);
  font-weight: 540;
}

.social-verified {
  color: var(--signal);
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.profile-launch-note {
  margin: 18px 0 0;
  color: var(--secondary);
  font-size: 12px;
}

.profile-card-status .profile-details {
  max-width: 500px;
}

@media (max-width: 860px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 54px;
    padding-block: 78px 88px;
  }

  .signal-card {
    min-height: 360px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .launch-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 40px, var(--content));
  }

  .nav {
    min-height: 68px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-optional {
    display: none;
  }

  .hero {
    padding-block: 62px 72px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15.5vw, 4.2rem);
  }

  .signal-card {
    min-height: 310px;
    border-radius: 26px;
  }

  .audiences {
    padding-block: 72px 84px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .audience,
  .audience + .audience {
    padding: 34px 0;
    border-left: 0;
  }

  .audience + .audience {
    border-top: 1px solid var(--border);
  }

  .launch {
    padding-bottom: 84px;
  }

  .launch-panel {
    padding: 32px 26px;
    border-radius: 24px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 30px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .legal-hero {
    padding-block: 64px 46px;
  }

  .legal-content {
    padding-block: 48px 80px;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .profile-card,
  .profile-panel {
    padding: 38px 24px;
  }

  .profile-page,
  .profile-placeholder {
    padding-block: 36px;
  }

  .profile-stats div {
    padding-inline: 7px;
  }

  .profile-stats dd {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
