:root {
  --bg: #faf3f9;
  --bg-soft: #f3ecfb;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --text: #3f4350;
  --muted: #8f8b9c;
  --primary: #6f3cc0;
  --primary-strong: #783ac1;
  --primary-soft: #955ad1;
  --border: #e9e4ee;
  --line: rgba(111, 60, 192, 0.12);
  --chip: #f4ecff;
  --success: #6bb96b;
  --info: #5b8cff;
  --shadow-sm: 0 12px 26px rgba(111, 60, 192, 0.12);
  --shadow-lg: 0 24px 50px rgba(111, 60, 192, 0.2);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

body[data-theme='dark'] {
  --bg: #151320;
  --bg-soft: #1e1b2e;
  --surface: rgba(30, 27, 46, 0.82);
  --surface-strong: #1e1b2e;
  --text: #ede7f6;
  --muted: #b6b0c8;
  --primary: #9e7dff;
  --primary-strong: #b59dff;
  --primary-soft: #6f3cc0;
  --border: #2a263c;
  --line: rgba(182, 176, 200, 0.2);
  --chip: #2a263c;
  --success: #8daa6d;
  --info: #8fb2ff;
  --shadow-sm: 0 16px 30px rgba(0, 0, 0, 0.34);
  --shadow-lg: 0 26px 58px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at 5% 0%, var(--bg-soft) 0%, var(--bg) 55%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  transition: background 260ms ease, color 260ms ease;
}

.aurora {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -3;
}

.aurora-a {
  width: 420px;
  height: 420px;
  left: -150px;
  top: -140px;
  background: rgba(149, 90, 209, 0.32);
}

.aurora-b {
  width: 520px;
  height: 520px;
  right: -220px;
  top: 320px;
  background: rgba(111, 60, 192, 0.3);
}

.grain {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.42;
  pointer-events: none;
  z-index: -2;
}

.site-header,
.section,
.site-footer,
.ticker {
  width: min(1160px, calc(100vw - 2.2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  align-items: center;
  gap: 0.9rem;
  backdrop-filter: blur(8px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 1.18rem;
}

.brand-mark {
  width: 1.65rem;
  height: 1.65rem;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(111, 60, 192, 0.35));
}

.main-nav {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  padding: 0 0.4rem;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.main-nav::-webkit-scrollbar {
  display: none;
}

.main-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.86rem;
  opacity: 0.95;
  transition: color 180ms ease;
  flex: 0 0 auto;
}

.main-nav a:hover {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: nowrap;
  margin-left: clamp(0.35rem, 1.2vw, 1rem);
  justify-self: end;
}

.header-actions > * {
  flex: 0 0 auto;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
  font-size: 0.81rem;
  font-weight: 600;
  padding: 0.48rem 0.72rem;
  cursor: pointer;
  white-space: nowrap;
}

.theme-toggle-dot {
  width: 0.66rem;
  height: 0.66rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--primary), var(--primary-soft));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.8rem 1.26rem;
  font-size: 0.91rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(145deg, var(--primary-strong), var(--primary-soft));
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-small {
  font-size: 0.81rem;
  padding: 0.52rem 0.92rem;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
  box-shadow: none;
}

.btn-outline {
  background: linear-gradient(150deg, rgba(149, 90, 209, 0.18), rgba(149, 90, 209, 0.06));
  border-color: rgba(149, 90, 209, 0.3);
  color: var(--text);
  box-shadow: none;
}

.section {
  padding: 4.8rem 0;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.6rem;
  min-height: calc(100vh - 110px);
}

.eyebrow {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.77rem;
  font-weight: 700;
  color: var(--primary);
}

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

h1 {
  font-size: clamp(2.2rem, 5.6vw, 4.25rem);
  line-height: 1.05;
  font-weight: 900;
}

h1 span {
  color: var(--primary);
}

.lead {
  margin-top: 1.2rem;
  max-width: 56ch;
  font-size: 1.02rem;
  line-height: 1.74;
  color: var(--muted);
}

.launch-countdown {
  margin-top: 1.35rem;
  max-width: 720px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(149, 90, 209, 0.16), var(--surface));
  box-shadow: var(--shadow-sm);
  padding: 1rem 1rem 1.05rem;
}

.launch-countdown-kicker {
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-countdown-head {
  margin-top: 0.45rem;
  display: grid;
  gap: 0.3rem;
}

.launch-countdown-date {
  color: var(--text);
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  font-weight: 800;
  line-height: 1.1;
}

.launch-countdown-status {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.launch-countdown-grid {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
}

.launch-countdown-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  padding: 0.78rem 0.65rem 0.72rem;
  text-align: center;
}

.launch-countdown-value {
  display: block;
  color: var(--text);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1;
}

.launch-countdown-label {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.launch-countdown[data-state='live'] {
  background: linear-gradient(160deg, rgba(107, 185, 107, 0.16), var(--surface));
}

.launch-countdown[data-state='live'] .launch-countdown-kicker {
  color: var(--success);
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.hero-badges {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.badge {
  border: 1px solid var(--border);
  background: var(--chip);
  color: var(--text);
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  font-size: 0.76rem;
  font-weight: 600;
}

.hero-stage {
  position: relative;
  min-height: 640px;
  transform-style: preserve-3d;
}

.phone-card {
  position: absolute;
  width: clamp(180px, 33vw, 255px);
  aspect-ratio: 390 / 844;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-strong);
  box-shadow: var(--shadow-lg);
  transition: transform 260ms ease;
}

.phone-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-main {
  left: 50%;
  top: 2%;
  transform: translateX(-50%) rotate(0deg);
  z-index: 3;
  animation: float-main 6s ease-in-out infinite;
}

.phone-left {
  left: 10%;
  top: 24%;
  transform: rotate(-9deg);
  z-index: 2;
  animation: float-left 7.2s ease-in-out infinite;
}

.phone-right {
  right: 10%;
  top: 22%;
  transform: rotate(9deg);
  z-index: 2;
  animation: float-right 7s ease-in-out infinite;
}

.phone-chip {
  position: absolute;
  left: 0.7rem;
  bottom: 0.7rem;
  border-radius: 999px;
  padding: 0.33rem 0.62rem;
  background: rgba(17, 15, 28, 0.62);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

@keyframes float-main {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotate(0deg);
  }
  50% {
    transform: translateX(-50%) translateY(-10px) rotate(1deg);
  }
}

@keyframes float-left {
  0%,
  100% {
    transform: translateY(0) rotate(-9deg);
  }
  50% {
    transform: translateY(-10px) rotate(-7deg);
  }
}

@keyframes float-right {
  0%,
  100% {
    transform: translateY(0) rotate(9deg);
  }
  50% {
    transform: translateY(-8px) rotate(7deg);
  }
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.84rem 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  animation: scroll-track 28s linear infinite;
}

@keyframes scroll-track {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section-head {
  margin-bottom: 1.6rem;
}

.section-head h2 {
  font-size: clamp(1.65rem, 3.1vw, 2.8rem);
  line-height: 1.15;
  max-width: 26ch;
}

.section-note {
  margin-top: 0.65rem;
  max-width: 56ch;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.journey-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(149, 90, 209, 0.13), var(--surface));
  box-shadow: var(--shadow-sm);
  padding: 1.2rem;
}

.journey-step {
  display: inline-flex;
  margin-bottom: 0.62rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--chip);
  color: var(--primary);
  padding: 0.28rem 0.62rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.journey-card h3 {
  font-size: 1.14rem;
}

.journey-card p {
  margin-top: 0.45rem;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.9rem;
}

.journey-list {
  margin: 0.9rem 0 0;
  padding-left: 1.08rem;
  display: grid;
  gap: 0.5rem;
}

.journey-list li {
  color: var(--text);
  line-height: 1.5;
  font-size: 0.88rem;
}

.assurance-strip {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.assurance-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 0.95rem 1rem;
}

.assurance-item h3 {
  font-size: 0.96rem;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.assurance-item p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.86rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.proof-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(165deg, rgba(149, 90, 209, 0.2), var(--surface));
  box-shadow: var(--shadow-sm);
  padding: 1.18rem;
}

.proof-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.45rem;
}

.proof-card p {
  color: var(--muted);
  line-height: 1.62;
  font-size: 0.89rem;
}

.proof-chip {
  display: inline-flex;
  margin-top: 0.8rem;
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--chip);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.section-plus {
  padding-top: 2.4rem;
}

.plus-shell {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(214, 170, 90, 0.16), rgba(149, 90, 209, 0.08), var(--surface));
  box-shadow: var(--shadow-lg);
  padding: clamp(1.1rem, 2.7vw, 1.8rem);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
}

.plus-shell::before {
  content: '';
  position: absolute;
  inset: auto auto -90px -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 170, 90, 0.26), rgba(214, 170, 90, 0));
  z-index: -1;
}

