@font-face {
  font-family: "NunitoLocal";
  src: url("./Nunito/Nunito-VariableFont_wght.ttf")
    format("truetype-variations");
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "NunitoLocal";
  src: url("./Nunito/Nunito-Italic-VariableFont_wght.ttf")
    format("truetype-variations");
  font-weight: 200 1000;
  font-style: italic;
  font-display: swap;
}

:root {
  --bg: #ece7e0;
  --bg-2: #f5eee6;
  --surface: rgba(248, 241, 232, 0.86);
  --surface-strong: #fcf7f0;
  --surface-muted: rgba(242, 231, 214, 0.88);
  --line: rgba(27, 32, 36, 0.08);
  --line-strong: rgba(27, 32, 36, 0.16);
  --text: #1b2024;
  --text-soft: #514343;
  --muted: #6f6d68;
  --accent: #bb3300;
  --accent-2: #ef6b21;
  --gold: #f7a737;
  --blue: #0288fe;
  --green: #17b15e;
  --blind-top: #f65112;
  --blind-bottom: #951f00;
  --blind-card: #8a2408;
  --shadow-lg: 0 34px 80px rgba(27, 32, 36, 0.12);
  --shadow-md: 0 20px 42px rgba(27, 32, 36, 0.1);
  --shadow-sm: 0 14px 28px rgba(27, 32, 36, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --header-offset: 106px;
  --container: 1240px;
  --max-copy: 62ch;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    "NunitoLocal",
    "Nunito",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at top left,
      rgba(187, 51, 0, 0.12),
      transparent 28%
    ),
    radial-gradient(
      circle at top center,
      rgba(247, 167, 55, 0.14),
      transparent 34%
    ),
    radial-gradient(
      circle at top right,
      rgba(2, 136, 254, 0.07),
      transparent 24%
    ),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  overflow-x: hidden;
}

body.page-legal {
  background:
    radial-gradient(
      circle at top left,
      rgba(187, 51, 0, 0.08),
      transparent 24%
    ),
    linear-gradient(180deg, #f4ede5, #e9e2d9);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.page-glow {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(84px);
  opacity: 0.4;
}

.page-glow-left {
  left: -12rem;
  top: -8rem;
  width: 32rem;
  height: 32rem;
  background: rgba(187, 51, 0, 0.16);
}

.page-glow-right {
  right: -12rem;
  top: 10rem;
  width: 34rem;
  height: 34rem;
  background: rgba(239, 107, 33, 0.14);
}

.page-glow-bottom {
  right: 10%;
  bottom: -16rem;
  width: 28rem;
  height: 28rem;
  background: rgba(27, 32, 36, 0.08);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 18px 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: transparent;
  border-bottom: 0;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 34px rgba(27, 32, 36, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 10px 18px rgba(27, 32, 36, 0.08);
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-word {
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-caption {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.top-nav,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-nav a,
.mobile-nav a,
.nav-link {
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.top-nav a:hover,
.top-nav a.is-current,
.mobile-nav a.is-current,
.nav-link:hover {
  color: var(--text);
}

.top-nav a:hover {
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.button-accent {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 28px rgba(187, 51, 0, 0.24);
}

.button-dark {
  color: #fff;
  background: #1b2024;
  box-shadow: 0 14px 28px rgba(27, 32, 36, 0.18);
}

.button-glass {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(27, 32, 36, 0.12);
}

.button-soft {
  color: var(--accent);
  background: rgba(255, 244, 236, 0.96);
  border-color: rgba(187, 51, 0, 0.12);
}

.mobile-nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  padding: 10px;
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  width: min(calc(100% - 32px), var(--container));
  margin: 10px auto 0;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(27, 32, 36, 0.08);
  box-shadow: var(--shadow-md);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
}

main,
footer,
section {
  position: relative;
  z-index: 1;
}

.hero,
.page-hero {
  padding: 56px 0 28px;
}

.hero-grid,
.page-hero-grid,
.story-grid,
.detail-grid,
.footer-grid,
.platinum-grid,
.legal-grid {
  display: grid;
  gap: 32px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(480px, 0.96fr);
  align-items: center;
}

.page-hero-grid,
.platinum-grid,
.legal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.eyebrow,
.section-label,
.page-label,
.price-kicker,
.card-kicker,
.footnote-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.hero h1,
.page-hero h1,
.section-copy h2,
.story-copy h2,
.section-header h2,
.download-copy h2,
.footer-brand h2,
.faq-hero h2,
.legal-copy h2,
.legal-section h3,
.plan-card h3,
.price-card h3,
.support-card h3,
.info-card h3,
.app-card h3,
.device-caption strong {
  margin: 14px 0 0;
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  max-width: 11ch;
}

.section-copy h2,
.story-copy h2,
.section-header h2,
.download-copy h2,
.faq-hero h2,
.legal-copy h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.7rem);
}

.hero p,
.page-hero p,
.section-copy p,
.story-copy p,
.section-header p,
.detail-copy p,
.plan-card p,
.price-card p,
.support-card p,
.info-card p,
.faq-lead,
.download-copy p,
.legal-copy p,
.legal-section p,
.footer-brand p,
.stack-caption,
.gallery-caption,
.step-caption,
.mini-note {
  color: var(--muted);
  line-height: 1.74;
  font-size: 1.01rem;
}

.hero-copy p,
.page-hero-copy p,
.section-copy p,
.story-copy p,
.legal-copy p {
  max-width: var(--max-copy);
}

.hero-actions,
.page-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-metrics,
.quick-facts,
.plan-points,
.stats-grid,
.support-grid,
.footer-link-grid,
.legal-list,
.price-list,
.detail-points,
.faq-clusters {
  display: grid;
  gap: 14px;
}

.hero-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.metric-pill,
.info-card,
.section-shell,
.story-shell,
.plan-card,
.price-card,
.support-card,
.faq-card,
.legal-section,
.download-shell,
.sample-card,
.app-card,
.step-card,
.gallery-shell,
.footer-brand,
.footer-links {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.metric-pill,
.info-card,
.plan-card,
.price-card,
.support-card,
.faq-card,
.step-card,
.gallery-shell,
.sample-card,
.app-card {
  border-radius: var(--radius-md);
  padding: 18px;
}

.section-shell,
.story-shell,
.download-shell,
.footer-brand,
.footer-links,
.legal-section {
  border-radius: var(--radius-lg);
  padding: 28px;
}

.metric-pill strong,
.info-card h3,
.support-card h3,
.plan-card h3,
.price-card h3,
.faq-card summary,
.step-card strong,
.device-caption strong {
  display: block;
  font-size: 1.02rem;
  color: var(--text);
}

.hero-visual {
  position: relative;
}

.hero-stage {
  position: relative;
  min-height: 660px;
}

.phone-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.phone-card,
.sample-badge,
.chapter-nav,
.chapter-shell,
.chapter-section,
.gallery-dots button,
.rail-item,
.blind-shell,
.blind-card {
  border: 1px solid var(--line);
}

.phone-card {
  position: absolute;
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 0 0 10px rgba(17, 17, 17, 0.98),
    0 0 0 11px rgba(255, 255, 255, 0.06),
    var(--shadow-lg);
}

.phone-card::before,
.sequence-device::before,
.device-frame:not(.wide)::before {
  content: none;
}

.phone-card::after,
.sequence-device::after,
.device-frame:not(.wide)::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 1.2876%;
  transform: translateX(-50%);
  width: 40.155%;
  height: 3.9342%;
  z-index: 4;
  pointer-events: none;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.98);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08),
    0 6px 14px rgba(0, 0, 0, 0.18);
}

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

.phone-card-main {
  left: 0;
  top: 18px;
  width: 45%;
  aspect-ratio: 645 / 1398;
  transform: rotate(-6deg);
}

.phone-card-secondary {
  right: 7%;
  top: 0;
  width: 35%;
  aspect-ratio: 645 / 1398;
  transform: rotate(8deg);
}

.sample-badge {
  position: absolute;
  z-index: 2;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
  padding: 14px 16px;
}

.sample-badge strong {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.sample-badge span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.section {
  padding: 42px 0;
}

.section-header {
  max-width: 860px;
  margin-bottom: 28px;
}

.section-copy,
.story-copy,
.detail-copy,
.download-copy {
  align-self: center;
}

.section-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 28px;
}

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

.quick-facts .info-card {
  min-height: 100%;
}

.sample-card {
  display: grid;
  gap: 18px;
  align-content: start;
}

.sample-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sample-card img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 14px 26px rgba(27, 32, 36, 0.08);
}

.sample-badge {
  position: static;
  background: rgba(255, 245, 226, 0.92);
}

.chapter-story {
  padding: 24px 0 12px;
  scroll-margin-top: calc(var(--header-offset) + 24px);
}

.chapter-shell {
  border-radius: var(--radius-xl);
  padding: 22px;
  background: rgba(240, 232, 223, 0.74);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-md);
}

.chapter-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.chapter-title-row h2,
.chapter-title-row h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
  font-weight: 900;
}

.chapter-nav {
  position: sticky;
  top: var(--header-offset);
  z-index: 35;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 1);
  box-shadow: none;
  overflow-x: auto;
}

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

.chapter-indicator {
  position: absolute;
  inset: 10px auto 10px 10px;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(187, 51, 0, 0.14),
    rgba(247, 167, 55, 0.18)
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition:
    transform 260ms ease,
    width 260ms ease,
    opacity 180ms ease;
  opacity: 0;
  pointer-events: none;
}

