:root {
  --bg: #0A0C0E;
  --bg-raised: #0E1114;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --surface-hover: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #F5F2EC;
  --muted: rgba(245, 242, 236, 0.64);
  --faint: rgba(245, 242, 236, 0.42);
  --accent: #FF5237;
  --accent-strong: #FF7A52;
  --lime: #B5F14D;
  --amber: #FFC46B;
  --kangaroo: #C99064;
  --kangaroo-dark: #8A5A3D;
  --grid: rgba(255, 255, 255, 0.05);
  --radius: 8px;
  --radius-lg: 16px;
  --max-width: 1180px;
  --container-pad: clamp(20px, 4vw, 48px);
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.42);
  --shadow-md: 0 18px 44px rgba(0, 0, 0, 0.32);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(115deg, rgba(255, 82, 55, 0.07) 0%, transparent 44%),
    linear-gradient(0deg, #080A0C 0%, #0D1013 50%, #0A0C0E 100%);
  color: var(--text);
  font-family: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont,
    "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Noto Sans SC",
    "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.35) 62%, transparent 94%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.35) 62%, transparent 94%);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent-strong);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  background: #11151A;
  color: #FFFFFF;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 12px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9, 11, 13, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
}

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

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

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow:
    0 0 0 1px rgba(255, 82, 55, 0.42),
    0 10px 24px rgba(255, 82, 55, 0.18);
}

.brand:hover {
  color: #FFFFFF;
  text-decoration: none;
}

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

.nav-links a {
  display: inline-block;
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(245, 242, 236, 0.7);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.07);
  text-decoration: none;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 6px;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lang-switch:hover {
  border-color: rgba(255, 82, 55, 0.7);
  background: rgba(255, 82, 55, 0.1);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 9vw, 116px) 0 clamp(60px, 8vw, 104px);
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -12%;
  width: min(62vw, 820px);
  height: 130%;
  pointer-events: none;
  background: linear-gradient(
    124deg,
    transparent 0%,
    rgba(255, 82, 55, 0.10) 46%,
    rgba(255, 196, 107, 0.05) 70%,
    transparent 100%
  );
  clip-path: polygon(24% 0, 100% 0, 78% 100%, 0 100%);
  opacity: 0.9;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}

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

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--faint);
  font-size: 13px;
  font-weight: 800;
}

.hero-kicker::before {
  content: "";
  width: 5px;
  height: 14px;
  border-radius: 999px;
  background: var(--accent);
}

.soon-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 13px;
  border: 1px solid rgba(181, 241, 77, 0.34);
  border-radius: 999px;
  background: rgba(181, 241, 77, 0.09);
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
}

.soon-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
}

.hero h1 {
  margin: 20px 0 14px;
  color: #FFFFFF;
  font-size: clamp(44px, 6.3vw, 76px);
  font-weight: 850;
  line-height: 1.08;
}

.hero-sub {
  margin: 0 0 16px;
  color: var(--accent-strong);
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 800;
}

.hero-lead {
  margin: 0 0 30px;
  max-width: 35em;
  color: rgba(245, 242, 236, 0.66);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #FF5A3C 0%, #FF3E26 100%);
  color: #FFFFFF;
  box-shadow:
    0 16px 34px rgba(255, 82, 55, 0.28),
    0 4px 12px rgba(255, 82, 55, 0.18);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FF7A52 0%, #FF5237 100%);
  box-shadow:
    0 22px 44px rgba(255, 82, 55, 0.36),
    0 6px 16px rgba(255, 82, 55, 0.22);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line-strong);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.09);
  color: #FFFFFF;
}

.hero-media {
  position: relative;
  min-width: 0;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
}

.hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 620px;
  margin-inline: auto;
  filter:
    drop-shadow(0 36px 56px rgba(0, 0, 0, 0.5))
    drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
}

.hero-chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(15, 18, 21, 0.78);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-chip strong {
  color: var(--lime);
  font-size: 20px;
  font-weight: 850;
  line-height: 1;
}

.hero-chip span {
  color: rgba(245, 242, 236, 0.66);
  font-size: 12px;
  font-weight: 800;
}

