:root {
  color-scheme: dark;
  --ink: #11182f;
  --deep-ink: #090e1d;
  --panel: #202b51;
  --panel-light: #2d3c6b;
  --blue: #3478f6;
  --blue-dark: #1c4daa;
  --cyan: #44d9ff;
  --yellow: #ffcf3a;
  --yellow-dark: #b26a00;
  --green: #41d96b;
  --green-dark: #18833a;
  --pink: #ff5c8a;
  --paper: #f6f7ff;
  --muted: #aab8e8;
  --line: rgba(170, 184, 232, 0.18);
  --shell: 1180px;
  --shadow: #050811;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--deep-ink);
  color: var(--paper);
  font-family:
    Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", Inter, system-ui,
    -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  word-break: keep-all;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--deep-ink);
  transform: translateY(-150%);
}

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

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 14, 29, 0.72);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.65px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 3px solid var(--deep-ink);
  border-radius: 11px;
  background: var(--yellow);
  box-shadow: 2px 3px 0 var(--yellow-dark);
}

.brand-mark span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 2px solid var(--deep-ink);
  border-radius: 5px;
  background: white;
  color: var(--deep-ink);
  font-size: 15px;
  line-height: 1;
  transform: rotate(-8deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.nav-links a {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover {
  color: white;
}

.nav-cta {
  padding: 11px 16px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 11px;
  color: white;
}

.nav-cta:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 820px;
  overflow: hidden;
  padding: 158px 0 92px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 75% 40%, #18295d 0, var(--deep-ink) 43%);
  background-size:
    52px 52px,
    52px 52px,
    auto;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 130px;
  left: -130px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(68, 217, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.22;
}

.hero-glow-one {
  top: 3%;
  right: 12%;
  width: 260px;
  height: 260px;
  background: var(--blue);
  filter: blur(120px);
}

.hero-glow-two {
  right: 36%;
  bottom: 4%;
  width: 180px;
  height: 180px;
  background: var(--pink);
  filter: blur(120px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(480px, 1.06fr);
  gap: 64px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 16px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 23px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.eyebrow {
  padding: 9px 12px;
  border: 1px solid rgba(68, 217, 255, 0.24);
  border-radius: 999px;
  background: rgba(68, 217, 255, 0.07);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(65, 217, 107, 0.1);
}

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

.hero h1 {
  max-width: 680px;
  margin-bottom: 27px;
  font-size: clamp(52px, 5.7vw, 78px);
  line-height: 1.06;
  font-weight: 950;
  letter-spacing: -0.07em;
}

.highlight {
  position: relative;
  color: var(--yellow);
  white-space: nowrap;
}

.highlight::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 5px;
  border-radius: 999px;
  background: var(--yellow);
  content: "";
  opacity: 0.5;
  transform: rotate(-1deg);
}

.hero-description {
  max-width: 590px;
  margin-bottom: 34px;
  color: #c8d2f2;
  font-size: 18px;
  line-height: 1.76;
  font-weight: 530;
  letter-spacing: -0.02em;
}

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

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 22px;
  border: 3px solid var(--deep-ink);
  border-radius: 14px;
  font-size: 16px;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button-primary {
  background: var(--yellow);
  box-shadow: 4px 5px 0 var(--yellow-dark);
  color: var(--deep-ink);
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 7px 0 var(--yellow-dark);
}

.button:active {
  transform: translate(2px, 3px);
  box-shadow: 1px 2px 0 var(--yellow-dark);
}

.button-arrow {
  font-size: 22px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: white;
  font-size: 15px;
  font-weight: 800;
}

.text-link span {
  color: var(--cyan);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin: 29px 0 0;
  padding: 0;
  color: #93a2d0;
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-list span {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: rgba(65, 217, 107, 0.12);
  color: var(--green);
  font-size: 10px;
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(68, 217, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 520px;
  height: 520px;
}

.orbit-two {
  width: 390px;
  height: 390px;
  border-color: rgba(255, 207, 58, 0.15);
}

.phone {
  position: absolute;
  z-index: 2;
  top: 3px;
  left: 50%;
  width: 314px;
  height: 596px;
  overflow: hidden;
  border: 5px solid #050812;
  border-radius: 36px;
  background: #111a35;
  box-shadow:
    11px 15px 0 #050812,
    0 34px 90px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: translateX(-44%) rotate(2.7deg);
}

.phone::before {
  position: absolute;
  z-index: 5;
  top: 10px;
  left: 50%;
  width: 76px;
  height: 19px;
  border-radius: 999px;
  background: #050812;
  content: "";
  transform: translateX(-50%);
}

.phone-top {
  display: flex;
  height: 78px;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 15px 14px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.07);
}

.phone-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 900;
}

.mini-mark {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 2px solid var(--deep-ink);
  border-radius: 7px;
  background: var(--yellow);
  color: var(--deep-ink);
  font-size: 12px;
  box-shadow: 1px 2px 0 var(--yellow-dark);
}

.online-pill {
  padding: 6px 7px;
  border-radius: 6px;
  background: rgba(68, 217, 255, 0.09);
  color: var(--cyan);
  font-size: 8px;
  font-weight: 850;
}

.capsule-world {
  position: relative;
  height: 445px;
  overflow: hidden;
  margin: 9px;
  border: 3px solid #070b17;
  border-radius: 20px;
  background:
    radial-gradient(circle at 80% 15%, rgba(68, 217, 255, 0.1), transparent 30%),
    linear-gradient(rgba(68, 217, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(68, 217, 255, 0.035) 1px, transparent 1px),
    #0b1125;
  background-size:
    auto,
    30px 30px,
    30px 30px,
    auto;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.45);
}

.capsule-world::after {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow:
    -254px 0 0 var(--cyan),
    -254px -417px 0 var(--yellow),
    0 -417px 0 var(--pink);
  content: "";
}

.capsule {
  position: absolute;
  top: var(--y);
  left: var(--x);
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 3px solid var(--deep-ink);
  border-radius: 50%;
  color: var(--deep-ink);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: -0.08em;
  box-shadow:
    3px 4px 0 var(--deep-ink),
    inset -9px -10px 0 rgba(0, 0, 0, 0.12),
    inset 8px 8px 0 rgba(255, 255, 255, 0.16);
  transform: rotate(var(--r));
  animation: drift 5s ease-in-out infinite alternate;
}

.capsule::after {
  position: absolute;
  top: 14%;
  right: 17%;
  width: 17%;
  height: 17%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  content: "";
}

.capsule-md {
  width: 69px;
  height: 69px;
  animation-delay: -1.7s;
}

.capsule-sm {
  width: 57px;
  height: 57px;
  animation-delay: -3.2s;
}

.capsule-xs {
  width: 47px;
  height: 47px;
  animation-delay: -2.3s;
}

.capsule-pink {
  background: var(--pink);
}

.capsule-cyan {
  background: #00cec9;
}

.capsule-yellow {
  background: var(--yellow);
}

.capsule-purple {
  background: #a29bfe;
}

.capsule-green {
  background: var(--green);
}

.capsule-blue {
  background: #54a0ff;
}

.capsule-coral {
  background: #ff7675;
}

.phone-dock {
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: -1px 12px 0;
  border: 3px solid #070b17;
  border-radius: 12px;
  background: var(--yellow);
  box-shadow: 2px 3px 0 var(--yellow-dark);
  color: var(--deep-ink);
  font-size: 12px;
  font-weight: 950;
}

.dock-plus {
  font-size: 17px;
}

.floating-note,
.secret-card {
  position: absolute;
  z-index: 4;
  border: 3px solid var(--deep-ink);
  box-shadow: 5px 6px 0 var(--shadow);
}

.floating-note {
  display: flex;
  border-radius: 13px;
  background: var(--paper);
  color: var(--deep-ink);
  font-size: 11px;
}

.note-one {
  top: 100px;
  left: -5px;
  max-width: 194px;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  transform: rotate(-5deg);
}

.note-one span {
  color: #7d88a8;
  font-size: 9px;
  font-weight: 800;
}

.note-one strong {
  line-height: 1.45;
}

.note-two {
  top: 38px;
  right: -20px;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  transform: rotate(4deg);
}

.mini-heart {
  color: var(--pink);
  font-size: 17px;
}

.secret-card {
  right: -20px;
  bottom: 22px;
  width: 262px;
  padding: 16px;
  border-radius: 17px;
  background: var(--paper);
  color: var(--deep-ink);
  transform: rotate(-3.5deg);
}

.secret-card-top {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
}

.gift-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 2px solid var(--deep-ink);
  border-radius: 8px;
  background: var(--yellow);
  font-weight: 950;
}

.secret-card p {
  margin: 14px 0;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.secret-reactions {
  display: flex;
  gap: 7px;
}

.secret-reactions span {
  flex: 1;
  padding: 8px 4px;
  border-radius: 7px;
  background: #e8edff;
  color: var(--panel-light);
  font-size: 8px;
  font-weight: 850;
  text-align: center;
}

.quote-strip {
  position: relative;
  z-index: 6;
  overflow: hidden;
  border-top: 2px solid var(--deep-ink);
  border-bottom: 2px solid var(--deep-ink);
  background: var(--yellow);
  color: var(--deep-ink);
  transform: rotate(-0.65deg) scale(1.02);
}

.quote-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  gap: 27px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.quote-track p {
  margin: 0;
}

.quote-label {
  padding: 7px 10px;
  border: 2px solid var(--deep-ink);
  border-radius: 7px;
  background: var(--deep-ink);
  color: var(--yellow);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.quote-separator {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--deep-ink);
  opacity: 0.35;
}

.section {
  padding: 130px 0;
}

.how-section {
  background:
    radial-gradient(circle at 15% 55%, rgba(52, 120, 246, 0.08), transparent 27%),
    #f5f7ff;
  color: var(--deep-ink);
}

.section-heading {
  max-width: 650px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-heading h2,
.story-copy h2,
.final-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(40px, 4.6vw, 61px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.065em;
}

.section-heading > p:last-child,
.story-copy > p,
.final-copy > p {
  margin-bottom: 0;
  color: #66708c;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 560;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 28px;
  border: 3px solid var(--deep-ink);
  border-radius: 22px;
  background: white;
  box-shadow: 7px 8px 0 var(--deep-ink);
}

.step-card::after {
  position: absolute;
  right: -36px;
  bottom: -50px;
  width: 155px;
  height: 155px;
  border-radius: 50%;
  content: "";
  opacity: 0.1;
}

.step-card-yellow::after {
  background: var(--yellow);
}

.step-card-cyan::after {
  background: var(--cyan);
}

.step-card-pink::after {
  background: var(--pink);
}

.step-number {
  display: inline-grid;
  width: 40px;
  height: 30px;
  place-items: center;
  border: 2px solid var(--deep-ink);
  border-radius: 7px;
  background: var(--deep-ink);
  color: white;
  font-size: 11px;
  font-weight: 900;
}

.step-icon {
  position: relative;
  display: grid;
  width: 92px;
  height: 92px;
  margin: 33px 0 29px;
  place-items: center;
  border: 3px solid var(--deep-ink);
  border-radius: 24px;
  background: var(--yellow);
  box-shadow: 4px 5px 0 var(--yellow-dark);
  transform: rotate(-3deg);
}

.step-card-cyan .step-icon {
  background: var(--cyan);
  box-shadow: 4px 5px 0 #118aa6;
  transform: rotate(3deg);
}

.step-card-pink .step-icon {
  background: var(--pink);
  box-shadow: 4px 5px 0 #ac2e53;
  transform: rotate(-3deg);
}

.paper-line {
  position: absolute;
  left: 23px;
  width: 41px;
  height: 4px;
  border-radius: 3px;
  background: var(--deep-ink);
}

.paper-line-one {
  top: 31px;
}

.paper-line-two {
  top: 43px;
  width: 29px;
}

.paper-pencil {
  position: absolute;
  right: 18px;
  bottom: 23px;
  width: 32px;
  height: 7px;
  border: 2px solid var(--deep-ink);
  border-radius: 3px;
  background: white;
  transform: rotate(-42deg);
}

.capsule-icon {
  border-radius: 50%;
  color: var(--deep-ink);
  font-size: 17px;
  font-weight: 950;
}

.capsule-icon::after {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  content: "";
}

.heart-icon {
  color: white;
  font-size: 41px;
  text-shadow: 2px 3px 0 #ac2e53;
}

.step-card h3 {
  margin-bottom: 11px;
  font-size: 23px;
  font-weight: 950;
  letter-spacing: -0.045em;
}

.step-card p {
  margin-bottom: 19px;
  color: #626d89;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 570;
}

.step-note {
  color: #7f89a2;
  font-size: 11px;
  font-weight: 750;
}

.step-note::before {
  margin-right: 6px;
  color: var(--green-dark);
  content: "✓";
}

.story-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--ink);
  background-size: 44px 44px;
}

.story-section::after {
  position: absolute;
  top: 50%;
  right: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(68, 217, 255, 0.09);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.story-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: center;
}

.section-kicker-light {
  color: var(--yellow);
}

.story-copy h2 {
  color: white;
}

.story-copy > p {
  max-width: 470px;
  color: #aebade;
}

.story-stat {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 38px;
}

.story-stat strong {
  color: var(--cyan);
  font-size: 52px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.story-stat span {
  color: #c4cceb;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 700;
}

.confession-stack {
  position: relative;
  min-height: 430px;
}

.confession {
  position: absolute;
  width: min(530px, 92%);
  padding: 28px;
  border: 3px solid var(--deep-ink);
  border-radius: 20px;
  background: var(--paper);
  color: var(--deep-ink);
  box-shadow: 8px 10px 0 #050811;
}

.confession-one {
  top: 0;
  right: 0;
  transform: rotate(2.5deg);
}

.confession-two {
  right: 11%;
  bottom: 0;
  transform: rotate(-2.5deg);
}

.confession-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #7d88a8;
  font-size: 10px;
  font-weight: 800;
}

.anonymous-avatar {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid var(--deep-ink);
  border-radius: 9px;
  background: var(--yellow);
  color: var(--deep-ink);
  font-size: 14px;
  font-weight: 950;
}

.avatar-cyan {
  background: var(--cyan);
}

.confession > p {
  min-height: 64px;
  margin: 22px 0 19px;
  font-size: 20px;
  line-height: 1.58;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.confession-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid #dbe0f0;
  color: #7d88a8;
  font-size: 10px;
  font-weight: 750;
}

.confession-footer span:first-child {
  color: var(--pink);
}

.principles-section {
  background: #f5f7ff;
  color: var(--deep-ink);
}

.principles-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.compact-heading {
  margin: 0;
  text-align: left;
}

.compact-heading h2 {
  margin-bottom: 0;
}

.principles-intro {
  max-width: 410px;
  margin-bottom: 8px;
  color: #68728d;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 570;
}

.principle-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid #dbe1f0;
  border-bottom: 2px solid #dbe1f0;
}

.principle-list article {
  display: flex;
  gap: 18px;
  padding: 34px 25px;
  border-right: 2px solid #dbe1f0;
}

.principle-list article:last-child {
  border-right: 0;
}

.principle-icon {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid var(--deep-ink);
  border-radius: 13px;
  background: var(--yellow);
  box-shadow: 2px 3px 0 var(--deep-ink);
}

.shield-icon::before {
  width: 19px;
  height: 22px;
  border: 3px solid var(--deep-ink);
  border-radius: 9px 9px 11px 11px;
  content: "";
}

.shield-icon::after {
  position: absolute;
  top: 20px;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid var(--deep-ink);
  border-left: 2px solid var(--deep-ink);
  content: "";
  transform: rotate(-45deg);
}

.eye-icon {
  background: var(--cyan);
}

.eye-icon::before {
  width: 23px;
  height: 15px;
  border: 3px solid var(--deep-ink);
  border-radius: 50% 10%;
  content: "";
  transform: rotate(45deg);
}

.eye-icon::after {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--deep-ink);
  content: "";
}

