@font-face {
  font-family: "Pretendard";
  src: url("./fonts/Pretendard-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("./fonts/Pretendard-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg-top: #0d1438;
  --bg-bottom: #161e4e;
  --surface: rgba(32, 41, 85, 0.62);
  --surface-strong: rgba(43, 53, 103, 0.84);
  --border: rgba(159, 168, 214, 0.24);
  --border-bright: rgba(255, 255, 255, 0.34);
  --accent: #9c84f5;
  --accent-soft: #c7baf5;
  --text: #f8f7ff;
  --text-secondary: #b8beda;
  --text-tertiary: #7f87ac;
  --star: #ffe070;
  --cream: #fff8e7;
  --max-width: 1160px;
  --shadow: 0 24px 80px rgba(4, 8, 30, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 12%, rgba(107, 92, 219, 0.2), transparent 28rem),
    radial-gradient(circle at 4% 56%, rgba(69, 112, 192, 0.14), transparent 30rem),
    linear-gradient(145deg, var(--bg-top), var(--bg-bottom));
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
}

body::before {
  opacity: 0.55;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.86) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(199,186,245,.7) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255,224,112,.6) 0 1.2px, transparent 1.6px);
  background-position: 2% 14%, 28% 8%, 70% 28%;
  background-size: 143px 143px, 211px 211px, 307px 307px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

body::after {
  z-index: -1;
  background: linear-gradient(to bottom, transparent 70%, rgba(7, 11, 33, 0.5));
}

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

button,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 12px;
  color: #111633;
  background: var(--cream);
  transform: translateY(-160%);
}

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

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  background: linear-gradient(to bottom, rgba(13, 20, 56, 0.92), rgba(13, 20, 56, 0.62));
  border-bottom: 1px solid rgba(159, 168, 214, 0.12);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  box-shadow: 0 8px 22px rgba(4, 8, 30, 0.28);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a,
.language-select {
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--text-secondary);
  background: transparent;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.language-select {
  width: 78px;
  color: var(--text);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--border);
  outline: none;
}

.language-select:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
  min-height: calc(100vh - 74px);
  padding: 88px 0 94px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--accent-soft);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--star);
  box-shadow: 0 0 13px rgba(255, 224, 112, 0.75);
  content: "";
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.85rem, 6vw, 5.35rem);
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(105deg, #fff8df 0%, #d8cef9 48%, #a594f4 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 34px;
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 19px;
  border: 1px solid var(--border);
  border-radius: 17px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(199, 186, 245, 0.55);
  background: rgba(255, 255, 255, 0.11);
}

.button.primary {
  border-color: rgba(199, 186, 245, 0.34);
  background: linear-gradient(145deg, rgba(156, 132, 245, 0.42), rgba(90, 82, 184, 0.25));
  box-shadow: 0 14px 34px rgba(63, 48, 152, 0.24), inset 0 1px 0 rgba(255,255,255,.22);
}

.button[aria-disabled="true"] {
  cursor: default;
}

.button-icon {
  width: 18px;
  height: 18px;
}

.hero-stage {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(61, 24, 126, 0.44), transparent 42%),
    linear-gradient(180deg, #03040c 0%, #070713 62%, #080914 100%);
  border-bottom: 1px solid rgba(159, 168, 214, 0.14);
}

.hero-stage::before {
  position: absolute;
  inset: 0;
  z-index: -4;
  content: "";
  opacity: 0.55;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.8) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(199,186,245,.6) 0 1px, transparent 1.5px);
  background-position: 5% 18%, 46% 8%;
  background-size: 157px 157px, 241px 241px;
  mask-image: radial-gradient(circle at center, black 20%, transparent 80%);
}