.hero-chip--local {
  left: 2%;
  bottom: 7%;
}

.hero-chip--bpm {
  top: 9%;
  right: 1%;
}

.section {
  padding: clamp(68px, 9vw, 118px) 0;
}

.section-alt {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, transparent 44%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
  border-block: 1px solid rgba(255, 255, 255, 0.07);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 850;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

.section-title {
  margin: 0 0 14px;
  color: #FFFFFF;
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 850;
  line-height: 1.16;
}

.section-lead {
  margin: 0 0 40px;
  max-width: 680px;
  color: rgba(245, 242, 236, 0.64);
  font-size: 17px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head.center .section-lead {
  margin-inline: auto;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.pain-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 62%),
    var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.pain-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.pain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 82, 55, 0.4);
}

.pain-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 82, 55, 0.36);
  border-radius: 999px;
  background: rgba(255, 82, 55, 0.1);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 850;
}

.pain-card h3 {
  position: relative;
  margin: 0 0 10px;
  color: #FFFFFF;
  font-size: 22px;
  line-height: 1.3;
}

.pain-card p {
  position: relative;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.why-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 34px 24px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
}

.why-bridge-line {
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 850;
}

.why-next {
  margin: 0;
  color: var(--lime);
  font-size: 15px;
  font-weight: 800;
}

.why-down {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-top: 6px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.why-down:hover {
  border-color: var(--accent);
  transform: translateY(2px);
}

.why-down svg {
  width: 22px;
  height: 22px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step {
  position: relative;
  padding: 28px 26px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    var(--bg-raised);
  box-shadow: var(--shadow-md);
}

.step::before {
  content: "";
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: -13px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgba(255, 82, 55, 0.5),
    rgba(181, 241, 77, 0.5)
  );
}

.step:first-child::before {
  display: none;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(255, 82, 55, 0.12);
  border: 1px solid rgba(255, 82, 55, 0.4);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 850;
}

.step h3 {
  margin: 0 0 8px;
  color: #FFFFFF;
  font-size: 20px;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.showcase-list {
  position: relative;
  counter-reset: showcase-counter;
  display: grid;
  gap: clamp(62px, 8vw, 96px);
}

.showcase-list::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--line-strong) 6%,
    rgba(255, 82, 55, 0.34) 50%,
    var(--line-strong) 94%,
    transparent 100%
  );
}

.showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  counter-increment: showcase-counter;
  padding-left: 62px;
}

.showcase::before {
  content: counter(showcase-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 50%;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  transform: translateY(-50%);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: #0D1013;
  color: var(--lime);
  font-size: 11px;
  font-weight: 850;
  box-shadow: 0 0 0 5px rgba(9, 11, 13, 0.9);
}

.showcase:nth-child(even) .showcase-media {
  order: 2;
}

.showcase-media {
  width: 100%;
  max-width: 340px;
}

.showcase-page {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(245, 242, 236, 0.8);
  font-size: 12px;
  font-weight: 800;
}

.showcase-page::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.showcase-frame {
  position: relative;
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: linear-gradient(145deg, #303339 0%, #101216 48%, #1D2024 100%);
  box-shadow:
    var(--shadow-lg),
    inset 0 1px 1px rgba(255, 255, 255, 0.12);
}

.showcase-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.showcase--wide {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
}

.showcase-media--wide {
  max-width: 720px;
}

.showcase-media--pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.showcase-media--pair > .showcase-page {
  grid-column: 1 / -1;
}

.showcase-media--pair .showcase-frame {
  min-width: 0;
}

.showcase:nth-child(even) .showcase-media--pair {
  order: 0;
}

.showcase-wide {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: linear-gradient(145deg, #1B1E22, #0C0E11);
  box-shadow: var(--shadow-lg);
}

.showcase-wide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.showcase-wide img {
  width: 100%;
  height: auto;
}

.showcase-mascot {
  display: grid;
  place-items: center;
  aspect-ratio: 9 / 16;
  padding: 26px 18px;
  background: linear-gradient(145deg, rgba(201, 144, 100, 0.18), rgba(14, 17, 20, 0.4));
  border: 1px solid rgba(201, 144, 100, 0.3);
  border-radius: 18px;
}

.showcase-mascot img {
  width: 100%;
  max-width: 250px;
}

.showcase-media--eggs {
  max-width: 720px;
}

.eggs-stage {
  display: grid;
  grid-template-columns: minmax(64px, 0.7fr) minmax(0, 1.2fr) minmax(64px, 0.7fr);
  gap: 12px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    #0E1114;
  box-shadow: var(--shadow-lg);
}

.eggs-cell {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  padding: 10px;
  border: none;
  background: transparent;
  box-shadow: none;
}

.eggs-cell::before,
.eggs-ghost::before {
  content: "";
  position: absolute;
  inset: 4%;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  animation: egg-pulse 2.6s ease-in-out infinite;
}

.eggs-cell::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 82, 55, 0.92) 0%, rgba(255, 82, 55, 0.42) 38%, rgba(255, 82, 55, 0) 70%);
  box-shadow: 0 0 38px rgba(255, 82, 55, 0.34);
}