.hand-icon {
  background: var(--pink);
  color: white;
  font-size: 22px;
  text-shadow: 1px 2px 0 #ac2e53;
}

.principle-list h3 {
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.principle-list p {
  margin-bottom: 0;
  color: #6c7690;
  font-size: 12px;
  line-height: 1.65;
  font-weight: 560;
}

.final-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 110px;
  background:
    radial-gradient(circle at 50% 25%, rgba(52, 120, 246, 0.14), transparent 35%),
    var(--deep-ink);
}

.final-card {
  position: relative;
  isolation: isolate;
  min-height: 530px;
  overflow: hidden;
  border: 3px solid #02040a;
  border-radius: 30px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    #17234a;
  background-size: 42px 42px;
  box-shadow: 10px 12px 0 #02040a;
}

.final-card::before,
.final-card::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(68, 217, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.final-card::before {
  top: 50%;
  left: 50%;
  width: 620px;
  height: 620px;
  transform: translate(-50%, -50%);
}

.final-card::after {
  top: 50%;
  left: 50%;
  width: 390px;
  height: 390px;
  border-color: rgba(255, 207, 58, 0.16);
  transform: translate(-50%, -50%);
}

.final-copy {
  display: flex;
  max-width: 600px;
  min-height: 530px;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 74px 24px;
  flex-direction: column;
  text-align: center;
}

.final-mark {
  width: 54px;
  height: 54px;
  margin-bottom: 25px;
}

.final-copy .section-kicker {
  margin-bottom: 16px;
  color: var(--cyan);
}

.final-copy h2 {
  margin-bottom: 18px;
}

.final-copy > p {
  color: #aebade;
}

.final-button {
  margin-top: 31px;
}

.final-copy small {
  margin-top: 18px;
  color: #7f8bb7;
  font-size: 10px;
  font-weight: 700;
}

.final-capsule {
  position: absolute;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 3px solid var(--deep-ink);
  border-radius: 50%;
  color: var(--deep-ink);
  font-size: 11px;
  font-weight: 950;
  box-shadow:
    4px 5px 0 #050811,
    inset -10px -11px 0 rgba(0, 0, 0, 0.12),
    inset 8px 8px 0 rgba(255, 255, 255, 0.17);
  animation: drift 4.6s ease-in-out infinite alternate;
}

.final-capsule-one {
  top: 16%;
  left: 8%;
  background: var(--pink);
  transform: rotate(-12deg);
}

.final-capsule-two {
  top: 13%;
  right: 10%;
  width: 58px;
  height: 58px;
  background: var(--cyan);
  animation-delay: -1.3s;
}

.final-capsule-three {
  right: 6%;
  bottom: 13%;
  width: 92px;
  height: 92px;
  background: var(--yellow);
  animation-delay: -2.8s;
}

.final-capsule-four {
  bottom: 9%;
  left: 12%;
  width: 62px;
  height: 62px;
  background: #a29bfe;
  animation-delay: -3.7s;
}

.site-footer {
  padding: 62px 0 25px;
  border-top: 1px solid var(--line);
  background: #070b16;
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 30px;
  padding-bottom: 48px;
}

.footer-brand {
  font-size: 17px;
}

.footer-brand .brand-mark {
  width: 36px;
  height: 36px;
}

.footer-brand .brand-mark span {
  width: 19px;
  height: 19px;
  font-size: 12px;
}

.footer-wrap > p {
  margin: 0;
  color: #7f8bb7;
  font-size: 12px;
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 22px;
  color: #9ba7cd;
  font-size: 11px;
  font-weight: 700;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #596485;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

@keyframes drift {
  from {
    translate: 0 -4px;
  }
  to {
    translate: 0 7px;
  }
}

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 25px;
  }

  .hero h1 {
    font-size: clamp(47px, 6.3vw, 66px);
  }

  .hero-visual {
    transform: scale(0.89);
  }

  .note-one {
    left: -38px;
  }

  .secret-card {
    right: -56px;
  }

  .quote-track {
    justify-content: flex-start;
  }

  .story-grid {
    gap: 48px;
  }
}