.chapter-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 16px 16px 16px 40px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 900;
  white-space: nowrap;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.chapter-link.active {
  color: var(--accent);
  transform: translateY(1px);
}

.chapter-section {
  padding: 30px;
  border-radius: 30px;
  background: rgba(247, 240, 231, 0.72);
  margin-bottom: 18px;
  scroll-margin-top: calc(var(--header-offset) + 88px);
}

.story-grid {
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1fr);
  align-items: center;
}

.story-grid.visual-left {
  grid-template-columns: minmax(420px, 1fr) minmax(0, 0.84fr);
}

.story-grid.visual-left .story-visual {
  order: 1;
}

.story-grid.visual-left .story-copy {
  order: 2;
}

.story-visual {
  min-width: 0;
}

.story-copy ul,
.detail-points,
.price-list,
.legal-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.story-copy li,
.detail-points li,
.price-list li,
.legal-list li {
  position: relative;
  padding-left: 20px;
  margin-top: 10px;
  color: var(--text-soft);
  line-height: 1.65;
}

.story-copy li::before,
.detail-points li::before,
.price-list li::before,
.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
}

.device-panel {
  position: relative;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.device-frame {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  aspect-ratio: 645 / 1398;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  box-shadow:
    0 0 0 2px rgba(17, 17, 17, 0.96),
    0 14px 28px rgba(27, 32, 36, 0.18);
}

.device-frame:not(.wide),
.sequence-device,
.phone-card {
  background: #0d0d0f;
}

.device-frame.tall {
  max-width: 300px;
}

.device-frame.medium {
  max-width: 272px;
}

.device-frame.short {
  max-width: 300px;
  aspect-ratio: 645 / 1398;
}

.device-frame.wide {
  max-width: 520px;
  aspect-ratio: 602 / 311;
  border-radius: 14px;
}

.device-frame img,
.sequence-layer img,
.overlay-screen img,
.compare-shot img,
.gallery-frame img,
.rail-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  background: transparent;
}

.device-caption {
  display: none;
}

.sequence-device {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 645 / 1398;
  margin: 0 auto;
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 0 0 10px rgba(17, 17, 17, 0.98),
    0 0 0 11px rgba(255, 255, 255, 0.06),
    var(--shadow-lg);
  padding: 100px;
}

.sequence-layer {
  position: absolute;
  inset: 0;
  will-change: opacity;
  transform: translateZ(0);
}

.sequence-layer.base {
  opacity: 1;
}

.sequence-layer.dim,
.sequence-layer.tap,
.sequence-layer.result {
  opacity: 0;
}