.eggs-ghost::before {
  background: radial-gradient(
    circle at 50% 50%,
    rgba(137, 141, 146, 0.66) 0%,
    rgba(137, 141, 146, 0.26) 38%,
    rgba(137, 141, 146, 0) 70%
  );
  filter: blur(1px) grayscale(1);
  opacity: 0.62;
}

.eggs-cell img,
.eggs-ghost img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.eggs-ghost img {
  filter: grayscale(1);
}

.eggs-ghost {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  padding: 16px 2px;
  opacity: 0.5;
}

@keyframes egg-pulse {
  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.eggs-ghost--left img {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 75%);
  mask-image: linear-gradient(to right, transparent 0%, #000 75%);
}

.eggs-ghost--right img {
  -webkit-mask-image: linear-gradient(to left, transparent 0%, #000 75%);
  mask-image: linear-gradient(to left, transparent 0%, #000 75%);
}

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

.showcase-point + .showcase-point {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px dashed rgba(255, 255, 255, 0.13);
}

.showcase-point h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  color: #FFFFFF;
  font-size: 22px;
  line-height: 1.3;
}

.showcase-point h3::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
}

.showcase-point p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin-inline: auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-item[open] {
  border-color: rgba(255, 82, 55, 0.46);
  background: rgba(255, 82, 55, 0.045);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 22px;
  cursor: pointer;
  list-style: none;
  color: #FFFFFF;
  font-weight: 750;
  font-size: 16px;
}

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

.faq-item summary svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  color: var(--accent-strong);
  transition: transform 0.22s ease;
}

.faq-item[open] summary svg {
  transform: rotate(180deg);
}

.faq-body {
  margin: 0;
  padding: 0 22px 20px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  color: var(--muted);
  font-size: 15px;
}

.faq-item[open] .faq-body {
  padding-top: 18px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 9vw, 116px) 0;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 82, 55, 0.08), transparent 42%),
    linear-gradient(0deg, rgba(181, 241, 77, 0.045), transparent 54%),
    #0A0C0E;
  text-align: center;
}

.cta-band h2 {
  position: relative;
  margin: 0 0 12px;
  color: #FFFFFF;
  font-size: clamp(32px, 4.6vw, 54px);
  font-weight: 850;
  line-height: 1.15;
}

.cta-band > .container > p {
  position: relative;
  margin: 0 0 24px;
  color: var(--muted);
}

.store-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 240px));
  gap: 26px;
  max-width: 560px;
  margin: 42px auto 0;
}

.store-card {
  padding: 26px 24px 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.store-qr {
  width: 184px;
  aspect-ratio: 1;
  margin-inline: auto;
  padding: 9px;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
}

.store-label {
  margin: 16px 0 8px;
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 850;
}

.store-status {
  display: inline-block;
  padding: 5px 11px;
  border: 1px solid rgba(181, 241, 77, 0.28);
  border-radius: 999px;
  background: rgba(181, 241, 77, 0.08);
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
}

.cta-links {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 38px;
  font-weight: 750;
}

.cta-links a,
.footer-links a {
  color: rgba(245, 242, 236, 0.68);
  text-decoration: none;
}

.cta-links a:hover,
.footer-links a:hover {
  color: var(--accent-strong);
  text-decoration: none;
}

.site-footer {
  padding: 34px 0;
  background: #080A0C;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-meta {
  margin: 0;
  color: var(--faint);
  font-size: 14px;
}

.footer-icp {
  margin: 2px 0 0;
  font-size: 13px;
}

.footer-icp a {
  color: var(--faint);
  text-decoration: none;
}

.footer-icp a:hover {
  color: var(--accent-strong);
}

.legal-header {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0 20px;
}

.legal-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 82, 55, 0.5), transparent);
}