@media (max-width: 840px) {
  .shell {
    width: min(100% - 36px, 680px);
  }

  .nav-wrap {
    min-height: 70px;
  }

  .nav-links > a:not(.nav-cta) {
    display: none;
  }

  .hero {
    padding: 128px 0 82px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 68px;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow {
    margin-inline: auto;
  }

  .hero-description {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-list {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 520px);
    margin: auto;
    transform: none;
  }

  .phone {
    transform: translateX(-50%) rotate(2.7deg);
  }

  .note-one {
    left: 0;
  }

  .note-two,
  .secret-card {
    right: 0;
  }

  .steps,
  .principle-list {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: auto;
  }

  .step-icon {
    margin-block: 28px 24px;
  }

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

  .story-copy {
    max-width: 560px;
  }

  .principles-top {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .principle-list article {
    border-right: 0;
    border-bottom: 2px solid #dbe1f0;
  }

  .principle-list article:last-child {
    border-bottom: 0;
  }

  .footer-wrap {
    grid-template-columns: 1fr auto;
  }

  .footer-wrap > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 580px) {
  .shell {
    width: min(100% - 28px, 480px);
  }

  .brand {
    gap: 9px;
    font-size: 17px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .nav-cta {
    padding: 9px 11px;
    font-size: 11px;
  }

  .hero {
    min-height: auto;
    padding-top: 117px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 58px);
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-list {
    gap: 10px;
    font-size: 10px;
  }

  .hero-visual {
    min-height: 540px;
    transform: scale(0.88);
    transform-origin: top center;
  }

  .orbit-one {
    width: 470px;
    height: 470px;
  }

  .note-one {
    left: -20px;
  }

  .note-two {
    right: -14px;
  }

  .secret-card {
    right: -26px;
    bottom: 9px;
  }

  .quote-track {
    gap: 20px;
  }

  .quote-track p:nth-of-type(n + 2),
  .quote-track .quote-separator:nth-of-type(n + 2) {
    display: none;
  }

  .section {
    padding: 90px 0;
  }

  .section-heading {
    margin-bottom: 45px;
  }

  .section-heading h2,
  .story-copy h2,
  .final-copy h2 {
    font-size: 39px;
  }

  .steps {
    gap: 17px;
  }

  .step-card {
    padding: 24px;
  }

  .confession-stack {
    min-height: 465px;
  }

  .confession {
    width: 96%;
    padding: 22px;
  }

  .confession-one {
    right: 0;
  }

  .confession-two {
    right: 3%;
  }

  .confession > p {
    font-size: 18px;
  }

  .confession-footer span:last-child {
    max-width: 150px;
    text-align: right;
  }

  .principles-top {
    margin-bottom: 38px;
  }

  .principle-list article {
    padding-inline: 8px;
  }

  .final-card {
    min-height: 600px;
  }

  .final-copy {
    min-height: 600px;
    padding-inline: 22px;
  }

  .final-capsule-one {
    top: 5%;
    left: 5%;
    width: 56px;
    height: 56px;
  }

  .final-capsule-two {
    top: 7%;
    right: 4%;
  }

  .final-capsule-three {
    right: 4%;
    bottom: 5%;
    width: 70px;
    height: 70px;
  }

  .final-capsule-four {
    bottom: 6%;
    left: 5%;
  }

  .footer-wrap {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom {
    gap: 14px;
    flex-direction: column;
  }
}

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

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