.plus-shell::after {
  content: '';
  position: absolute;
  inset: -90px -50px auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 76, 214, 0.22), rgba(125, 76, 214, 0));
  z-index: -1;
}

.plus-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.plus-kicker {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(214, 170, 90, 0.34);
  color: #8a6516;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(112, 74, 29, 0.08);
}

.plus-copy p {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.74;
  max-width: 52ch;
  margin: 0;
}

.plus-tags {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.plus-tag {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(214, 170, 90, 0.28);
  background: rgba(255, 248, 233, 0.72);
  color: #7f5a13;
  padding: 0.42rem 0.72rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.plus-note {
  margin-top: 1.1rem;
  max-width: 48ch;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(214, 170, 90, 0.22);
  background: rgba(255, 255, 255, 0.58);
  color: var(--text);
  line-height: 1.62;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.plus-note strong {
  color: var(--primary-strong);
}

body[data-theme='dark'] .plus-tag {
  background: rgba(53, 43, 22, 0.72);
  color: #f2d18a;
  border-color: rgba(242, 209, 138, 0.2);
}

.plus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.plus-card {
  position: relative;
  min-height: 180px;
  border: 1px solid rgba(125, 76, 214, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 245, 255, 0.96)),
    var(--surface-strong);
  box-shadow:
    0 18px 38px rgba(63, 41, 112, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  padding: 1.05rem 1.05rem 1rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.plus-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 22px 46px rgba(63, 41, 112, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  border-color: rgba(125, 76, 214, 0.26);
}

.plus-card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(125, 76, 214, 0.2), rgba(214, 170, 90, 0.24));
  color: var(--primary-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.plus-card h3 {
  font-size: 1.04rem;
  margin-bottom: 0.45rem;
}

.plus-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.plus-card-soon {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.92), rgba(250, 245, 255, 0.98)),
    var(--surface-strong);
  border-color: rgba(214, 170, 90, 0.22);
}

.plus-card-soon .plus-card-index {
  background: linear-gradient(135deg, rgba(214, 170, 90, 0.28), rgba(125, 76, 214, 0.18));
}

body[data-theme='dark'] .plus-shell {
  background: linear-gradient(145deg, rgba(214, 170, 90, 0.1), rgba(149, 90, 209, 0.14), rgba(22, 17, 37, 0.94));
}

body[data-theme='dark'] .plus-kicker {
  background: rgba(35, 28, 56, 0.78);
  color: #f2d18a;
  border-color: rgba(242, 209, 138, 0.18);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

body[data-theme='dark'] .plus-note {
  background: rgba(27, 21, 43, 0.78);
  border-color: rgba(242, 209, 138, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

body[data-theme='dark'] .plus-card {
  border-color: rgba(125, 76, 214, 0.18);
  background:
    linear-gradient(180deg, rgba(31, 24, 50, 0.96), rgba(25, 20, 42, 0.98)),
    var(--surface-strong);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

body[data-theme='dark'] .plus-card:hover {
  border-color: rgba(242, 209, 138, 0.18);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body[data-theme='dark'] .plus-card-soon {
  border-color: rgba(242, 209, 138, 0.16);
  background:
    linear-gradient(180deg, rgba(38, 29, 52, 0.98), rgba(25, 20, 42, 0.98)),
    var(--surface-strong);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.partner-subhead {
  margin-top: 1.8rem;
}

.partner-topic {
  margin-top: 0.9rem;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.partner-positioning {
  margin-top: 0.9rem;
  border: 1px solid var(--line);
  background: var(--chip);
  border-radius: 12px;
  padding: 0.55rem 0.62rem;
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 600;
}

.partner-card {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(170deg, rgba(149, 90, 209, 0.16), var(--surface));
  box-shadow: var(--shadow-sm);
  padding: 1.15rem;
}

.partner-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.1rem;
}

.partner-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
  font-size: 0.9rem;
}

.partner-chip {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--chip);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.partner-card ul {
  margin: 0.85rem 0 0;
  padding-left: 1.05rem;
  display: grid;
  gap: 0.5rem;
}

.partner-card li {
  color: var(--text);
  line-height: 1.5;
  font-size: 0.87rem;
}

.partner-points {
  margin: 0.2rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.partner-points li {
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-size: 0.8rem;
  line-height: 1.35;
}

.partner-positioning {
  margin-top: auto;
}

.partner-cta {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(149, 90, 209, 0.11), var(--surface));
  box-shadow: var(--shadow-sm);
  padding: 1rem 1.05rem;
}

.partner-cta p {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
}

.partner-usage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.partner-usage {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(149, 90, 209, 0.14), var(--surface));
  box-shadow: var(--shadow-sm);
  padding: 1rem;
}

.partner-usage h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.partner-usage p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.58;
}

.partner-model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.partner-model {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(170deg, var(--surface-strong) 0%, var(--surface) 100%);
  box-shadow: var(--shadow-sm);
  padding: 1.1rem;
}

.partner-model h3 {
  font-size: 1.02rem;
  margin-bottom: 0.42rem;
}

.partner-model p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.58;
}

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

.feature-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.feature-panel-accent {
  background: linear-gradient(160deg, rgba(149, 90, 209, 0.25), var(--surface));
}

.feature-panel h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.feature-panel ul {
  margin: 0;
  padding-left: 1.05rem;
  display: grid;
  gap: 0.62rem;
}

.feature-panel li {
  color: var(--muted);
  line-height: 1.56;
  font-size: 0.92rem;
}

.concern-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.concern {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.concern-hint {
  margin: -0.3rem 0 0.9rem;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.concern summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.98rem;
  font-weight: 700;
}

.concern summary::after {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--primary);
  font-size: 0.95rem;
  line-height: 1;
  flex: 0 0 auto;
}

.concern[open] summary::after {
  content: '−';
}

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

.concern p {
  margin-top: 0.6rem;
  color: var(--muted);
  line-height: 1.63;
  font-size: 0.9rem;
}

.section-expert {
  padding-top: 2.2rem;
}

.expert-shell {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(155deg, rgba(149, 90, 209, 0.18), var(--surface));
  box-shadow: var(--shadow-lg);
  padding: clamp(1.1rem, 2.5vw, 1.8rem);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1rem;
}

.expert-copy p {
  color: var(--text);
  line-height: 1.68;
  font-size: 0.95rem;
  max-width: 58ch;
}

.expert-actions {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

.expert-note {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.expert-points {
  display: grid;
  gap: 0.65rem;
}

.expert-point {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  padding: 0.88rem 0.92rem;
}

.expert-point h3 {
  font-size: 0.96rem;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.expert-point p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.cta-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(1.2rem, 3vw, 2rem);
  background: linear-gradient(170deg, rgba(149, 90, 209, 0.14), var(--surface-strong) 0%, var(--surface) 100%);
  box-shadow: var(--shadow-lg);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -70px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(149, 90, 209, 0.18), rgba(149, 90, 209, 0));
  pointer-events: none;
}

.cta-card::after {
  content: '';
  position: absolute;
  left: -70px;
  bottom: -120px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 170, 90, 0.18), rgba(214, 170, 90, 0));
  pointer-events: none;
}

.cta-card h2 {
  font-size: clamp(1.58rem, 3vw, 2.7rem);
  line-height: 1.15;
  max-width: 23ch;
}

.cta-card p {
  margin-top: 0.65rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 62ch;
}

.cta-lead {
  position: relative;
  z-index: 1;
}

.cta-highlights {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.cta-highlight {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  padding: 0.88rem 0.92rem;
}

.cta-highlight strong {
  display: block;
  color: var(--text);
  font-size: 0.94rem;
  margin-bottom: 0.24rem;
}

.cta-highlight span {
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.5;
}

.cta-meta {
  position: relative;
  z-index: 1;
  margin-top: 0.95rem;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.cta-form {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field label {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.consent-field {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1rem 1fr;
  align-items: start;
  gap: 0.52rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  padding: 0.66rem 0.72rem;
}

.consent-field input[type='checkbox'] {
  width: 1rem;
  height: 1rem;
  margin: 0.04rem 0 0;
  accent-color: var(--primary);
}

.consent-field label {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.cta-form input {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-strong);
  color: var(--text);
  padding: 0.78rem 0.9rem;
  font-family: inherit;
  font-size: 0.91rem;
}

.cta-form input::placeholder {
  color: var(--muted);
}

.cta-form input:focus {
  outline: 2px solid rgba(149, 90, 209, 0.24);
  border-color: var(--primary);
}

.cta-form .btn {
  grid-column: 1 / -1;
  margin-top: 0.15rem;
}

.cta-form .btn[disabled] {
  transform: none;
  box-shadow: var(--shadow-sm);
  opacity: 0.74;
  cursor: not-allowed;
}

.cta-status {
  margin-top: 0.6rem;
  min-height: 1.4rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.cta-status[data-state='success'] {
  color: var(--success);
}

.cta-status[data-state='error'] {
  color: #d35e7f;
}

body[data-theme='dark'] .partner-card {
  background: linear-gradient(170deg, rgba(149, 90, 209, 0.14), rgba(23, 18, 37, 0.98));
}

body[data-theme='dark'] .partner-points li {
  background: rgba(28, 22, 45, 0.78);
}

body[data-theme='dark'] .partner-cta {
  background: linear-gradient(160deg, rgba(149, 90, 209, 0.14), rgba(23, 18, 37, 0.98));
}

body[data-theme='dark'] .cta-highlight {
  background: rgba(27, 21, 43, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.site-footer {
  padding: 0.8rem 0 1.6rem;
  color: var(--muted);
  font-size: 0.87rem;
}

.footer-shell {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(170deg, rgba(149, 90, 209, 0.1), var(--surface));
  box-shadow: var(--shadow-sm);
  padding: clamp(1.15rem, 2.8vw, 1.8rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 1rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-mark {
  width: 2.15rem;
  height: 2.15rem;
  object-fit: contain;
  border-radius: 14px;
}

.footer-title {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin: 0;
}

.footer-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 52ch;
}

.footer-badge {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 0.1rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--chip);
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.footer-links {
  display: grid;
  gap: 0.48rem;
}

.footer-contact-stack {
  display: grid;
  gap: 0.72rem;
}

.footer-contact-card {
  display: grid;
  gap: 0.22rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  color: var(--text);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.footer-contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(125, 76, 214, 0.26);
  box-shadow:
    0 16px 30px rgba(63, 41, 112, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.footer-contact-card strong {
  font-size: 0.96rem;
  line-height: 1.4;
}

.footer-contact-label {
  color: var(--primary);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links a,
.footer-bottom-links a {
  color: var(--text);
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-bottom-links a:hover {
  color: var(--primary);
}

.footer-legal-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.section-legal {
  padding-top: 2rem;
}

.legal-grid {
  margin-top: 0;
}

.footer-legal-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  padding: 0.95rem 1rem;
}

.legal-card {
  display: grid;
  gap: 0.72rem;
}

.footer-copy a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}

.footer-copy a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 1rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

body[data-theme='dark'] .footer-shell {
  background: linear-gradient(170deg, rgba(149, 90, 209, 0.12), rgba(22, 17, 37, 0.98));
}

body[data-theme='dark'] .footer-legal-card {
  background: rgba(27, 21, 43, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

body[data-theme='dark'] .footer-contact-card {
  background: rgba(27, 21, 43, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

body[data-theme='dark'] .footer-contact-card:hover {
  border-color: rgba(242, 209, 138, 0.16);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1080px) {
  .header-actions {
    gap: 0.42rem;
  }

  .theme-toggle {
    font-size: 0.76rem;
    padding: 0.42rem 0.6rem;
  }

  .btn-small {
    font-size: 0.76rem;
    padding: 0.46rem 0.74rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 1.8rem;
  }

  .partner-usage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-model-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stage {
    min-height: 560px;
    width: min(580px, 100%);
    margin: 0 auto;
  }

  .launch-countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .assurance-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid,
  .footer-legal-grid {
    grid-template-columns: 1fr;
  }

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

  .plus-shell {
    grid-template-columns: 1fr;
  }

  .expert-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .main-nav {
    display: none;
  }

  .feature-layout,
  .concern-grid,
  .journey-grid,
  .partner-grid,
  .partner-usage-grid,
  .partner-model-grid,
  .plus-grid,
  .assurance-strip,
  .proof-grid,
  .expert-points {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 470px;
  }

  .cta-highlights {
    grid-template-columns: 1fr;
  }

  .partner-cta {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .phone-main {
    top: 0;
  }

  .phone-left {
    left: 2%;
    top: 23%;
  }

  .phone-right {
    right: 2%;
    top: 23%;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-top: 0.8rem;
  }

  .btn-small {
    display: none;
  }

  .theme-toggle {
    font-size: 0;
    padding: 0.5rem;
    min-width: 2rem;
    justify-content: center;
  }

  .section {
    padding: 3.4rem 0;
  }

  .hero-stage {
    min-height: 450px;
    margin-bottom: 0.38rem;
  }

  .launch-countdown {
    padding: 0.9rem;
  }

  .launch-countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .phone-card {
    width: 168px;
    border-radius: 20px;
  }

  .phone-left {
    left: 0;
    top: 22%;
  }

  .phone-right {
    right: 0;
    top: 22%;
  }

  .ticker-track {
    gap: 1.1rem;
    font-size: 0.73rem;
  }

  .ticker {
    margin-top: 0.2rem;
  }

  .cta-form {
    grid-template-columns: 1fr;
  }

  .cta-form input,
  .cta-form .btn {
    width: 100%;
  }
}