.sequence-device.intro .sequence-layer.dim {
  animation: intro-dim 13.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.sequence-device.intro .sequence-layer.tap {
  animation: intro-tap 13.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.sequence-device.add-items .sequence-layer.dim {
  animation: add-dim 10.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.sequence-device.add-items .sequence-layer.tap {
  animation: add-tap 10.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.sequence-device.add-items .sequence-layer.tap img {
  filter: brightness(1.14) saturate(1.04);
}

.sequence-device.add-items .sequence-layer.result {
  animation: add-result 10.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes intro-dim {
  0%,
  15% {
    opacity: 0;
  }
  22%,
  80% {
    opacity: 1;
  }
  86%,
  100% {
    opacity: 0;
  }
}

@keyframes intro-tap {
  0%,
  22%,
  86%,
  100% {
    opacity: 0;
  }
  27%,
  30%,
  35%,
  38%,
  43%,
  46%,
  51%,
  54%,
  59%,
  62%,
  67%,
  70%,
  75%,
  78% {
    opacity: 1;
  }
  31%,
  39%,
  47%,
  55%,
  63%,
  71%,
  79% {
    opacity: 0;
  }
}

@keyframes add-dim {
  0%,
  11.4286% {
    opacity: 0;
  }
  19.0476%,
  84.7619% {
    opacity: 1;
  }
  96.1905% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes add-tap {
  0%,
  19.0476% {
    opacity: 0;
  }
  24.7619%,
  25.9047% {
    opacity: 0;
  }
  30.4761%,
  31.6190% {
    opacity: 1;
  }
  33.3333%,
  34.4761% {
    opacity: 0;
  }
  39.0475%,
  40.1904% {
    opacity: 1;
  }
  41.9047%,
  43.0475% {
    opacity: 0;
  }
  47.6189%,
  48.7618% {
    opacity: 1;
  }
  50.4761%,
  51.6190% {
    opacity: 0;
  }
  56.1903%,
  57.3332% {
    opacity: 1;
  }
  59.0475%,
  60.1904% {
    opacity: 0;
  }
  64.7617%,
  65.9046% {
    opacity: 1;
  }
  67.6189%,
  68.7618% {
    opacity: 0;
  }
  73.3331%,
  74.4760% {
    opacity: 1;
  }
  76.1903%,
  77.3332% {
    opacity: 0;
  }
  81.9045%,
  83.0474% {
    opacity: 1;
  }
  83.0475%,
  100% {
    opacity: 0;
  }
}

@keyframes add-result {
  0%,
  79.0476% {
    opacity: 0;
  }
  84.7619%,
  96.1905% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.search-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  justify-items: center;
  margin-top: 26px;
  align-items: start;
}

.search-gallery .device-frame {
  max-width: 220px;
}

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

.compare-shot {
  background: rgba(255, 255, 255, 0);
  border-radius: 28px;
  padding: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.compare-shot .device-frame {
  max-width: 260px;
}

.custom-shell {
  display: grid;
  gap: 18px;
}

.custom-card {
  width: min(100%, 980px);
  padding: 22px;
  border-radius: 30px;
  background: rgba(255, 252, 247, 0.76);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.custom-card-left {
  margin-right: auto;
}

.custom-card-right {
  margin-left: auto;
}

.custom-card-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.92fr);
  gap: 34px;
  align-items: center;
}

.custom-card-right .custom-copy {
  order: 2;
}

.custom-card-right .custom-media {
  order: 1;
}

.custom-copy {
  max-width: 520px;
}

.custom-copy h3 {
  margin-top: 8px;
}

.custom-copy p {
  margin-top: 10px;
  color: var(--text-soft);
  line-height: 1.72;
  max-width: 62ch;
}

.custom-copy p + p {
  margin-top: 12px;
}

.custom-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  justify-items: center;
  align-items: center;
  padding-left: 8px;
  padding-right: 8px;
}

.overlay-shell {
  position: relative;
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
}

.custom-shell .device-frame {
  max-width: 220px;
}

.overlay-screen {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  overflow: hidden;
  opacity: 0;
  will-change: opacity;
  transform: translateZ(0);
  animation: overlay-pulse 1.4s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes overlay-pulse {
  0%,
  82%,
  96%,
  100% {
    opacity: 0;
  }
  34%,
  54% {
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
}

.blind-story {
  margin-top: 10px;
}

.blind-hero {
  padding: 32px;
  border-radius: 32px;
  background: linear-gradient(
    180deg,
    rgba(162, 40, 8, 0.28),
    rgba(103, 20, 0, 0.16)
  );
  border: 1px solid rgba(122, 25, 0, 0.18);
  box-shadow: var(--shadow-md);
}

.blind-shell {
  border-radius: 30px;
  padding: 30px;
  background: linear-gradient(
    180deg,
    rgba(150, 34, 6, 0.94),
    rgba(122, 25, 0, 0.96)
  );
  box-shadow: 0 34px 70px rgba(82, 14, 0, 0.28);
}

.blind-shell .story-copy,
.blind-shell .story-copy p,
.blind-shell .story-copy li,
.blind-shell .section-label,
.blind-shell .story-copy h2,
.blind-shell .story-copy h3,
.blind-shell .gallery-caption,
.blind-shell .stack-caption {
  color: #fff5ee;
}

.blind-shell .section-label {
  color: #ffd1bc;
}

.blind-card {
  border-radius: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.gallery-shell {
  padding: 18px;
}

.gallery-stack {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  aspect-ratio: 645 / 1398;
}

.gallery-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 560ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}

.gallery-frame.is-active {
  opacity: 1;
  pointer-events: auto;
}

.gallery-frame .device-frame {
  margin: 0 auto;
  width: 100%;
  max-width: none;
  height: 100%;
}

.gallery-caption {
  margin-top: 14px;
  min-height: 3.2em;
}

.gallery-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  justify-content: center;
}

.gallery-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.gallery-dots button.is-active {
  transform: scale(1.15);
  background: #ffd3b6;
}

.gallery-shell.light .gallery-dots button {
  background: rgba(27, 32, 36, 0.16);
}

.gallery-shell.light .gallery-dots button.is-active {
  background: var(--accent);
}

.blind-inline {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 22px;
  align-items: center;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
  border-radius: 26px;
  padding: 20px;
  background: rgba(244, 237, 228, 0.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.pricing-band,
.faq-band,
.legal-band,
.support-band,
.download-band {
  padding: 44px 0;
}

.plan-grid,
.support-grid,
.price-grid,
.faq-grid,
.link-cloud {
  display: grid;
  gap: 18px;
}

.plan-grid,
.price-grid,
.support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-card.featured,
.price-card.featured {
  background: linear-gradient(
    180deg,
    rgba(245, 231, 210, 0.98),
    rgba(252, 247, 240, 0.92)
  );
  border-color: rgba(187, 51, 0, 0.16);
}

.plan-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 245, 226, 0.94);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-value {
  display: flex;
  align-items: end;
  gap: 8px;
  margin: 18px 0 6px;
}

.price-value strong {
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.price-value span {
  color: var(--muted);
  font-weight: 800;
}

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

.faq-card summary {
  cursor: pointer;
  list-style: none;
}

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

.faq-card summary::after {
  content: "+";
  float: right;
  color: var(--accent);
}

.faq-card[open] summary::after {
  content: "−";
}

.faq-card p {
  margin: 14px 0 0;
}

.link-cloud {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.link-pile {
  border-radius: 24px;
  padding: 20px;
  background: rgba(245, 238, 229, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.link-pile strong {
  display: block;
  margin-bottom: 12px;
}

.link-pile a {
  display: block;
  color: var(--muted);
  margin-top: 10px;
}

.link-pile a:hover {
  color: var(--text);
}

.download-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 24px;
  align-items: center;
}

.download-visual {
  display: grid;
  gap: 16px;
}

.app-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.app-card img {
  width: 92px;
  height: 92px;
  border-radius: 24px;
}

.site-footer {
  padding: 24px 0 40px;
}

.footer-grid {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
}

.footer-link-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.footer-links strong {
  display: block;
  margin-bottom: 12px;
  font-size: 0.98rem;
}

.footer-links a {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

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

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

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

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

@media (max-width: 1120px) {
  .top-nav,
  .nav-actions {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-block;
  }

  .hero-grid,
  .page-hero-grid,
  .section-shell,
  .story-grid,
  .story-grid.visual-left,
  .download-shell,
  .footer-grid,
  .platinum-grid,
  .legal-grid,
  .blind-inline,
  .custom-card-grid {
    grid-template-columns: 1fr;
  }

  .custom-card {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .custom-card-right .custom-copy,
  .custom-card-right .custom-media {
    order: initial;
  }

  .story-grid.visual-left .story-visual,
  .story-grid.visual-left .story-copy {
    order: initial;
  }

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

  .hero-metrics,
  .plan-grid,
  .price-grid,
  .support-grid,
  .footer-link-grid,
  .link-cloud,
  .search-gallery,
  .stats-grid,
  .faq-grid,
  .quick-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --header-offset: 90px;
  }

  .hero,
  .page-hero,
  .section,
  .pricing-band,
  .faq-band,
  .legal-band,
  .support-band,
  .download-band,
  .site-footer {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .hero-grid,
  .page-hero-grid,
  .story-grid,
  .section-shell,
  .download-shell,
  .footer-grid,
  .platinum-grid,
  .legal-grid,
  .blind-inline,
  .custom-card-grid,
  .custom-media,
  .compare-grid,
  .search-gallery,
  .hero-metrics,
  .plan-grid,
  .price-grid,
  .support-grid,
  .faq-grid,
  .stats-grid,
  .link-cloud,
  .quick-facts,
  .footer-link-grid {
    grid-template-columns: 1fr;
  }

  .nav-shell {
    padding: 12px 14px;
  }

  .brand-caption {
    display: none;
  }

  .hero h1,
  .page-hero h1 {
    max-width: none;
  }

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

  .phone-card-main {
    width: 50%;
  }

  .phone-card-secondary {
    width: 38%;
    right: 10%;
  }

  .chapter-shell,
  .chapter-section,
  .section-shell,
  .story-shell,
  .download-shell,
  .blind-shell,
  .custom-card,
  .footer-brand,
  .footer-links,
  .legal-section {
    padding: 22px;
  }

  .chapter-nav {
    top: 82px;
  }

  .device-frame,
  .sequence-device,
  .overlay-shell,
  .gallery-stack {
    max-width: 260px;
  }

  .device-frame.wide {
    max-width: 100%;
  }
}

.landing-v2 {
  --landing-bg: #08111d;
  --landing-surface: rgba(11, 22, 36, 0.78);
  --landing-surface-strong: rgba(15, 27, 45, 0.96);
  --landing-line: rgba(162, 191, 226, 0.14);
  --landing-line-strong: rgba(162, 191, 226, 0.28);
  --landing-text: #f5f8ff;
  --landing-soft: #adc3df;
  --landing-muted: #6d87a5;
  --landing-accent: #ff6b2c;
  --landing-accent-2: #ffc246;
  --landing-accent-3: #4ad1ff;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 107, 44, 0.2),
      transparent 25%
    ),
    radial-gradient(
      circle at 82% 8%,
      rgba(74, 209, 255, 0.18),
      transparent 22%
    ),
    radial-gradient(
      circle at 50% 100%,
      rgba(255, 194, 70, 0.11),
      transparent 32%
    ),
    linear-gradient(180deg, #09111d 0%, #07111c 34%, #081521 100%);
  color: var(--landing-text);
}

.landing-v2 .site-header {
  padding-top: 20px;
}

.landing-v2 .nav-shell {
  background: rgba(7, 16, 28, 0.76);
  border-color: rgba(173, 195, 223, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.landing-v2 .brand-logo {
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}

.landing-v2 .brand-word,
.landing-v2 .top-nav a:hover,
.landing-v2 .nav-link:hover,
.landing-v2 .top-nav a.is-current,
.landing-v2 .mobile-nav a.is-current {
  color: var(--landing-text);
}

.landing-v2 .brand-caption,
.landing-v2 .top-nav a,
.landing-v2 .nav-link,
.landing-v2 .mobile-nav a {
  color: var(--landing-soft);
}

.landing-v2 .mobile-nav-toggle {
  background: rgba(255, 255, 255, 0.06);
}

.landing-v2 .mobile-nav-toggle span {
  background: var(--landing-text);
}

.landing-v2 .mobile-nav {
  background: rgba(7, 16, 28, 0.92);
  border-color: rgba(173, 195, 223, 0.12);
}

.landing-v2 .button-accent {
  background: linear-gradient(
    135deg,
    var(--landing-accent),
    var(--landing-accent-2)
  );
  box-shadow: 0 18px 34px rgba(255, 107, 44, 0.26);
}

.landing-v2 .button-glass {
  color: var(--landing-text);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(173, 195, 223, 0.16);
}

.landing-v2 .button-soft {
  color: var(--landing-text);
  background: rgba(74, 209, 255, 0.1);
  border-color: rgba(74, 209, 255, 0.22);
}

.landing-v2 .section-space,
.landing-v2 .ranko-footer {
  padding: 42px 0 54px;
}

.landing-v2 .ranko-hero {
  position: relative;
  padding: 40px 0 30px;
}

.landing-v2 .ranko-hero::before {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
}

.landing-v2 .ranko-hero::before {
  top: 4%;
  right: 8%;
  width: 18rem;
  height: 18rem;
  background: rgba(74, 209, 255, 0.12);
}

.landing-v2 .hero-layout,
.landing-v2 .proof-grid,
.landing-v2 .numbers-grid,
.landing-v2 .challenge-grid,
.landing-v2 .social-shell,
.landing-v2 .cta-shell {
  display: grid;
  gap: 28px;
}

.landing-v2 .hero-layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
}

.landing-v2 .hero-copy h1,
.landing-v2 .section-heading h2,
.landing-v2 .story-intro h2,
.landing-v2 .challenge-copy h2,
.landing-v2 .social-copy h2,
.landing-v2 .cta-copy h2 {
  margin: 0;
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.landing-v2 .hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3.5rem, 7vw, 6.9rem);
}

.landing-v2 .hero-copy h1.hero-title-compact {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.02;
  max-width: 13ch;
}

.landing-v2 .hero-brow,
.landing-v2 .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--landing-accent-2);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.landing-v2 .section-label::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}

.landing-v2 .hero-lead,
.landing-v2 .section-heading p,
.landing-v2 .story-intro p,
.landing-v2 .story-copy p,
.landing-v2 .challenge-copy p,
.landing-v2 .social-copy p,
.landing-v2 .cta-copy p,
.landing-v2 .proof-card p,
.landing-v2 .social-card-copy p {
  color: var(--landing-soft);
  line-height: 1.7;
}

.landing-v2 .hero-lead {
  max-width: 62ch;
  margin: 24px 0 0;
  font-size: 1.08rem;
}

.landing-v2 .hero-mission {
  display: grid;
  gap: 10px;
  max-width: 60ch;
  margin-top: 18px;
}

.landing-v2 .hero-mission p {
  margin: 0;
  color: rgba(245, 248, 255, 0.88);
  line-height: 1.65;
  font-size: 0.98rem;
}

.landing-v2 .hero-actions,
.landing-v2 .link-row,
.landing-v2 .cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.landing-v2 .hero-actions {
  margin: 30px 0 0;
}

.landing-v2 .hero-pills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.landing-v2 .hero-pill,
.landing-v2 .proof-card,
.landing-v2 .number-card,
.landing-v2 .social-card,
.landing-v2 .cta-panel,
.landing-v2 .story-shell,
.landing-v2 .arena-card {
  border: 1px solid var(--landing-line);
  background: linear-gradient(
    180deg,
    rgba(13, 24, 39, 0.94),
    rgba(10, 20, 33, 0.84)
  );
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.2);
}

.landing-v2 .hero-pill {
  padding: 18px;
  border-radius: 24px;
}

.landing-v2 .hero-pill strong,
.landing-v2 .proof-card h3,
.landing-v2 .social-card-copy h3,
.landing-v2 .cta-app h3,
.landing-v2 .story-copy h3,
.landing-v2 .arena-header h3 {
  display: block;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.landing-v2 .hero-pill span,
.landing-v2 .number-card span,
.landing-v2 .spotlight-note span,
.landing-v2 .spotlight-label,
.landing-v2 .spotlight-footer strong,
.landing-v2 .story-button small,
.landing-v2 .feature-list,
.landing-v2 .challenge-tags span,
.landing-v2 .arena-chip,
.landing-v2 .arena-stats span,
.landing-v2 .cta-links a,
.landing-v2 .footer-brand p {
  color: var(--landing-soft);
}

.landing-v2 .hero-visual {
  position: relative;
}

.landing-v2 .spotlight-shell {
  position: relative;
  padding: 22px;
  border-radius: 34px;
  border: 1px solid var(--landing-line);
  background:
    linear-gradient(180deg, rgba(18, 32, 52, 0.98), rgba(8, 17, 29, 0.98)),
    radial-gradient(
      circle at top right,
      rgba(74, 209, 255, 0.12),
      transparent 30%
    );
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.landing-v2 .spotlight-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      115deg,
      transparent 15%,
      rgba(255, 255, 255, 0.06) 32%,
      transparent 45%
    ),
    linear-gradient(transparent, transparent);
  pointer-events: none;
}

.landing-v2 .spotlight-controls {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.landing-v2 .spotlight-button,
.landing-v2 .story-button {
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.landing-v2 .spotlight-button {
  border: 1px solid rgba(173, 195, 223, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--landing-soft);
  padding: 11px 16px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.landing-v2 .spotlight-button.is-active,
.landing-v2 .spotlight-button:hover {
  color: var(--landing-text);
  border-color: rgba(255, 194, 70, 0.32);
  background: rgba(255, 194, 70, 0.1);
}

.landing-v2 .spotlight-stage {
  position: relative;
  min-height: 650px;
}

.landing-v2 .spotlight-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  pointer-events: none;
  transition:
    opacity 320ms ease,
    transform 320ms ease;
}

.landing-v2 .spotlight-panel.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.landing-v2 .spotlight-frame,
.landing-v2 .device-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--landing-line-strong);
  background: transparent;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.landing-v2 .spotlight-frame img,
.landing-v2 .device-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  background: transparent;
}

.landing-v2 .spotlight-frame-large {
  width: min(100%, 420px);
  height: 560px;
  margin: 22px auto 0;
  border-radius: 18px;
}

.landing-v2 .spotlight-frame-small {
  position: absolute;
  right: 6%;
  bottom: 12%;
  width: min(40%, 210px);
  height: 250px;
  border-radius: 16px;
  transform: rotate(7deg);
}

.landing-v2 .spotlight-note {
  position: absolute;
  left: 0;
  top: 3%;
  max-width: 270px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(74, 209, 255, 0.16);
  background: rgba(6, 18, 31, 0.78);
  backdrop-filter: blur(16px);
}

.landing-v2 .spotlight-note strong {
  display: block;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}

.landing-v2 .spotlight-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.landing-v2 .spotlight-metric {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(173, 195, 223, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.landing-v2 .signal-band {
  overflow: hidden;
  padding: 8px 0 10px;
}

.landing-v2 .signal-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding-left: 18px;
  animation: ranko-marquee 200s linear infinite;
}

.landing-v2 .signal-track span {
  display: inline-flex;
  align-items: center;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(173, 195, 223, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--landing-soft);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

@keyframes ranko-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes ranko-marquee-reverse {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.landing-v2 {
  --landing-text: #ffffff;
  --landing-soft: rgba(255, 255, 255, 0.94);
  --landing-muted: rgba(255, 255, 255, 0.72);
  --landing-accent: #fcb03b;
  --landing-accent-2: #b181fb;
  --landing-accent-3: #f99eae;
  --landing-blue: #a7d0ef;
  --landing-surface-light: #fbf9fd;
  --landing-purple-line: rgba(210, 168, 252, 0.46);
  --landing-container: 2140px;
  background:
    radial-gradient(circle at 0% 14%, rgba(54, 6, 198, 0.96), transparent 20%),
    radial-gradient(
      circle at 18% 52%,
      rgba(109, 36, 243, 0.52),
      transparent 28%
    ),
    radial-gradient(
      circle at 100% 18%,
      rgba(251, 249, 253, 0.18),
      transparent 23%
    ),
    linear-gradient(90deg, #6d24f3 0%, #8539f8 48%, #9c55f6 100%);
}

.landing-v2 .container {
  width: min(calc(100% - 120px), var(--landing-container));
}

.landing-v2 .site-header {
  padding-top: 38px;
}

.landing-v2 .nav-shell {
  padding: 18px 26px 18px 22px;
  background: rgba(251, 249, 253, 0.98);
  border: 0;
  box-shadow: 0 20px 48px rgba(47, 18, 120, 0.14);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.landing-v2 .brand {
  gap: 16px;
}

.landing-v2 .brand-logo {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(36, 12, 120, 0.12);
}

.landing-v2 .brand-word {
  color: #FFFFFF;
}

.landing-v2 .top-nav a:hover,
.landing-v2 .nav-link:hover,
.landing-v2 .top-nav a.is-current,
.landing-v2 .mobile-nav a.is-current {
  color: #000000;
}

.landing-v2 .brand-word {
  font-size: 1.28rem;
}

.landing-v2 .top-nav a,
.landing-v2 .nav-link,
.landing-v2 .mobile-nav a {
  color: #787878;
}

.landing-v2 .brand-caption {
  font-size: 0.8rem;
  color: #8a8a8a;
}

.brand-title {
  color: #000000;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.landing-v2 .top-nav {
  gap: 44px;
}

.landing-v2 .top-nav a {
  font-size: 0.98rem;
  font-weight: 900;
}

.landing-v2 .mobile-nav-toggle {
  background: rgba(255, 255, 255, 0.92);
}

.landing-v2 .mobile-nav-toggle span {
  background: #1a1a1a;
}

.landing-v2 .mobile-nav {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(17, 17, 17, 0.08);
}

.landing-v2 .button-accent {
  color: #ffffff;
  min-height: 62px;
  padding: 0 34px;
  background: linear-gradient(135deg, #fcb03b, #fdc85d);
  border: 2px solid rgba(255, 248, 214, 0.56);
  box-shadow: none;
}

.landing-v2 .ranko-hero {
  padding: 120px 0 240px;
  overflow: hidden;
}

.landing-v2 .hero-layout.hero-layout-reference {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 64px;
  text-align: center;
}

.landing-v2 .hero-copy-reference {
  display: grid;
  justify-items: center;
  gap: 28px;
}

.landing-v2 .hero-title-reference {
  margin: 0;
  font-size: clamp(4.5rem, 5vw, 7.2rem);
  line-height: 1.14;
  letter-spacing: -0.055em;
  font-weight: 1000;
}

.landing-v2 .hero-title-reference span {
  display: block;
}

.landing-v2 .hero-mission-copy {
  max-width: 64ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1.05rem, 1.34vw, 1.34rem);
  line-height: 1.52;
  font-weight: 700;
}

.landing-v2 .hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  width: min(100%, 1600px);
  margin-top: 10px;
}

.landing-v2 .hero-stat {
  min-height: 170px;
  padding: 26px 28px;
  border-radius: 26px;
  border: 2px solid var(--landing-purple-line);
  background: linear-gradient(
    180deg,
    rgba(109, 36, 243, 0.9),
    rgba(98, 30, 224, 0.92)
  );
  box-shadow: 0 24px 42px rgba(63, 14, 168, 0.2);
  text-align: left;
}

.landing-v2 .hero-stat strong {
  display: block;
  font-size: clamp(3.5rem, 4.2vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 1000;
}

.landing-v2 .hero-stat span {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.92rem;
  line-height: 1.35;
  font-weight: 800;
}

.landing-v2 .hero-capsules {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100vw, 2400px);
  height: 132px;
  margin-top: 12px;
  padding: 0 6px;
  overflow-x: clip;
  contain: layout paint;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.8) 8%,
    rgba(0, 0, 0, 0.8) 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.8) 8%,
    rgba(0, 0, 0, 0.8) 92%,
    transparent 100%
  );
}

.landing-v2 .capsule-marquee {
  position: absolute;
  left: 0;
  display: flex;
  width: max-content;
  gap: 14px;
}

.landing-v2 .capsule-marquee span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  border: 2px solid rgba(210, 168, 252, 0.5);
  background: rgba(100, 38, 214, 0.72);
  color: rgba(255, 255, 255, 0.98);
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  white-space: nowrap;
}

.landing-v2 .capsule-marquee-forward {
  top: 0;
  animation: ranko-marquee 150s linear infinite;
}

.landing-v2 .capsule-marquee-reverse {
  top: 76px;
  animation: ranko-marquee-reverse 158s linear infinite;
}

.landing-v2 .proof-shell,
.landing-v2 .story-shell {
  padding: 32px;
  border-radius: 36px;
}

.landing-v2 #product,
.landing-v2 #create {
  background: linear-gradient(
    180deg,
    rgba(251, 249, 253, 0.98),
    rgba(255, 255, 255, 0.99)
  );
}

.landing-v2 #play,
.landing-v2 .ranko-footer {
  background:
    radial-gradient(
      circle at 18% 32%,
      rgba(210, 168, 252, 0.18),
      transparent 20%
    ),
    linear-gradient(90deg, #6d24f3 0%, #8539f8 48%, #9c55f6 100%);
}

.landing-v2 .proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.landing-v2 .proof-card {
  padding: 24px;
  border-radius: 28px;
}

.landing-v2 .proof-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  margin-bottom: 18px;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 44, 0.24),
    rgba(74, 209, 255, 0.14)
  );
  color: var(--landing-accent-2);
  font-weight: 900;
}

.landing-v2 .numbers-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
}

.landing-v2 .number-card {
  padding: 22px;
  border-radius: 26px;
}

.landing-v2 .number-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.landing-v2 .story-intro {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.landing-v2 .story-deck {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.landing-v2 .story-rail {
  display: grid;
  gap: 12px;
  position: sticky;
  top: 110px;
}

.landing-v2 .story-button {
  text-align: left;
  padding: 18px 18px 16px;
  border-radius: 24px;
  border: 1px solid rgba(173, 195, 223, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.landing-v2 .story-button span {
  display: block;
  margin-bottom: 4px;
  color: var(--landing-text);
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.landing-v2 .story-button.is-active,
.landing-v2 .story-button:hover {
  transform: translateX(4px);
  border-color: rgba(255, 107, 44, 0.28);
  background: linear-gradient(
    180deg,
    rgba(255, 107, 44, 0.1),
    rgba(74, 209, 255, 0.05)
  );
}

.landing-v2 .story-panels {
  position: relative;
  min-height: 680px;
}

.landing-v2 .story-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition:
    opacity 320ms ease,
    transform 320ms ease;
}

.landing-v2 .story-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.landing-v2 .story-copy {
  align-self: center;
}

.landing-v2 .story-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.landing-v2 .feature-list {
  margin: 18px 0 0;
  padding-left: 20px;
  line-height: 1.7;
}

.landing-v2 .feature-list-strong li {
  color: #eef5ff;
  font-weight: 800;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.24);
}

.landing-v2 .feature-list-compact {
  margin-top: 18px;
}

.landing-v2 .story-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.landing-v2 .story-media-grid .device-frame:last-child:nth-child(3) {
  grid-column: 1 / -1;
}

.landing-v2 .device-frame {
  border-radius: 12px;
}

.landing-v2 .placeholder-frame {
  background: rgba(251, 249, 253, 0.08);
}

.landing-v2 .placeholder-shot {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 20px;
  background:
    linear-gradient(
      145deg,
      rgba(251, 249, 253, 0.2),
      rgba(251, 249, 253, 0.06)
    ),
    radial-gradient(
      circle at 75% 18%,
      rgba(167, 208, 239, 0.22),
      transparent 28%
    ),
    radial-gradient(
      circle at 22% 82%,
      rgba(249, 158, 174, 0.22),
      transparent 28%
    ),
    rgba(113, 43, 226, 0.36);
}

.landing-v2 .placeholder-shot span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(251, 249, 253, 0.3);
  background: rgba(251, 249, 253, 0.12);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

.landing-v2 .device-frame.tall {
  aspect-ratio: 0.52;
}

.landing-v2 .device-frame.wide {
  aspect-ratio: 1.25;
}

.landing-v2 .story-media-grid-gif .device-frame img {
  object-fit: cover;
}

.landing-v2 .challenge-band {
  position: relative;
}

.landing-v2 .challenge-grid,
.landing-v2 .social-shell,
.landing-v2 .cta-shell {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.landing-v2 .challenge-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.landing-v2 .challenge-tags span {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 194, 70, 0.18);
  background: rgba(255, 194, 70, 0.08);
}

.landing-v2 .arena-card,
.landing-v2 .cta-panel {
  padding: 26px;
  border-radius: 34px;
}

.landing-v2 .arena-header,
.landing-v2 .cta-app {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.landing-v2 .arena-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.landing-v2 .arena-chip {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(74, 209, 255, 0.18);
  background: rgba(74, 209, 255, 0.08);
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
}

.landing-v2 .arena-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.landing-v2 .arena-stats div {
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(173, 195, 223, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.landing-v2 .arena-stats strong {
  display: block;
  margin-bottom: 6px;
}

.landing-v2 .social-cards {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  order: 1;
}

.landing-v2 .social-copy {
  order: 2;
}

.landing-v2 .social-card {
  padding: 18px;
  border-radius: 30px;
}

.landing-v2 .social-card-copy {
  padding: 16px 8px 6px;
}

.landing-v2 .social-card-wide .device-frame {
  aspect-ratio: 1.38;
}

.landing-v2 .cta-panel {
  display: grid;
  gap: 24px;
}

.landing-v2 .cta-app img {
  width: 86px;
  height: 86px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.32);
}

.landing-v2 .cta-links {
  padding-top: 8px;
  border-top: 1px solid rgba(173, 195, 223, 0.1);
}

.landing-v2 .cta-links a {
  font-weight: 800;
}

.landing-v2 .cta-links a:hover {
  color: var(--landing-text);
}

.landing-v2 .ranko-footer {
  padding-top: 18px;
}

.landing-v2 .ranko-footer .footer-brand,
.landing-v2 .ranko-footer .footer-links {
  background: rgba(251, 249, 253, 0.96);
  border: 1px solid rgba(210, 168, 252, 0.28);
}

.landing-v2 .ranko-footer .footer-meta span,
.landing-v2 .ranko-footer .footer-link-grid a,
.landing-v2 .ranko-footer .footer-link-grid strong {
  color: #655b70;
}

.landing-v2 .ranko-footer .footer-link-grid a:hover {
  color: #18151d;
}

.landing-v2 .ranko-footer .brand-word,
.landing-v2 .ranko-footer .footer-brand p {
  color: #FFFFFF;
}

.landing-v2.themed-page .page-glow {
  opacity: 0.58;
}

.landing-v2.themed-page .page-hero,
.landing-v2.themed-page .pricing-band,
.landing-v2.themed-page .faq-band,
.landing-v2.themed-page .legal-band,
.landing-v2.themed-page .support-band {
  padding: 52px 0 60px;
}

.landing-v2.themed-page .page-hero {
  padding-top: 118px;
}

.landing-v2.themed-page .page-hero-copy,
.landing-v2.themed-page .legal-copy {
  align-self: center;
}

.landing-v2.themed-page .page-label,
.landing-v2.themed-page .price-kicker,
.landing-v2.themed-page .card-kicker,
.landing-v2.themed-page .section-label,
.landing-v2.themed-page .footnote-label {
  color: #fcb03b;
}

.landing-v2.themed-page .page-hero h1,
.landing-v2.themed-page .section-header h2,
.landing-v2.themed-page .legal-copy h1,
.landing-v2.themed-page .legal-section h3,
.landing-v2.themed-page .plan-card h3,
.landing-v2.themed-page .price-card h3,
.landing-v2.themed-page .support-card h3,
.landing-v2.themed-page .faq-card summary,
.landing-v2.themed-page .sample-card h3,
.landing-v2.themed-page .roadmap-phase h3,
.landing-v2.themed-page .roadmap-highlight h3 {
  color: #ffffff;
}

.landing-v2.themed-page .page-hero p,
.landing-v2.themed-page .section-header p,
.landing-v2.themed-page .legal-copy p,
.landing-v2.themed-page .legal-section p,
.landing-v2.themed-page .sample-card p,
.landing-v2.themed-page .plan-card p,
.landing-v2.themed-page .price-card p,
.landing-v2.themed-page .support-card p,
.landing-v2.themed-page .faq-card p,
.landing-v2.themed-page .price-list li,
.landing-v2.themed-page .legal-list li,
.landing-v2.themed-page .support-link-list a,
.landing-v2.themed-page .support-field span,
.landing-v2.themed-page .roadmap-phase p,
.landing-v2.themed-page .roadmap-checklist li,
.landing-v2.themed-page .roadmap-highlight p {
  color: rgba(245, 248, 255, 0.88);
}

.landing-v2.themed-page .metric-pill,
.landing-v2.themed-page .info-card,
.landing-v2.themed-page .section-shell,
.landing-v2.themed-page .story-shell,
.landing-v2.themed-page .plan-card,
.landing-v2.themed-page .price-card,
.landing-v2.themed-page .support-card,
.landing-v2.themed-page .faq-card,
.landing-v2.themed-page .legal-section,
.landing-v2.themed-page .download-shell,
.landing-v2.themed-page .sample-card,
.landing-v2.themed-page .app-card,
.landing-v2.themed-page .step-card,
.landing-v2.themed-page .gallery-shell,
.landing-v2.themed-page .footer-brand,
.landing-v2.themed-page .footer-links {
  border: 1px solid rgba(210, 168, 252, 0.22);
  background: linear-gradient(
    180deg,
    rgba(14, 22, 46, 0.82),
    rgba(11, 17, 36, 0.74)
  );
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.landing-v2.themed-page .sample-card img {
  border: 1px solid rgba(210, 168, 252, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.landing-v2.themed-page .price-card.featured,
.landing-v2.themed-page .plan-card.featured {
  background: linear-gradient(
    180deg,
    rgba(45, 31, 98, 0.92),
    rgba(18, 22, 64, 0.88)
  );
  border-color: rgba(252, 176, 59, 0.28);
}

.landing-v2.themed-page .plan-tag {
  background: rgba(252, 176, 59, 0.12);
  color: #ffd579;
}

.landing-v2.themed-page .button-dark {
  color: #ffffff;
  background: linear-gradient(135deg, #fcb03b, #fdc85d);
  border-color: rgba(255, 248, 214, 0.56);
}

.landing-v2.themed-page .button-soft {
  color: #ffffff;
  background: rgba(74, 209, 255, 0.12);
  border-color: rgba(74, 209, 255, 0.24);
}

.landing-v2.themed-page .button-glass {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(173, 195, 223, 0.14);
}

.landing-v2.themed-page .footer-meta,
.landing-v2.themed-page .footer-links a,
.landing-v2.themed-page .footer-links strong,
.landing-v2.themed-page .support-link-list a {
  color: rgba(245, 248, 255, 0.78);
}

.landing-v2.themed-page .footer-links a:hover,
.landing-v2.themed-page .support-link-list a:hover {
  color: #ffffff;
}

.landing-v2.themed-page .support-field input,
.landing-v2.themed-page .support-field textarea {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(173, 195, 223, 0.16);
}

.landing-v2.themed-page .support-field input::placeholder,
.landing-v2.themed-page .support-field textarea::placeholder {
  color: rgba(245, 248, 255, 0.42);
}

.landing-v2.themed-page .faq-card summary::after {
  color: #fcb03b;
}

.landing-v2.themed-page .roadmap-hero-grid,
.landing-v2.themed-page .roadmap-grid,
.landing-v2.themed-page .roadmap-highlight-grid {
  display: grid;
  gap: 24px;
}

.landing-v2.themed-page .roadmap-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  align-items: center;
}

.landing-v2.themed-page .roadmap-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-v2.themed-page .roadmap-highlight-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: stretch;
}

.landing-v2.themed-page .roadmap-phase,
.landing-v2.themed-page .roadmap-highlight {
  padding: 26px;
  border-radius: 32px;
  border: 1px solid rgba(210, 168, 252, 0.22);
  background: linear-gradient(
    180deg,
    rgba(14, 22, 46, 0.84),
    rgba(11, 17, 36, 0.76)
  );
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.landing-v2.themed-page .roadmap-phase time,
.landing-v2.themed-page .roadmap-highlight time {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(252, 176, 59, 0.12);
  color: #ffd579;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-v2.themed-page .roadmap-phase h3,
.landing-v2.themed-page .roadmap-highlight h3 {
  margin: 18px 0 10px;
  font-size: clamp(1.7rem, 2.5vw, 2.5rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.landing-v2.themed-page .roadmap-checklist,
.landing-v2.themed-page .roadmap-bullets {
  margin: 18px 0 0;
  padding-left: 20px;
}

.landing-v2.themed-page .roadmap-checklist li,
.landing-v2.themed-page .roadmap-bullets li {
  margin-top: 10px;
  line-height: 1.6;
}

.landing-v2.themed-page .roadmap-glow-card {
  min-height: 100%;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(252, 176, 59, 0.18),
      transparent 24%
    ),
    radial-gradient(
      circle at 12% 88%,
      rgba(74, 209, 255, 0.18),
      transparent 26%
    ),
    linear-gradient(180deg, rgba(28, 24, 76, 0.88), rgba(12, 16, 42, 0.82));
}

.landing-v2.themed-page .page-footer-theme {
  padding-top: 10px;
}

.landing-v2.themed-page .page-footer-theme .footer-brand,
.landing-v2.themed-page .page-footer-theme .footer-links {
  border-color: rgba(210, 168, 252, 0.22);
  background: rgba(12, 18, 40, 0.82);
}

@media (max-width: 1180px) {
  .landing-v2.themed-page .roadmap-hero-grid,
  .landing-v2.themed-page .roadmap-grid,
  .landing-v2.themed-page .roadmap-highlight-grid {
    grid-template-columns: 1fr;
  }

  .landing-v2 .hero-layout,
  .landing-v2 .challenge-grid,
  .landing-v2 .social-shell,
  .landing-v2 .cta-shell,
  .landing-v2 .story-deck {
    grid-template-columns: 1fr;
  }

  .landing-v2 .hero-copy h1 {
    max-width: 11ch;
  }

  .landing-v2 .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 1100px);
  }

  .landing-v2 .story-rail {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-v2 .story-panels {
    min-height: 780px;
  }
}

@media (max-width: 960px) {
  .landing-v2 .hero-pills,
  .landing-v2 .hero-stats,
  .landing-v2 .proof-grid,
  .landing-v2 .numbers-grid,
  .landing-v2 .social-cards,
  .landing-v2 .arena-grid,
  .landing-v2 .arena-stats {
    grid-template-columns: 1fr;
  }

  .landing-v2 .spotlight-stage {
    min-height: 580px;
  }

  .landing-v2 .spotlight-frame-large {
    height: 500px;
  }

  .landing-v2 .spotlight-frame-small {
    width: 180px;
    height: 218px;
    right: 2%;
  }

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

  .landing-v2 .story-panels {
    min-height: 1080px;
  }

  .landing-v2 .container {
    width: min(calc(100% - 48px), var(--landing-container));
  }

  .landing-v2 .top-nav {
    gap: 24px;
  }

  .landing-v2 .hero-title-reference {
    font-size: clamp(3.4rem, 8.2vw, 5.6rem);
  }

  .landing-v2 .hero-stat {
    min-height: 156px;
  }
}

@media (max-width: 760px) {
  .landing-v2.themed-page .page-hero,
  .landing-v2.themed-page .pricing-band,
  .landing-v2.themed-page .faq-band,
  .landing-v2.themed-page .legal-band,
  .landing-v2.themed-page .support-band {
    padding: 30px 0 34px;
  }

  .landing-v2 .section-space,
  .landing-v2 .ranko-footer {
    padding: 28px 0 34px;
  }

  .landing-v2 .ranko-hero {
    padding: 54px 0 150px;
  }

  .landing-v2 .site-header {
    padding-top: 18px;
  }

  .landing-v2 .nav-shell {
    padding: 16px 18px;
    border-radius: 34px;
  }

  .landing-v2 .brand-logo {
    width: 54px;
    height: 54px;
    border-radius: 18px;
  }

  .landing-v2 .brand-caption {
    font-size: 0.67rem;
  }

  .landing-v2 .proof-shell,
  .landing-v2 .story-shell,
  .landing-v2 .arena-card,
  .landing-v2 .cta-panel {
    padding: 22px;
    border-radius: 28px;
  }

  .landing-v2 .hero-copy h1 {
    font-size: clamp(2.85rem, 13vw, 4.3rem);
    max-width: none;
  }

  .landing-v2 .hero-layout.hero-layout-reference {
    gap: 38px;
  }

  .landing-v2 .hero-title-reference {
    font-size: clamp(2.7rem, 11vw, 4.1rem);
    line-height: 1.16;
  }

  .landing-v2 .hero-mission-copy {
    font-size: 1.02rem;
    line-height: 1.5;
  }

  .landing-v2 .hero-stat {
    min-height: 140px;
    padding: 24px 22px;
    border-radius: 28px;
  }

  .landing-v2 .hero-stat strong {
    font-size: 3.35rem;
  }

  .landing-v2 .hero-capsules {
    width: 100%;
    gap: 14px;
    margin-top: 4px;
  }

  .landing-v2 .capsule-marquee span {
    min-height: 48px;
    padding: 0 22px;
    font-size: 0.9rem;
  }

  .landing-v2 .spotlight-shell {
    padding: 18px;
    border-radius: 28px;
  }

  .landing-v2 .spotlight-stage {
    min-height: 470px;
  }

  .landing-v2 .spotlight-frame-large {
    width: min(100%, 320px);
    height: 430px;
  }

  .landing-v2 .spotlight-frame-small {
    width: 140px;
    height: 170px;
    bottom: 9%;
  }

  .landing-v2 .spotlight-note {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .landing-v2 .spotlight-footer,
  .landing-v2 .story-rail,
  .landing-v2 .story-media-grid {
    grid-template-columns: 1fr;
  }

  .landing-v2 .cta-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .landing-v2 .story-button:hover,
  .landing-v2 .story-button.is-active {
    transform: none;
  }

  .landing-v2 .story-panels {
    min-height: 1220px;
  }

  .landing-v2 .signal-track {
    animation-duration: 90s;
  }

  .landing-v2 .placeholder-shot span {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
  }
}

.support-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 22px;
  align-items: start;
}

.support-details {
  display: grid;
  gap: 18px;
}

.support-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.support-field {
  display: grid;
  gap: 8px;
}

.support-field span {
  font-size: 0.88rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: 0.02em;
}

.support-field input,
.support-field textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  padding: 14px 16px;
  resize: vertical;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.support-field input:focus,
.support-field textarea:focus {
  outline: 2px solid rgba(187, 51, 0, 0.18);
  border-color: rgba(187, 51, 0, 0.22);
}

.support-link-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.support-link-list a {
  color: var(--text-soft);
  font-weight: 800;
}

.support-link-list a:hover {
  color: var(--text);
}

@media (max-width: 1120px) {
  .support-page-grid {
    grid-template-columns: 1fr;
  }
}

.sample-home .sample-light {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  background: rgba(255, 255, 255, 1);
}

.sample-home .sample-purple {
  background: linear-gradient(90deg, #6d24f3 0%, #8539f8 48%, #9c55f6 100%);
}

.sample-home .section-space {
  padding: 124px 0 138px;
}

.sample-home .section-space-tight {
  padding-top: 34px;
}

.sample-home .sample-create,
.sample-home .loop-shell,
.sample-home .blind-shell {
  display: grid;
  gap: 46px;
}

.sample-home #create.section-space {
  position: relative;
  padding-top: 164px;
  overflow-x: clip;
  overflow-y: visible;
}

.sample-home #create.section-space::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -126px;
  width: min(132%, 3200px);
  height: 176px;
  transform: translateX(-50%);
  clip-path: ellipse(90% 100% at 50% 0%);
  background:
    radial-gradient(circle at 0% 14%, rgba(54, 6, 198, 0.96), transparent 20%),
    radial-gradient(
      circle at 18% 52%,
      rgba(109, 36, 243, 0.52),
      transparent 28%
    ),
    radial-gradient(
      circle at 100% 18%,
      rgba(251, 249, 253, 0.18),
      transparent 23%
    ),
    linear-gradient(90deg, #6d24f3 0%, #8539f8 48%, #9c55f6 100%);
  box-shadow: none;
  pointer-events: none;
}

.sample-home #product.section-space-tight {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  padding-bottom: 88px;
}

.sample-home #product.section-space-tight::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -154px;
  width: 100%;
  height: 214px;
  clip-path: ellipse(78% 100% at 50% 100%);
  background: linear-gradient(
    90deg,
    #6d23f3 0%,
    #7c33f6 28%,
    #8d44f6 56%,
    #9b55f7 100%
  );
  pointer-events: none;
}

.sample-home #product.section-space-tight::after {
  content: "";
  position: absolute;
  left: 3.5%;
  right: 3.5%;
  bottom: -80px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  filter: blur(1px);
  box-shadow:
    0 -18px 30px rgba(255, 255, 255, 0.16),
    0 -36px 92px rgba(95, 32, 228, 0.52),
    0 -72px 156px rgba(62, 8, 203, 0.42);
  opacity: 0.92;
  pointer-events: none;
}

.sample-home .blind-shell,
.sample-home .blind-card {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.sample-home .sample-heading {
  max-width: 1540px;
  margin: 0 auto;
  text-align: center;
}

.sample-home .sample-heading h2,
.sample-home .organise-copy h2,
.sample-home .discover-copy h2 {
  margin: 0;
  color: #7a43f4;
  font-size: clamp(2.2rem, 2.55vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.sample-home .sample-heading p,
.sample-home .organise-copy p,
.sample-home .discover-copy p {
  margin: 16px auto 0;
  color: #7d58cf;
  font-size: 1.06rem;
  line-height: 1.55;
  max-width: 68ch;
}

.sample-home .hero-copy-reference {
  width: 100%;
  gap: 24px;
  padding-inline: 20px;
  justify-self: center;
}

.sample-home .hero-capsules {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: clip;
  overflow-y: visible;
  contain: layout paint;
  justify-self: stretch;
}

.sample-home .ranko-hero {
  padding: 110px 0 144px;
}

.sample-home .hero-title-reference {
  display: block;
  width: auto;
  max-width: 100%;
  margin-inline: auto;
  justify-self: center;
  font-size: clamp(1.9rem, 1.28vw, 2.15rem);
  line-height: 1.1;
  text-align: center;
  font-weight: 750;
}

.sample-home .hero-copy h1.hero-title-reference {
  max-width: none;
  font-size: clamp(3.15rem, 3.9vw, 5rem);
  line-height: 1.08;
  font-weight: 760;
}

.sample-home .hero-title-reference span {
  white-space: normal;
}

.sample-home .hero-mission-copy {
  max-width: 88ch;
  font-size: clamp(0.98rem, 1vw, 1.14rem);
}

.sample-home .hero-stats {
  width: min(100%, 1260px);
  gap: 36px;
  margin-top: 26px;
}

.sample-home .hero-stat {
  min-height: 146px;
  border-radius: 24px;
}

.sample-home .sample-heading-light h2,
.sample-home .sample-heading-light p,
.sample-home .sample-heading-light .section-label,
.sample-home .sample-heading-light .section-label::before,
.sample-home .discover-copy .section-label,
.sample-home .discover-copy .section-label::before {
  color: #ffffff;
}

.sample-home .sample-heading-light p,
.sample-home .discover-copy p,
.sample-home .discover-points span {
  color: rgba(255, 255, 255, 0.96);
}

.sample-home .feature-card-grid {
  display: grid;
  width: min(100%, 1820px);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.58fr) minmax(0, 0.98fr);
  gap: 36px;
  align-items: stretch;
}

.sample-home .feature-card,
.sample-home .organise-card,
.sample-home .discover-card {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02)),
    var(--feature-background) center / cover no-repeat;
}

.sample-home .feature-card {
  min-height: 500px;
  padding: 34px 34px 0;
  text-align: center;
}

.sample-home .feature-card h3,
.sample-home .organise-card h3 {
  margin: 0;
  color: #27212f;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.sample-home .feature-card p,
.sample-home .organise-card p {
  margin: 16px auto 0;
  max-width: 70ch;
  color: rgba(39, 33, 47, 0.72);
  font-size: 1.02rem;
  line-height: 1.5;
}

.sample-home .feature-collage {
  position: absolute;
  inset: auto 0 0;
  min-height: 260px;
}

.sample-home .feature-image,
.sample-home .organise-video,
.sample-home .organise-image,
.sample-home .discover-media {
  position: absolute;
  display: block;
  background: transparent;
  box-shadow: none;
}

.sample-home .feature-image,
.sample-home .organise-image,
.sample-home .discover-media,
.sample-home .sample-footer-brand img {
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  vertical-align: bottom;
}

.sample-home .organise-video,
.sample-home .discover-card video,
.sample-home .blind-phone video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sample-home .feature-card-small {
  min-height: 490px;
}

.sample-home .feature-card-large {
  min-height: 490px;
}

.sample-home .feature-card-large p {
  max-width: 68ch;
}

.sample-home .add-card-base {
  left: 5%;
  bottom: -26px;
  width: 272px;
  height: auto;
  max-width: none;
  max-height: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
  object-position: center bottom;
  transform: none;
}

.sample-home .add-card-float {
  right: 6%;
  bottom: -24px;
  width: 232px;
  height: auto;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center bottom;
  transform: none;
}

.sample-home .customise-left {
  left: 10%;
  bottom: -22px;
  width: 22%;
}

.sample-home .customise-center {
  position: absolute;
  left: 30%;
  bottom: -22px;
  width: 40%;
  height: 328px;
}

.sample-home .customise-right {
  right: 10%;
  bottom: -22px;
  width: 22%;
}

.sample-home .publish-video {
  left: 11%;
  right: 11%;
  bottom: 0;
  margin-top: -20px;
  width: auto;
  height: 232px;
  border-radius: 28px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
}

.sample-home .organise-grid,
.sample-home .discover-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 0px;
  align-items: center;
  padding-bottom: 92px;
}

.sample-home .organise-card {
  min-height: 600px;
  width: 80%;
  padding: 42px 36px 0;
  text-align: center;
}

.sample-home #product.section-space-tight .organise-grid {
  padding-bottom: 84px;
}

.sample-home .organise-media {
  position: absolute;
  inset: auto 42px 28px 42px;
  display: grid;
  grid-template-columns: 0.86fr 1.08fr 0.86fr;
  align-items: end;
  gap: 0;
  height: 50px;
  padding: 0;
}

.sample-home .organise-video {
  position: relative;
  grid-column: 2;
  z-index: 1;
  justify-self: center;
  align-self: end;
  left: auto;
  bottom: auto;
  width: min(100%, 388px);
  height: auto;
  aspect-ratio: 1288 / 1116;
  object-fit: cover;
  border-radius: 26px;
  overflow: hidden;
  clip-path: inset(0 round 16px);
}

.sample-home .organise-image-bottom {
  position: relative;
  grid-column: 1;
  z-index: 2;
  justify-self: end;
  align-self: end;
  left: auto;
  bottom: auto;
  width: 100%;
  height: 246px;
  transform: translate(54px, -296px);
  filter: drop-shadow(0 18px 28px rgba(34, 12, 84, 0.52));
}

.sample-home .organise-image-top {
  position: relative;
  grid-column: 3;
  z-index: 2;
  justify-self: start;
  align-self: start;
  right: auto;
  top: auto;
  width: 60%;
  height: 336px;
  transform: translate(-24px, -582px);
  filter: drop-shadow(0 18px 28px rgba(34, 12, 84, 0.52));
}

.sample-home .organise-copy {
  text-align: center;
}

.sample-home .organise-copy p {
  max-width: 36ch;
}

.sample-home .organise-points {
  display: grid;
  gap: 30px;
  margin-top: 34px;
}

.sample-home .discover-points strong {
  display: block;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.sample-home .organise-points strong {
  display: block;
  color: #7746f8;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.sample-home .organise-points span {
  display: block;
  margin-top: 10px;
  color: #7746f8;
  font-size: 1rem;
  line-height: 1.6;
}

.sample-home .loop-shell {
  position: relative;
}

.sample-home .loop-stage {
  position: relative;
  min-height: 430px;
}

.sample-home .loop-cloud {
  position: absolute;
  opacity: 0.76;
  pointer-events: none;
}

.sample-home .loop-cloud-left {
  left: 6%;
  top: 14px;
  width: 31%;
}

.sample-home .loop-cloud-center {
  left: 23%;
  bottom: 12px;
  width: 18%;
}

.sample-home .loop-cloud-right {
  right: 5%;
  top: 112px;
  width: 28%;
}

.sample-home .social-tile {
  position: absolute;
  top: 102px;
  display: grid;
  justify-items: center;
  gap: 18px;
  width: 320px;
  min-height: 288px;
  padding: 34px 28px;
  border-radius: 34px;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  transform: translate3d(var(--tile-shift-x, 0px), var(--tile-shift-y, 0px), 0);
  transition:
    transform 180ms ease,
    box-shadow 220ms ease;
  will-change: transform;
}

.sample-home .social-tile img {
  width: 86px;
  height: 86px;
}

.sample-home .social-tile strong {
  font-size: 1.25rem;
  font-weight: 900;
}

.sample-home .social-tile span {
  font-size: 1.02rem;
  line-height: 1.45;
}

.sample-home .social-tile-x {
  left: 31%;
  background:
    linear-gradient(rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.14)),
    radial-gradient(circle at center, #3b3931, #27241f);
}

.sample-home .social-tile-ig {
  right: 31%;
  background: linear-gradient(180deg, #cc1dc4 0%, #fd256c 54%, #ffac1f 100%);
}

.sample-home .social-tile:hover {
  box-shadow: 0 28px 64px rgba(34, 12, 84, 0.28);
}

.sample-home .blind-heading {
  max-width: 980px;
}

.sample-home .blind-tabs {
  display: flex;
  justify-content: center;
  gap: 72px;
  margin-top: -8px;
}

.sample-home .blind-tab {
  padding: 0 0 10px;
  border: 0;
  border-bottom: 4px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.52);
  font-size: 1.08rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.sample-home .blind-tab.is-active {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.sample-home .blind-panels {
  position: relative;
  min-height: 940px;
}

.sample-home .blind-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 0;
  align-items: center;
  padding-top: 24px;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition:
    opacity 320ms ease,
    transform 320ms ease;
}

.sample-home .blind-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sample-home .blind-hints {
  display: grid;
  gap: 22px;
  padding-left: 72px;
  padding-right: 0;
  align-content: start;
  min-height: 540px;
}

.sample-home .blind-hint {
  padding: 28px 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 1);
  color: #7d4df2;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  opacity: 1;
  transition:
    transform 360ms ease,
    opacity 360ms ease,
    background 360ms ease,
    color 360ms ease;
}

.sample-home .blind-hint.is-entering {
  animation: blind-hint-in 360ms ease;
}

.sample-home .blind-hint.is-strong {
  background: rgba(255, 255, 255, 1);
}

.sample-home .blind-hint.blind-hint-faded {
  background: rgba(255, 255, 255, 1);
  color: #7d4df2;
}

.sample-home .blind-phone {
  display: grid;
  place-items: center;
}

.sample-home .blind-phone-stage {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 0.64;
  overflow: hidden;
  border-radius: 86px;
}

.sample-home .blind-phone video {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 92%;
  height: 94%;
  transform: translate(-50%, -50%);
  border-radius: 96px;
  box-shadow: none;
  object-fit: contain;
  overflow: hidden;
  clip-path: inset(0 round 96px);
}

.sample-home .blind-phone-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.sample-home .discover-copy {
  text-align: center;
  margin-right: 102px;
}

@keyframes blind-hint-in {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sample-home .discover-copy h2 {
  color: #ffffff;
}

.sample-home .discover-points {
  display: grid;
  gap: 26px;
  margin-top: 36px;
}

.sample-home .discover-points span {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.6;
}

.sample-home .discover-card {
  display: grid;
  align-items: stretch;
  min-height: 610px;
  padding: 28px 32px;
}

.sample-home .discover-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.76fr);
  gap: 18px;
  width: 100%;
  height: 100%;
}

.sample-home .discover-column {
  min-width: 0;
  width: 100%;
}

.sample-home .discover-column-stack {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 2px;
  height: auto;
  width: 100%;
}

.sample-home .discover-column-main {
  display: block;
  height: auto;
  width: 100%;
}

.sample-home .discover-asset {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: auto;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(67, 31, 146, 0.12);
  justify-self: stretch;
  align-self: stretch;
}

.sample-home .discover-image-two,
.sample-home .discover-video-two,
.sample-home .discover-image-one {
  object-fit: contain;
}

.sample-home .discover-video-one {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 30px;
}

.sample-home .discover-video-one {
  height: auto;
  max-height: none;
  object-fit: contain;
}

.sample-home .discover-video-two {
  height: auto;
  max-height: 10%;
  object-fit: contain;
}

.sample-home .discover-image-two {
  aspect-ratio: 308 / 288;
}

.sample-home .discover-video-two {
  aspect-ratio: 1066 / 5;
  margin-top: 20px;
  margin-bottom: 100px;
}

.sample-home .discover-image-one {
  aspect-ratio: 293 / 185;
}

.sample-home .discover-video-one {
  aspect-ratio: 1290 / 2796;
}

.sample-home .sample-footer-wrap {
  padding: 0 0 64px;
  background: linear-gradient(90deg, #6d24f3 0%, #8539f8 48%, #9c55f6 100%);
}

.sample-home .sample-footer {
  padding: 48px 56px 32px;
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.98);
}

.sample-home .sample-footer-links {
  display: flex;
  justify-content: center;
  gap: 110px;
}

.sample-home .sample-footer-links div {
  display: grid;
  gap: 12px;
}

.sample-home .sample-footer-links strong {
  color: #27212f;
  font-size: 1rem;
  font-weight: 900;
}

.sample-home .sample-footer-links a {
  color: rgba(39, 33, 47, 0.62);
  font-weight: 800;
  text-decoration: none;
}

.sample-home .sample-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(39, 33, 47, 0.08);
}

.sample-home .sample-footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #27212f;
  font-weight: 900;
}

.sample-home .sample-footer-brand img {
  width: 54px;
  height: 54px;
  border-radius: 16px;
}

.sample-home .sample-footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
}

.sample-home .sample-footer-social img {
  width: 24px;
  height: 24px;
}

@media (max-width: 1180px) {
  .sample-home .feature-card-grid,
  .sample-home .organise-grid,
  .sample-home .discover-grid,
  .sample-home .blind-panel {
    grid-template-columns: 1fr;
  }

  .sample-home .loop-stage,
  .sample-home .blind-panels {
    min-height: auto;
  }

  .sample-home .blind-panels {
    min-height: 1240px;
  }

  .sample-home .social-tile {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
  }

  .sample-home .loop-stage {
    display: grid;
    justify-items: center;
    gap: 24px;
  }

  .sample-home .loop-cloud {
    display: none;
  }

  .sample-home .sample-footer-links {
    gap: 54px;
  }

  .sample-home .discover-columns {
    grid-template-columns: 1fr;
  }

  .sample-home .discover-column-main {
    min-height: 560px;
  }
}

@media (max-width: 760px) {
  .sample-home .feature-card-grid {
    gap: 22px;
  }

  .sample-home .ranko-hero {
    padding: 54px 0 138px;
  }

  .sample-home .feature-card,
  .sample-home .organise-card,
  .sample-home .discover-card {
    border-radius: 28px;
  }

  .sample-home .feature-card {
    min-height: 520px;
    padding: 28px 22px 0;
  }

  .sample-home .feature-card h3,
  .sample-home .organise-card h3 {
    font-size: 2.2rem;
  }

  .sample-home .customise-left {
    left: 8%;
    width: 27%;
  }

  .sample-home .customise-right {
    right: 8%;
    width: 25%;
  }

  .sample-home .organise-card {
    min-height: 560px;
    padding: 28px 22px 0;
  }

  .sample-home .organise-video {
    left: 26%;
    width: 48%;
  }

  .sample-home .social-tile {
    width: min(100%, 320px);
    min-height: 252px;
  }

  .sample-home .blind-panels {
    min-height: 1100px;
  }

  .sample-home .blind-hints {
    padding-left: 0;
    min-height: 0;
  }

  .sample-home .blind-hint {
    padding: 22px 20px;
    border-radius: 22px;
  }

  .sample-home .discover-card {
    min-height: 520px;
    padding: 22px;
  }

  .sample-home .discover-column-main {
    min-height: 420px;
  }

  .sample-home .sample-footer {
    padding: 32px 24px 24px;
    border-radius: 28px;
  }

  .sample-home .sample-footer-links,
  .sample-home .sample-footer-bottom {
    flex-direction: column;
    gap: 26px;
  }

  .sample-home .hero-title-reference span {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-v2 .signal-track,
  .landing-v2 .capsule-marquee {
    animation: none;
  }

  .landing-v2 .spotlight-panel,
  .landing-v2 .story-panel,
  .landing-v2 .spotlight-button,
  .landing-v2 .story-button,
  .sample-home .blind-panel {
    transition: none;
  }
}