.hero-orb {
  position: absolute;
  z-index: -3;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-top {
  top: -720px;
  left: 50%;
  width: 980px;
  height: 980px;
  background:
    radial-gradient(circle at 50% 86%, rgba(118, 64, 235, 0.7), rgba(44, 18, 91, 0.52) 38%, rgba(5, 5, 15, 0) 72%);
  box-shadow: 0 0 130px rgba(103, 48, 222, 0.18);
  transform: translateX(-50%);
}

.hero-orb-main {
  left: 50%;
  bottom: -760px;
  width: min(1160px, 92vw);
  height: min(1160px, 92vw);
  background:
    radial-gradient(circle at 38% 24%, rgba(143, 78, 255, 0.92), rgba(74, 23, 153, 0.9) 38%, rgba(24, 12, 58, 0.94) 68%, #080913 76%);
  box-shadow: 0 -50px 150px rgba(111, 45, 229, 0.32);
  transform: translateX(-50%);
}

.hero-ring {
  position: absolute;
  z-index: -2;
  left: 50%;
  border: 1px solid rgba(199, 186, 245, 0.19);
  border-radius: 50%;
  pointer-events: none;
}

.hero-ring-one {
  bottom: -44px;
  width: min(940px, 84vw);
  height: 250px;
  transform: translateX(-50%) rotate(-5deg);
}

.hero-ring-two {
  bottom: 12px;
  width: min(760px, 72vw);
  height: 175px;
  transform: translateX(-50%) rotate(7deg);
}

.hero-star {
  position: absolute;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 0 18px rgba(255, 248, 231, 0.85);
}

.hero-star-one {
  top: 24%;
  left: 16%;
  width: 7px;
  height: 7px;
}

.hero-star-two {
  top: 31%;
  right: 14%;
  width: 10px;
  height: 10px;
  background: var(--star);
  box-shadow: 0 0 22px rgba(255, 224, 112, 0.8);
}

.hero-tag {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 15px;
  border: 1px solid rgba(199, 186, 245, 0.25);
  border-radius: 11px;
  color: #eeeaff;
  background: linear-gradient(135deg, rgba(115, 51, 233, 0.88), rgba(75, 21, 172, 0.7));
  box-shadow: 0 12px 32px rgba(54, 15, 134, 0.32), inset 0 1px 0 rgba(255,255,255,.18);
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(14px);
}

.hero-tag::before {
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 2px;
  content: "";
  transform: rotate(45deg);
}

.hero-tag-one {
  top: 29%;
  left: 7%;
  transform: rotate(-4deg);
}

.hero-tag-two {
  top: 17%;
  right: 8%;
  transform: rotate(3deg);
}

.hero-tag-three {
  right: 6%;
  bottom: 29%;
  transform: rotate(-2deg);
}

.hero-centered {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: calc(100svh - 72px);
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 80px 20px 210px;
  text-align: center;
}

.hero-centered .eyebrow {
  margin-bottom: 24px;
}

.hero-centered h1 {
  max-width: 900px;
  margin-bottom: 25px;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 1.08;
  text-wrap: balance;
}

.hero-centered .hero-copy {
  max-width: 710px;
  margin-bottom: 34px;
  color: rgba(224, 222, 241, 0.76);
  text-wrap: balance;
}

.hero-centered .button-row {
  justify-content: center;
}

.hero-centered .button.primary {
  min-width: 190px;
  border-color: rgba(199, 186, 245, 0.38);
  background: linear-gradient(135deg, #8851f5, #6b2fe8);
  box-shadow: 0 18px 42px rgba(91, 36, 211, 0.34), inset 0 1px 0 rgba(255,255,255,.24);
}

.hero-metrics {
  position: absolute;
  right: 0;
  bottom: 30px;
  left: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(159, 168, 214, 0.27);
  border-radius: 22px;
  background: rgba(4, 5, 13, 0.75);
  box-shadow: 0 28px 70px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(20px) saturate(135%);
}

.metric {
  display: flex;
  min-height: 112px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.metric + .metric {
  border-left: 1px solid rgba(159, 168, 214, 0.14);
}

.metric strong {
  margin-bottom: 5px;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
}

.metric span {
  color: var(--text-tertiary);
  font-size: 0.82rem;
}

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

.visual-glow {
  position: absolute;
  inset: 13% 5% 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(156, 132, 245, 0.24), transparent 68%);
  filter: blur(12px);
}

.phone {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(315px, 70vw);
  aspect-ratio: 0.49;
  overflow: hidden;
  border: 8px solid rgba(7, 10, 27, 0.96);
  border-radius: 54px;
  background: linear-gradient(160deg, #0d1438, #161e4e);
  box-shadow: 0 42px 90px rgba(3, 6, 25, 0.58), inset 0 0 0 1px rgba(255,255,255,.12);
  transform: translate(-50%, -50%) rotate(3deg);
}

.phone::before {
  position: absolute;
  top: 11px;
  left: 50%;
  z-index: 4;
  width: 92px;
  height: 25px;
  border-radius: 18px;
  background: #050712;
  content: "";
  transform: translateX(-50%);
}

.phone-screen {
  position: absolute;
  inset: 0;
  overflow: hidden;
  padding: 58px 24px 28px;
  border-radius: 45px;
  background:
    radial-gradient(circle at 73% 26%, rgba(126, 99, 224, 0.24), transparent 31%),
    linear-gradient(155deg, #0e163f, #151d4c);
}

.phone-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-tertiary);
  font-size: 0.7rem;
}

.phone-month {
  margin-top: 26px;
  font-size: 1.02rem;
  font-weight: 600;
}

.constellation {
  width: 100%;
  height: 270px;
  margin-top: 22px;
  overflow: visible;
}

.constellation path {
  fill: none;
  stroke: #a58cf5;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(165,140,245,.5));
  stroke-dasharray: 480;
  animation: draw-line 3.4s ease both;
}

.constellation circle {
  fill: #f8f7ff;
  filter: drop-shadow(0 0 7px rgba(248,247,255,.8));
}

.constellation circle:last-child {
  fill: var(--star);
}

.phone-caption {
  margin-top: -8px;
  color: var(--text-secondary);
  font-size: 0.77rem;
  text-align: center;
}

.mood-dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.mood-dots span {
  width: 11px;
  height: 11px;
  border: 1.5px solid var(--accent-soft);
  border-radius: 50%;
  opacity: 0.42;
}

.mood-dots span:nth-child(4) {
  background: var(--accent-soft);
  box-shadow: 0 0 12px rgba(199,186,245,.55);
  opacity: 1;
}

.orbit-card {
  position: absolute;
  right: -2%;
  bottom: 12%;
  width: 210px;
  padding: 18px;
  border: 1px solid var(--border-bright);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(49,58,111,.32));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.2);
  backdrop-filter: blur(24px) saturate(130%);
  transform: rotate(-4deg);
}

.mini-planet {
  position: relative;
  width: 128px;
  height: 128px;
  margin: 0 auto 10px;
}

.mini-planet .sphere {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: radial-gradient(circle at 68% 65%, #fff8e7 0 18%, #e5d5ff 48%, #9c84f5 100%);
  box-shadow: 0 0 35px rgba(199,186,245,.4);
  transform: translate(-50%, -50%);
}

.mini-planet .ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 122px;
  height: 28px;
  border: 2px solid rgba(255,248,231,.86);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(8deg);
}

.orbit-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.78rem;
  text-align: center;
}