.legal-title {
  margin: 14px 0 10px;
  color: #FFFFFF;
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 850;
  line-height: 1.1;
}

.legal-meta {
  margin: 0 0 4px;
  color: var(--faint);
  font-size: 14px;
}

.legal-body {
  max-width: 860px;
  margin-inline: auto;
  padding-bottom: 96px;
}

.legal-body h2 {
  margin: 52px 0 16px;
  padding-left: 14px;
  border-left: 4px solid var(--accent);
  color: #FFFFFF;
  font-size: 28px;
  line-height: 1.3;
}

.legal-body h3 {
  margin: 32px 0 10px;
  color: #FFFFFF;
  font-size: 18px;
}

.legal-body p,
.legal-body ul,
.legal-body ol {
  color: rgba(245, 242, 236, 0.66);
}

.legal-body p {
  margin: 0 0 14px;
}

.legal-body ul,
.legal-body ol {
  margin: 0 0 14px;
  padding-left: 22px;
}

.legal-body li {
  margin: 7px 0;
}

.legal-body strong {
  color: var(--text);
}

.legal-body table {
  width: 100%;
  margin: 18px 0 26px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius);
  overflow: hidden;
}

.legal-body th,
.legal-body td {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  text-align: left;
  vertical-align: top;
  color: rgba(245, 242, 236, 0.68);
}

.legal-body th {
  background: rgba(255, 82, 55, 0.09);
  color: #FFFFFF;
  font-weight: 750;
}

.legal-contact {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-contact p {
  color: var(--text);
}

.not-found {
  display: grid;
  place-items: center;
  min-height: 70vh;
  padding: 48px 0;
  text-align: center;
}

.not-found h1 {
  color: #FFFFFF;
  font-size: clamp(40px, 7vw, 68px);
}

.not-found p {
  color: var(--muted);
}

@media (max-width: 960px) {
  .hero-grid,
  .showcase-list::before,
  .showcase::before {
    display: none;
  }

  .hero {
    padding-top: 56px;
  }

  .hero::before {
    opacity: 0.55;
  }

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

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

  .hero-media {
    max-width: 560px;
    margin-inline: auto;
  }

  .showcase {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-left: 0;
  }

  .showcase:nth-child(even) .showcase-media {
    order: 0;
  }

  .showcase:nth-child(even) .showcase-media--pair {
    order: 0;
  }

  .showcase-media {
    max-width: 300px;
    margin-inline: auto;
  }

  .showcase-media--wide,
  .showcase-media--eggs {
    max-width: min(640px, 100%);
  }

  .showcase-copy {
    margin-inline: auto;
    text-align: left;
  }

  .steps {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .step::before {
    display: none;
  }

  .why-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .pain-card {
    min-height: 200px;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  html.js .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    background: rgba(13, 16, 19, 0.96);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(18px);
  }

  html.js .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 14px;
  }

  .lang-switch {
    margin: 2px 0 0;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 56px 0;
  }

  .hero h1 {
    font-size: 38px;
  }

  .section-title {
    font-size: 30px;
  }

  .showcase-list {
    gap: 48px;
  }

  .showcase-point h3 {
    font-size: 20px;
  }

  .hero-chip {
    padding: 8px 11px;
  }

  .hero-chip strong {
    font-size: 16px;
  }

  .hero-chip span {
    font-size: 11px;
  }

  .eggs-stage {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
  }

  .eggs-cell {
    padding: 6px;
  }

  .store-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .legal-body table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
  }
}

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

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

  html.js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