.floating-star {
  position: absolute;
  top: 14%;
  left: 5%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--star);
  box-shadow: 0 0 22px rgba(255,224,112,.76);
  animation: float 4.2s ease-in-out infinite;
}

.section {
  padding: 104px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading h2,
.page-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.section-heading p,
.page-hero p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

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

.glass-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(32,41,85,.5));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 20px 54px rgba(3, 7, 29, 0.18);
  backdrop-filter: blur(22px) saturate(125%);
}

.story-card {
  min-height: 330px;
  padding: 30px;
}

.step-number {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 42px;
  border: 1px solid rgba(199,186,245,.25);
  border-radius: 50%;
  color: var(--accent-soft);
  background: rgba(156,132,245,.12);
  font-size: 0.78rem;
}

.story-card h3,
.feature-card h3 {
  margin-bottom: 11px;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
}

.story-card p,
.feature-card p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

.story-mark {
  position: absolute;
  right: 26px;
  bottom: 22px;
  width: 82px;
  height: 82px;
  opacity: 0.7;
}

.story-mark.dot-line::before,
.story-mark.dot-line::after {
  position: absolute;
  border-radius: 50%;
  background: var(--accent-soft);
  box-shadow: 0 0 15px rgba(199,186,245,.56);
  content: "";
}

.story-mark.dot-line::before {
  top: 12px;
  left: 10px;
  width: 7px;
  height: 7px;
  box-shadow: 28px 18px 0 -1px #c7baf5, 58px 4px 0 -2px #ffe070;
}

.story-mark.dot-line::after {
  top: 28px;
  left: 14px;
  width: 60px;
  height: 1px;
  border-radius: 0;
  opacity: .55;
  transform: rotate(4deg);
}

.story-mark.planet-mark {
  border: 1.5px solid rgba(255,248,231,.72);
  border-radius: 50%;
  transform: scaleY(.35) rotate(-8deg);
}

.story-mark.planet-mark::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 65% 65%, #fff8e7, #b9a4f3);
  content: "";
  transform: translate(-50%, -50%) scaleY(2.85);
}

.story-mark.universe-mark {
  border-radius: 50%;
  background-image: radial-gradient(circle, #fff8e7 0 2px, transparent 2.5px);
  background-size: 22px 22px;
  box-shadow: inset 0 0 35px rgba(156,132,245,.2);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 190px;
  padding: 28px;
}

.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 25px;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--accent-soft);
  background: rgba(156,132,245,.1);
}

.feature-icon svg {
  width: 21px;
  height: 21px;
}

.privacy-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: clamp(28px, 6vw, 54px);
}

.privacy-banner h2 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  letter-spacing: -0.035em;
}

.privacy-banner p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--text-secondary);
}

.page-main {
  padding-bottom: 90px;
}

.page-hero {
  max-width: 760px;
  padding: 92px 0 48px;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: start;
  gap: 28px;
}

.content-card {
  padding: clamp(26px, 5vw, 48px);
}

.content-section + .content-section {
  margin-top: 42px;
  padding-top: 42px;
  border-top: 1px solid var(--border);
}

.content-section h2 {
  margin-bottom: 14px;
  font-size: 1.42rem;
  letter-spacing: -0.025em;
}

.content-section p,
.content-section li {
  color: var(--text-secondary);
}

.content-section ul {
  padding-left: 1.3rem;
}

.side-card {
  position: sticky;
  top: 98px;
  padding: 24px;
}

.side-card h2 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.side-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contact-status {
  display: block;
  margin: 13px 0 18px;
  padding: 11px 13px;
  border: 1px dashed rgba(255,224,112,.32);
  border-radius: 12px;
  color: #fff0ad;
  background: rgba(255,224,112,.06);
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}

.faq-list summary {
  position: relative;
  padding: 18px 50px 18px 20px;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--accent-soft);
  content: "+";
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--text-secondary);
}

.meta-line {
  color: var(--text-tertiary);
  font-size: 0.9rem;
}

.site-footer {
  padding: 34px 0 44px;
  border-top: 1px solid rgba(159,168,214,.13);
  color: var(--text-tertiary);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a:hover {
  color: var(--text);
}

@keyframes draw-line {
  from { stroke-dashoffset: 480; }
  to { stroke-dashoffset: 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 72px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    min-height: 620px;
  }

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

  .story-card {
    min-height: 240px;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .side-card {
    position: static;
    order: -1;
  }

  .hero-tag-one { left: 3%; }
  .hero-tag-two { right: 3%; }
  .hero-tag-three { right: 3%; }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    align-items: flex-start;
  }

  .site-nav {
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .site-nav .nav-home,
  .site-nav .nav-support,
  .site-nav .nav-privacy {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 66px 0 72px;
  }

  .hero-stage,
  .hero-centered {
    min-height: 820px;
  }

  .hero-centered {
    padding: 72px 0 300px;
  }

  .hero-centered h1 {
    max-width: 520px;
    font-size: clamp(2.55rem, 12vw, 4.2rem);
  }

  .hero-centered .hero-copy {
    max-width: 560px;
  }

  .hero-tag {
    display: none;
  }

  .hero-star {
    display: none;
  }

  .hero-orb-top {
    top: -580px;
    width: 760px;
    height: 760px;
  }

  .hero-orb-main {
    bottom: -330px;
    width: 720px;
    height: 720px;
  }

  .hero-ring-one {
    bottom: 160px;
    width: 620px;
  }

  .hero-ring-two {
    bottom: 205px;
    width: 520px;
  }

  .hero-metrics {
    bottom: 18px;
    grid-template-columns: repeat(2, 1fr);
  }

  .metric {
    min-height: 92px;
  }

  .metric:nth-child(3) {
    border-left: 0;
  }

  .metric:nth-child(n+3) {
    border-top: 1px solid rgba(159, 168, 214, 0.14);
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .hero-visual {
    min-height: 560px;
  }

  .phone {
    width: 280px;
  }

  .orbit-card {
    right: 0;
    bottom: 6%;
    width: 174px;
  }

  .mini-planet {
    width: 102px;
    height: 102px;
  }

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

  .privacy-banner {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 78px 0;
  }

  .page-hero {
    padding-top: 68px;
  }

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

@media (max-width: 440px) {
  .brand span {
    display: none;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-stage,
  .hero-centered {
    min-height: 790px;
  }

  .hero-centered {
    padding: 62px 0 285px;
  }

  .hero-centered h1 {
    font-size: 2.55rem;
    letter-spacing: -0.05em;
  }

  .hero-centered .button-row {
    width: 100%;
  }

  .phone {
    width: 254px;
    border-width: 7px;
    border-radius: 48px;
  }

  .phone-screen {
    border-radius: 41px;
    padding-inline: 20px;
  }

  .constellation {
    height: 238px;
  }

  .orbit-card {
    right: 0;
    width: 148px;
    padding: 13px;
  }

  .mini-planet {
    width: 86px;
    height: 86px;
  }

  .mini-planet .sphere {
    width: 56px;
    height: 56px;
  }

  .mini-planet .ring {
    width: 84px;
    height: 21px;
  }

  .button-row,
  .button {
    width: 100%;
  }
}

@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;
  }
}

/* 2026 landing refresh */
html[data-theme="light"] { color-scheme: light; }
html[data-theme="dark"] { color-scheme: dark; }

body[data-page="home"] {
  --page-bg: #ffffff;
  --page-surface: #f6f5fb;
  --page-surface-strong: #eeebf8;
  --page-border: #e8e5f0;
  --page-text: #17172c;
  --page-muted: #68687d;
  --page-soft: #8b8ba0;
  min-height: 100vh;
  color: var(--page-text);
  background: var(--page-bg);
  transition: color 240ms ease, background-color 240ms ease;
}

html[data-theme="dark"] body[data-page="home"] {
  --page-bg: #0d1438;
  --page-surface: #151d4b;
  --page-surface-strong: #20295f;
  --page-border: rgba(180, 187, 229, 0.17);
  --page-text: #f8f7ff;
  --page-muted: #bec2db;
  --page-soft: #8f96bb;
}

body[data-page="home"]::before,
body[data-page="home"]::after,
body[data-page="support"]::before,
body[data-page="support"]::after,
body[data-page="privacy"]::before,
body[data-page="privacy"]::after {
  display: none;
}

body[data-page="home"] .site-header {
  color: var(--page-text);
  background: color-mix(in srgb, var(--page-bg) 86%, transparent);
  border-color: var(--page-border);
}

.brand {
  gap: 0;
  color: inherit;
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: -0.035em;
}

body[data-page="home"] .site-nav a {
  color: var(--page-muted);
}

body[data-page="home"] .site-nav a:hover {
  color: var(--page-text);
  background: var(--page-surface);
  border-color: var(--page-border);
}

body[data-page="home"] .language-select,
.theme-toggle {
  min-height: 42px;
  border: 1px solid var(--page-border);
  border-radius: 14px;
  color: var(--page-text);
  background: var(--page-surface);
}

.theme-toggle {
  display: grid;
  width: 42px;
  padding: 0;
  place-items: center;
  cursor: pointer;
}

.theme-icon {
  width: 19px;
  height: 19px;
}

html[data-theme="light"] .theme-icon-sun,
html[data-theme="dark"] .theme-icon-moon {
  display: none;
}

.home-hero {
  position: relative;
  display: flex;
  min-height: min(850px, calc(100svh - 71px));
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 46%, rgba(215, 207, 246, 0.68), transparent 31rem),
    linear-gradient(145deg, #ffffff 0%, #fbfaff 58%, #f4f1fb 100%);
  border-bottom: 1px solid var(--page-border);
}

html[data-theme="dark"] .home-hero {
  background:
    radial-gradient(circle at 78% 46%, rgba(104, 83, 202, 0.25), transparent 31rem),
    linear-gradient(145deg, #0d1438 0%, #111943 58%, #161e4e 100%);
}

.home-stars {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.34;
  background-image:
    radial-gradient(circle, #9c84f5 0 1.1px, transparent 1.6px),
    radial-gradient(circle, #7f87ac 0 0.8px, transparent 1.4px);
  background-position: 0 0, 38px 61px;
  background-size: 167px 167px, 223px 223px;
  mask-image: linear-gradient(90deg, transparent 0%, black 48%, black 100%);
}

html[data-theme="dark"] .home-stars {
  opacity: 0.58;
  background-image:
    radial-gradient(circle, #fff 0 1px, transparent 1.5px),
    radial-gradient(circle, #c7baf5 0 0.9px, transparent 1.4px);
}

.hero-copy-block {
  position: relative;
  z-index: 4;
  padding-block: 90px;
}

.hero-copy-block h1 {
  max-width: 700px;
  color: var(--page-text);
  font-size: clamp(3.2rem, 6.2vw, 5.9rem);
  text-wrap: balance;
}

body[data-page="home"] .gradient-text {
  background: linear-gradient(110deg, #7a5ddd 0%, #9c84f5 46%, #be8cc9 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

body[data-page="home"] .eyebrow {
  color: #765dcb;
}

body[data-page="home"] .eyebrow::before {
  background: #9c84f5;
  box-shadow: none;
}

.constellation-eyebrow::before {
  display: none;
}

.eyebrow-constellation {
  width: 34px;
  height: 20px;
  overflow: visible;
}

.eyebrow-constellation path {
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .72;
}

.eyebrow-constellation circle {
  fill: currentColor;
}

html[data-theme="dark"] body[data-page="home"] .eyebrow {
  color: #c7baf5;
}

.hero-copy-block .hero-copy {
  max-width: 470px;
  color: var(--page-muted);
  font-size: clamp(1.02rem, 1.65vw, 1.16rem);
}

body[data-page="home"] .button.primary {
  width: fit-content;
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #9c84f5, #765bcc);
  box-shadow: 0 16px 38px rgba(113, 83, 203, 0.2);
}

.universe-scene {
  position: absolute;
  top: 0;
  right: max(-130px, calc((100vw - 1320px) / 2));
  bottom: 0;
  z-index: 1;
  width: min(68vw, 940px);
  pointer-events: none;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(117, 93, 203, 0.16);
  border-radius: 50%;
}

html[data-theme="dark"] .orbit {
  border-color: rgba(199, 186, 245, 0.18);
}

.orbit-a { inset: 15% 1% 12% 7%; transform: rotate(-9deg); }
.orbit-b { inset: 28% 14% 26% 18%; transform: rotate(12deg); }
.orbit-c { inset: 6% 24% 7% 29%; transform: rotate(-20deg); }

.web-planet,
.row-planet {
  position: absolute;
  user-select: none;
  will-change: transform;
  animation: planet-float 7s ease-in-out infinite;
  filter: drop-shadow(0 20px 24px rgba(70, 54, 128, 0.13));
}

.planet-a { top: 15%; right: 2%; width: 290px; animation-delay: -1.5s; }
.planet-b { top: 41%; right: 29%; width: 205px; animation-delay: -4s; }
.planet-c { right: 5%; bottom: 4%; width: 180px; animation-delay: -2.4s; }
.planet-d { top: 10%; left: 19%; width: 118px; animation-delay: -5.2s; }
.planet-e { bottom: 13%; left: 8%; width: 126px; animation-delay: -3.2s; }
.planet-f { top: 5%; right: 38%; width: 88px; animation-delay: -6s; }

.visual-story {
  padding: clamp(90px, 12vw, 150px) 0;
  background: var(--page-bg);
}

.visual-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  align-items: center;
  gap: clamp(46px, 8vw, 110px);
}

.constellation-card {
  display: grid;
  min-height: 430px;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--page-border);
  border-radius: 42px;
  background:
    radial-gradient(circle at 68% 32%, rgba(156, 132, 245, .18), transparent 18rem),
    var(--page-surface);
}

.site-constellation {
  width: min(88%, 560px);
  overflow: visible;
}

.site-constellation path {
  stroke: #9c84f5;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 800;
  animation: draw-line 3.8s ease both;
}

.site-constellation circle {
  fill: #9c84f5;
}

.site-constellation circle:last-child {
  fill: #e1bc63;
}

.visual-story-copy h2,
.universe-band-copy h2 {
  margin-bottom: 18px;
  color: var(--page-text);
  font-size: clamp(2.25rem, 4.5vw, 4.15rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.visual-story-copy > p:last-child,
.universe-band-copy > p:last-child {
  color: var(--page-muted);
  font-size: 1.05rem;
}

.universe-band {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  padding: 120px 0 90px;
  background: var(--page-surface);
  border-block: 1px solid var(--page-border);
}

.universe-band-copy {
  position: relative;
  z-index: 2;
  text-align: center;
}

.universe-band-copy .eyebrow {
  justify-content: center;
}

.universe-band-copy h2 {
  margin-inline: auto;
}

.planet-row {
  position: absolute;
  right: 50%;
  bottom: -24px;
  display: flex;
  width: min(1680px, 148vw);
  align-items: flex-end;
  justify-content: space-between;
  transform: translateX(50%);
}

.row-planet {
  position: relative;
  width: clamp(92px, 9.5vw, 150px);
  flex: 0 0 auto;
}

.row-planet:nth-child(even) { transform: translateY(36px); }
.row-planet:nth-child(3n + 1) { animation-delay: -1s; }
.row-planet:nth-child(3n + 2) { animation-delay: -3s; }
.row-planet:nth-child(3n) { animation-delay: -5s; }

.privacy-strip {
  padding: 72px 0;
  background: var(--page-bg);
}

.privacy-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.privacy-strip h2 {
  margin-bottom: 8px;
  color: var(--page-text);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  letter-spacing: -0.035em;
}

.privacy-strip p {
  margin: 0;
  color: var(--page-muted);
}

.text-link {
  flex: 0 0 auto;
  color: #765dcb;
  font-weight: 600;
}

body[data-page="home"] .site-footer {
  color: var(--page-soft);
  background: var(--page-bg);
  border-color: var(--page-border);
}

body[data-page="home"] .footer-links a:hover {
  color: var(--page-text);
}

body[data-page="support"],
body[data-page="privacy"] {
  --text: #181828;
  --text-secondary: #5f6070;
  --text-tertiary: #8b8c99;
  --border: #e6e6ee;
  --border-bright: #dcdae8;
  --surface: #ffffff;
  --surface-strong: #f7f7fa;
  color: #181828;
  background: #ffffff;
}

body[data-page="support"] .site-header,
body[data-page="privacy"] .site-header {
  color: #181828;
  background: rgba(255, 255, 255, .92);
  border-color: #ededf2;
}

body[data-page="support"] .site-nav a,
body[data-page="privacy"] .site-nav a {
  color: #686977;
}

body[data-page="support"] .site-nav a:hover,
body[data-page="support"] .site-nav a[aria-current="page"],
body[data-page="privacy"] .site-nav a:hover,
body[data-page="privacy"] .site-nav a[aria-current="page"] {
  color: #181828;
  background: #f5f4f9;
  border-color: #ece9f3;
}

body[data-page="support"] .language-select,
body[data-page="privacy"] .language-select {
  color: #181828;
  background: #f7f7fa;
  border-color: #e6e6ee;
}

body[data-page="support"] .glass-card,
body[data-page="privacy"] .glass-card {
  border-color: #e5e5ed;
  background: #ffffff;
  box-shadow: 0 16px 48px rgba(33, 29, 59, .06);
  backdrop-filter: none;
}

body[data-page="support"] .faq-list details {
  border-color: #e7e7ee;
  background: #fafafe;
}

body[data-page="support"] .button,
body[data-page="privacy"] .button {
  color: #5744a3;
  border-color: #dfdaef;
  background: #f6f3fc;
  box-shadow: none;
}

body[data-page="support"] .contact-status,
body[data-page="privacy"] .contact-status {
  color: #725a25;
  border-color: #e7d6ad;
  background: #fffaf0;
}

body[data-page="support"] .site-footer,
body[data-page="privacy"] .site-footer {
  color: #8b8c99;
  border-color: #ececf1;
}

@keyframes planet-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

@media (max-width: 920px) {
  .home-hero {
    min-height: 900px;
    align-items: flex-start;
  }

  .hero-copy-block {
    padding-top: 90px;
    text-align: center;
  }

  .hero-copy-block h1,
  .hero-copy-block .hero-copy {
    margin-inline: auto;
  }

  .hero-copy-block .button.primary {
    margin-inline: auto;
  }

  .universe-scene {
    top: 360px;
    right: 50%;
    bottom: -70px;
    width: min(920px, 115vw);
    transform: translateX(50%);
  }

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

  .visual-story-copy {
    max-width: 620px;
    order: -1;
  }
}

@media (max-width: 760px) {
  .site-nav {
    flex-wrap: nowrap;
  }

  .home-hero {
    min-height: 820px;
  }

  .hero-copy-block {
    padding-top: 72px;
  }

  .hero-copy-block h1 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }

  .universe-scene {
    top: 355px;
    width: 790px;
  }

  .planet-a { right: 11%; width: 225px; }
  .planet-b { right: 37%; width: 160px; }
  .planet-c { right: 21%; width: 145px; }
  .planet-d { left: 24%; width: 90px; }
  .planet-e { left: 18%; width: 100px; }

  .constellation-card {
    min-height: 320px;
    border-radius: 30px;
  }

  .universe-band {
    min-height: 650px;
    padding-top: 90px;
  }

  .planet-row {
    bottom: 5px;
    width: 1120px;
  }

  .row-planet {
    width: 105px;
  }

  .privacy-strip-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 440px) {
  .brand { font-size: 1.2rem; }
  .language-select { width: 70px; padding-inline: 9px; }
  .theme-toggle { width: 40px; flex: 0 0 40px; }
  .hero-copy-block h1 { font-size: 2.75rem; }
  .hero-copy-block .hero-copy { max-width: 310px; }
  body[data-page="home"] .button.primary { width: fit-content; }
  .visual-story-copy h2,
  .universe-band-copy h2 { font-size: 2.35rem; }
}
