:root {
  --rs-ink: #080c14;
  --rs-panel: #101722;
  --rs-panel-2: #141d2a;
  --rs-cream: #f6f1e8;
  --rs-paper: #eee7dc;
  --rs-coral: #f6724e;
  --rs-hot: #ff805c;
  --rs-cyan: #a7f1ee;
  --rs-green: #6ce0ae;
  --rs-muted: #9da3ad;
  --rs-line: rgba(255, 255, 255, 0.11);
  --rs-max: 1240px;
  --rs-radius: 20px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--rs-ink);
  color: var(--rs-cream);
  font-family: Montserrat, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  padding: 12px 16px;
  background: var(--rs-cream);
  color: var(--rs-ink);
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
}
.premium-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 76px;
  padding: 0 max(22px, calc((100vw - var(--rs-max)) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  background: rgba(8, 12, 20, 0.82);
  border-top: 2px solid var(--rs-coral);
  border-bottom: 1px solid var(--rs-line);
  backdrop-filter: blur(20px);
}
.premium-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.premium-brand img {
  width: 36px;
  height: 38px;
}
.premium-word {
  font:
    700 23px/1 Gotham,
    Montserrat,
    sans-serif;
  letter-spacing: -0.055em;
}
.premium-word span {
  font-weight: 400;
}
.premium-nav {
  display: flex;
  justify-content: center;
  gap: 27px;
}
.premium-nav a {
  font:
    600 10px/1 Gotham,
    Montserrat,
    sans-serif;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(246, 241, 232, 0.63);
  transition: color 0.2s;
}
.premium-nav a:hover,
.premium-nav a[aria-current="page"] {
  color: var(--rs-coral);
}
.premium-cta {
  justify-self: end;
  padding: 12px 17px;
  border: 1px solid rgba(246, 114, 78, 0.58);
  border-radius: 5px;
  text-decoration: none;
  font:
    700 10px/1 Gotham,
    Montserrat,
    sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.25s;
}
.premium-cta:hover {
  background: var(--rs-coral);
  box-shadow: 0 0 30px rgba(246, 114, 78, 0.22);
}
.premium-menu {
  display: none;
}
.premium-hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.premium-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 12, 20, 0.99) 0%,
    rgba(8, 12, 20, 0.95) 34%,
    rgba(8, 12, 20, 0.34) 72%,
    rgba(8, 12, 20, 0.66) 100%
  );
  pointer-events: none;
}
.premium-hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.premium-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(246, 114, 78, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 114, 78, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}
.premium-hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--rs-max);
  margin: auto;
  padding: 110px 28px 105px;
}
.premium-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--rs-coral);
  font:
    600 10px/1 Gotham,
    Montserrat,
    sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.premium-kicker:before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}
.premium-hero h1 {
  max-width: 780px;
  margin: 0;
  font:
    700 clamp(52px, 6.5vw, 92px) / 0.95 Gotham,
    Montserrat,
    sans-serif;
  letter-spacing: -0.062em;
}
.premium-hero h1 span {
  display: block;
  margin-top: 12px;
  color: var(--rs-coral);
  font-weight: 400;
}
.premium-lede {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(246, 241, 232, 0.69);
  font-size: 17px;
  line-height: 1.75;
}
.premium-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 38px;
}
.premium-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border: 1px solid var(--rs-coral);
  border-radius: 5px;
  background: var(--rs-coral);
  color: #fff;
  text-decoration: none;
  font:
    700 10px/1 Gotham,
    Montserrat,
    sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.25s;
}
.premium-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(246, 114, 78, 0.22);
}
.premium-button.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
}
.premium-button.secondary:hover {
  border-color: var(--rs-coral);
  box-shadow: none;
}
.trust-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: rgba(246, 241, 232, 0.43);
  font-size: 11px;
}
.trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rs-green);
  box-shadow: 0 0 0 6px rgba(108, 224, 174, 0.08);
  animation: trust-pulse 2.2s ease-in-out infinite;
}
.scroll-cue {
  position: absolute;
  z-index: 4;
  right: max(28px, calc((100vw - var(--rs-max)) / 2));
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(246, 241, 232, 0.42);
  font:
    600 9px/1 Gotham,
    Montserrat,
    sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-track {
  position: relative;
  width: 1px;
  height: 54px;
  background: rgba(255, 255, 255, 0.13);
  overflow: hidden;
}
.scroll-track:after {
  content: "";
  position: absolute;
  left: 0;
  top: -50%;
  width: 1px;
  height: 45%;
  background: var(--rs-coral);
  animation: scroll-line 1.9s ease-in-out infinite;
}
.proof-strip {
  border-top: 1px solid var(--rs-line);
  border-bottom: 1px solid var(--rs-line);
  background: #0b111b;
}
.proof-inner {
  max-width: var(--rs-max);
  margin: auto;
  padding: 28px;
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  align-items: center;
  gap: 25px;
}
.proof-copy {
  color: rgba(246, 241, 232, 0.48);
  font-size: 11px;
  line-height: 1.6;
}
.stat {
  padding-left: 22px;
  border-left: 1px solid var(--rs-line);
}
.stat strong {
  display: block;
  color: var(--rs-cream);
  font:
    700 31px/1 Gotham,
    Montserrat,
    sans-serif;
  letter-spacing: -0.04em;
}
.stat span {
  display: block;
  margin-top: 8px;
  color: rgba(246, 241, 232, 0.4);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.premium-section {
  padding: 110px max(28px, calc((100vw - var(--rs-max)) / 2));
}
.premium-section.paper {
  background: var(--rs-paper);
  color: var(--rs-ink);
}
.premium-section.panel {
  background: #0b111b;
}
.section-head {
  max-width: 760px;
  margin-bottom: 52px;
}
.section-head.wide {
  max-width: 940px;
}
.section-head h2 {
  margin: 0;
  font:
    700 clamp(40px, 5vw, 67px) / 1 Gotham,
    Montserrat,
    sans-serif;
  letter-spacing: -0.055em;
}
.section-head p:not(.premium-kicker) {
  max-width: 680px;
  margin: 22px 0 0;
  color: #646870;
  font-size: 15px;
  line-height: 1.75;
}
.panel .section-head p:not(.premium-kicker),
.premium-section:not(.paper) .section-head p:not(.premium-kicker) {
  color: rgba(246, 241, 232, 0.57);
}
.glow-border {
  position: relative;
  border-radius: var(--rs-radius);
  background:
    linear-gradient(var(--rs-panel), var(--rs-panel)) padding-box,
    linear-gradient(
        115deg,
        rgba(246, 114, 78, 0.25),
        var(--rs-coral),
        var(--rs-cyan),
        rgba(246, 114, 78, 0.15)
      )
      border-box;
  border: 1px solid transparent;
  color: var(--rs-cream);
  overflow: hidden;
}
.glow-border:before {
  content: "";
  position: absolute;
  inset: -80%;
  background: conic-gradient(
    from 0deg,
    transparent 0 70%,
    rgba(246, 114, 78, 0.18) 78%,
    rgba(167, 241, 238, 0.14) 84%,
    transparent 91%
  );
  animation: orbit-border 12s linear infinite;
  pointer-events: none;
}
.glow-border > * {
  position: relative;
  z-index: 1;
}
.content-split .contact-email {
  margin: 0;
  font:
    700 clamp(15px, 4.2vw, 32px) / 1.08 Gotham,
    Montserrat,
    sans-serif;
  letter-spacing: -0.045em;
  overflow-wrap: anywhere;
}
.content-split > * {
  min-width: 0;
}
.product-grid-premium {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.product-tile {
  position: relative;
  min-height: 330px;
  padding: 27px 27px 92px;
  border: 1px solid rgba(8, 12, 20, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.64);
  overflow: hidden;
  transition: 0.3s;
}
.product-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(246, 114, 78, 0.5);
  box-shadow: 0 25px 65px rgba(25, 23, 24, 0.09);
}
.product-tile .tile-no {
  font:
    700 10px/1 Gotham,
    Montserrat,
    sans-serif;
  color: var(--rs-coral);
  letter-spacing: 0.13em;
}
.product-glyph {
  width: 43px;
  height: 43px;
  margin: 40px 0 27px;
  border: 1px solid rgba(246, 114, 78, 0.28);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--rs-coral);
  transition: 0.3s;
}
.product-tile:hover .product-glyph {
  background: var(--rs-coral);
  color: white;
  box-shadow: 0 0 0 10px rgba(246, 114, 78, 0.07);
}
.product-glyph svg {
  width: 20px;
  height: 20px;
}
.product-tile h3 {
  margin: 0;
  font:
    700 25px/1 Gotham,
    Montserrat,
    sans-serif;
  letter-spacing: -0.035em;
}
.product-tile p {
  margin: 14px 0 0;
  color: #555960;
  font-size: 12px;
  line-height: 1.65;
}
.product-tile small {
  position: absolute;
  left: 27px;
  right: 27px;
  bottom: 49px;
  color: #73767c;
  font-size: 9px;
  line-height: 1.45;
}
.tile-link {
  position: absolute;
  left: 27px;
  right: 27px;
  bottom: 20px;
  color: #a73e25;
  font:
    700 9px/1 Gotham,
    Montserrat,
    sans-serif;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.engine-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.engine-media {
  position: relative;
  padding: 1px;
}
.engine-media img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 19px;
}
.engine-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 280px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(8, 12, 20, 0.84);
  backdrop-filter: blur(12px);
  color: rgba(246, 241, 232, 0.76);
  font-size: 11px;
  line-height: 1.55;
}
.engine-badge strong {
  display: block;
  margin-bottom: 4px;
  color: var(--rs-coral);
  font:
    700 9px/1 Gotham,
    Montserrat,
    sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.human-story {
  padding: 110px max(28px, calc((100vw - var(--rs-max)) / 2));
  background: var(--rs-cream);
  color: var(--rs-ink);
}
.human-story-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  align-items: center;
  max-width: var(--rs-max);
  margin: 0 auto;
}
.human-story-media {
  position: relative;
  margin: 0;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid rgba(8, 12, 20, 0.1);
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(29, 24, 20, 0.14);
}
.human-story-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 62%, rgba(8, 12, 20, 0.12));
  pointer-events: none;
}
.human-story-media img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}
.human-story-copy {
  position: relative;
  z-index: 2;
  margin-left: -62px;
  padding: 50px;
  border: 1px solid rgba(246, 114, 78, 0.28);
  border-radius: 18px;
  background: rgba(11, 17, 27, 0.97);
  color: var(--rs-cream);
  box-shadow: 0 28px 70px rgba(8, 12, 20, 0.25);
}
.human-story-copy h2 {
  margin: 0;
  font:
    700 clamp(35px, 4vw, 55px) / 1.02 Gotham,
    Montserrat,
    sans-serif;
  letter-spacing: -0.05em;
}
.human-story-copy > p:not(.premium-kicker) {
  margin: 22px 0 0;
  color: rgba(246, 241, 232, 0.7);
  font-size: 14px;
  line-height: 1.75;
}
.human-story-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: rgba(246, 241, 232, 0.84);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.human-story-note:before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--rs-coral);
  box-shadow: 0 0 0 7px rgba(246, 114, 78, 0.1);
}
.human-story--reverse .human-story-inner {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
}
.human-story--reverse .human-story-media {
  grid-column: 2;
  grid-row: 1;
}
.human-story--reverse .human-story-copy {
  grid-column: 1;
  grid-row: 1;
  margin-right: -62px;
  margin-left: 0;
}
.human-story--reverse .human-story-media:after {
  background: linear-gradient(270deg, transparent 62%, rgba(8, 12, 20, 0.12));
}
.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}
.feature-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
}
.feature-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(246, 114, 78, 0.28);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--rs-coral);
  font-weight: 700;
}
.feature-item h3 {
  margin: 2px 0 7px;
  font:
    700 15px/1.1 Gotham,
    Montserrat,
    sans-serif;
}
.feature-item p {
  margin: 0;
  color: rgba(246, 241, 232, 0.51);
  font-size: 12px;
  line-height: 1.6;
}
.process-premium {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-premium:before {
  content: "";
  position: absolute;
  top: 26px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: rgba(246, 114, 78, 0.22);
}
.process-node {
  position: relative;
  padding: 0 24px 0 0;
}
.process-number {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--rs-ink);
  border: 1px solid var(--rs-coral);
  color: var(--rs-coral);
  font:
    700 10px/1 Gotham,
    Montserrat,
    sans-serif;
  box-shadow: 0 0 0 8px var(--rs-ink);
}
.process-node h3 {
  margin: 30px 0 12px;
  font:
    700 18px/1.15 Gotham,
    Montserrat,
    sans-serif;
}
.process-node p {
  margin: 0;
  color: rgba(246, 241, 232, 0.51);
  font-size: 12px;
  line-height: 1.65;
}
.progress-rail {
  height: 5px;
  margin-top: 22px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.progress-fill {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--rs-coral), var(--rs-cyan));
  box-shadow: 0 0 14px rgba(246, 114, 78, 0.5);
  transition: width 1.15s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.process-node.is-visible .progress-fill {
  width: var(--progress);
}
.market-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}
.market-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.market-card {
  min-height: 170px;
  padding: 24px;
  border: 1px solid rgba(8, 12, 20, 0.11);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.6);
}
.market-card strong {
  font:
    700 18px/1 Gotham,
    Montserrat,
    sans-serif;
}
.market-card p {
  margin: 13px 0;
  color: #6b6b70;
  font-size: 11px;
  line-height: 1.65;
}
.market-card small {
  color: var(--rs-coral);
  font:
    700 8px/1 Gotham,
    Montserrat,
    sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.insight-grid-premium {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 14px;
}
.insight-card {
  min-height: 390px;
  padding: 28px;
  border: 1px solid var(--rs-line);
  border-radius: 15px;
  background: var(--rs-panel);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: 0.3s;
}
.insight-card:hover {
  transform: translateY(-5px);
  border-color: rgba(246, 114, 78, 0.5);
}
.insight-card img {
  width: calc(100% + 56px);
  max-width: none;
  height: 180px;
  margin: -28px -28px 26px;
  object-fit: cover;
}
.insight-card small {
  color: var(--rs-coral);
  font:
    700 9px/1 Gotham,
    Montserrat,
    sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.insight-card h3 {
  margin: 16px 0 13px;
  font:
    700 24px/1.15 Gotham,
    Montserrat,
    sans-serif;
  letter-spacing: -0.035em;
}
.insight-card p {
  margin: 0;
  color: rgba(246, 241, 232, 0.5);
  font-size: 11px;
  line-height: 1.7;
}
.insight-card .read {
  margin-top: auto;
  padding-top: 22px;
  color: var(--rs-coral);
  font-size: 10px;
}
.premium-cta-band {
  padding: 95px 28px;
  text-align: center;
  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(246, 114, 78, 0.18),
      transparent 45%
    ),
    #080c14;
  border-top: 1px solid var(--rs-line);
}
.premium-cta-band h2 {
  max-width: 850px;
  margin: 0 auto;
  font:
    700 clamp(42px, 5vw, 68px) / 1 Gotham,
    Montserrat,
    sans-serif;
  letter-spacing: -0.055em;
}
.premium-cta-band p {
  max-width: 620px;
  margin: 24px auto 32px;
  color: rgba(246, 241, 232, 0.57);
  font-size: 14px;
  line-height: 1.7;
}
.premium-footer {
  padding: 68px max(28px, calc((100vw - var(--rs-max)) / 2)) 25px;
  background: #05080d;
  border-top: 1px solid var(--rs-line);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.15fr 1.35fr 0.8fr 0.8fr;
  gap: 55px;
}
.footer-intro p {
  max-width: 300px;
  color: rgba(246, 241, 232, 0.42);
  font-size: 12px;
  line-height: 1.7;
}
.footer-col h2 {
  margin: 0 0 19px;
  color: rgba(246, 241, 232, 0.35);
  font:
    700 9px/1 Gotham,
    Montserrat,
    sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-col a {
  display: block;
  margin: 0 0 12px;
  color: rgba(246, 241, 232, 0.68);
  font-size: 11px;
  text-decoration: none;
}
.footer-col a:hover {
  color: var(--rs-coral);
}
.footer-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
}
.footer-profile-link {
  display: inline-flex;
  min-height: 42px;
  margin-top: 9px;
  padding: 12px 15px;
  align-items: center;
  border: 1px solid rgba(246, 114, 78, 0.45);
  border-radius: 5px;
  color: var(--rs-cream);
  font:
    700 9px/1 Gotham,
    Montserrat,
    sans-serif;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}
.footer-profile-link:hover {
  border-color: var(--rs-coral);
  background: rgba(246, 114, 78, 0.08);
}
.footer-bottom {
  margin-top: 52px;
  padding-top: 20px;
  border-top: 1px solid var(--rs-line);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: rgba(246, 241, 232, 0.29);
  font-size: 9px;
  line-height: 1.65;
}
.footer-bottom p {
  max-width: 760px;
  margin: 0;
}
.page-hero {
  padding: 115px max(28px, calc((100vw - var(--rs-max)) / 2)) 90px;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(246, 114, 78, 0.15),
      transparent 38%
    ),
    var(--rs-ink);
}
.page-hero h1 {
  max-width: 920px;
  margin: 0;
  font:
    700 clamp(52px, 7vw, 88px) / 0.96 Gotham,
    Montserrat,
    sans-serif;
  letter-spacing: -0.06em;
}
.page-hero h1 span {
  color: var(--rs-coral);
  font-weight: 400;
}
.page-hero > p:not(.premium-kicker) {
  max-width: 720px;
  margin: 27px 0 0;
  color: rgba(246, 241, 232, 0.58);
  font-size: 16px;
  line-height: 1.75;
}
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.content-split h2 {
  margin: 0;
  font:
    700 clamp(36px, 4vw, 58px) / 1 Gotham,
    Montserrat,
    sans-serif;
  letter-spacing: -0.05em;
}
.content-split p {
  color: #60646b;
  font-size: 14px;
  line-height: 1.85;
}
.panel .content-split p {
  color: rgba(246, 241, 232, 0.58);
}
.quote-block {
  padding: 34px;
  border-left: 3px solid var(--rs-coral);
  background: rgba(246, 114, 78, 0.07);
  font:
    500 23px/1.45 Gotham,
    Montserrat,
    sans-serif;
}
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}
.faq-list details {
  border: 1px solid var(--rs-line);
  border-radius: 12px;
  background: var(--rs-panel);
  padding: 0 24px;
}
.faq-list summary {
  cursor: pointer;
  padding: 22px 0;
  font:
    700 15px/1.3 Gotham,
    Montserrat,
    sans-serif;
}
.faq-list p {
  margin: 0 0 22px;
  color: rgba(246, 241, 232, 0.55);
  font-size: 12px;
  line-height: 1.75;
}
.blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 35px;
}
.blog-filter button {
  padding: 10px 14px;
  border: 1px solid var(--rs-line);
  border-radius: 999px;
  background: transparent;
  color: rgba(246, 241, 232, 0.58);
  font:
    600 9px/1 Gotham,
    Montserrat,
    sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.blog-filter button.active,
.blog-filter button:hover {
  border-color: var(--rs-coral);
  color: var(--rs-cream);
  background: rgba(246, 114, 78, 0.08);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.blog-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--rs-line);
  border-radius: 15px;
  background: var(--rs-panel);
  overflow: hidden;
  text-decoration: none;
  transition: 0.3s;
}
.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(246, 114, 78, 0.5);
}
.blog-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.blog-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}
.blog-card .tag {
  color: var(--rs-coral);
  font:
    700 8px/1 Gotham,
    Montserrat,
    sans-serif;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.blog-card h2 {
  margin: 14px 0 12px;
  font:
    700 22px/1.15 Gotham,
    Montserrat,
    sans-serif;
  letter-spacing: -0.035em;
}
.blog-card p {
  margin: 0;
  color: rgba(246, 241, 232, 0.5);
  font-size: 11px;
  line-height: 1.7;
}
.blog-card time {
  margin-top: auto;
  padding-top: 20px;
  color: rgba(246, 241, 232, 0.48);
  font-size: 9px;
}
.article-header {
  position: relative;
  padding: 100px max(28px, calc((100vw - 1040px) / 2)) 70px;
  background: #0b111b;
}
.article-header .article-category {
  color: var(--rs-coral);
  font:
    700 9px/1 Gotham,
    Montserrat,
    sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.article-header h1 {
  max-width: 950px;
  margin: 22px 0 0;
  font:
    700 clamp(45px, 6vw, 76px) / 1 Gotham,
    Montserrat,
    sans-serif;
  letter-spacing: -0.055em;
}
.article-header .deck {
  max-width: 760px;
  margin: 25px 0 0;
  color: rgba(246, 241, 232, 0.58);
  font-size: 16px;
  line-height: 1.75;
}
.article-header .meta {
  margin-top: 25px;
  color: rgba(246, 241, 232, 0.34);
  font-size: 10px;
}
.article-image {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}
.article-wrap {
  background: var(--rs-paper);
}
.article-shell {
  max-width: 1100px;
  margin: auto;
  padding: 75px 28px 110px;
  display: grid;
  grid-template-columns: minmax(0, 720px) 280px;
  gap: 70px;
  align-items: start;
  color: var(--rs-ink);
}
.article-copy {
  font-size: 16px;
  line-height: 1.9;
}
.article-copy > p:first-child {
  font-size: 20px;
  line-height: 1.65;
}
.article-copy h2 {
  margin: 55px 0 15px;
  font:
    700 34px/1.08 Gotham,
    Montserrat,
    sans-serif;
  letter-spacing: -0.04em;
}
.article-copy h3 {
  margin: 38px 0 10px;
  font:
    700 21px/1.2 Gotham,
    Montserrat,
    sans-serif;
}
.article-copy a {
  color: #b64227;
}
.article-copy blockquote {
  margin: 40px 0;
  padding: 25px 28px;
  border-left: 3px solid var(--rs-coral);
  background: rgba(246, 114, 78, 0.08);
  font:
    500 21px/1.5 Gotham,
    Montserrat,
    sans-serif;
}
.article-copy ul {
  padding-left: 22px;
}
.article-copy li {
  margin-bottom: 10px;
}
.article-aside {
  position: sticky;
  top: 105px;
  padding: 25px;
  border: 1px solid rgba(8, 12, 20, 0.12);
  border-radius: 13px;
  background: #fff;
}
.article-aside strong {
  font:
    700 19px/1.2 Gotham,
    Montserrat,
    sans-serif;
}
.article-aside p {
  color: #686b71;
  font-size: 11px;
  line-height: 1.65;
}
.article-aside a {
  display: block;
  margin-top: 18px;
  padding: 12px;
  background: var(--rs-coral);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font:
    700 9px/1 Gotham,
    Montserrat,
    sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.source-box {
  margin-top: 50px;
  padding-top: 28px;
  border-top: 1px solid rgba(8, 12, 20, 0.14);
}
.source-box h2 {
  margin-top: 0;
  font-size: 22px;
}
.source-box li {
  font-size: 12px;
  line-height: 1.6;
}
.sample-stage {
  position: relative;
  max-width: 1050px;
  margin: auto;
  padding: 44px;
  border: 1px solid var(--rs-line);
  border-radius: 22px;
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(246, 114, 78, 0.13),
      transparent 35%
    ),
    #0b111b;
  color: var(--rs-cream);
  overflow: hidden;
}
.sample-stage:before {
  content: "YOUR REACHSPOT ALERT";
  display: block;
  margin-bottom: 20px;
  color: rgba(246, 241, 232, 0.34);
  font:
    700 8px/1 Gotham,
    Montserrat,
    sans-serif;
  letter-spacing: 0.16em;
}
.sample-alert {
  position: relative;
  max-width: 720px;
  margin: auto;
  padding: 31px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  background: rgba(17, 24, 36, 0.96);
  color: var(--rs-cream);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
}
.sample-alert-head,
.sample-facts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.sample-tag {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(246, 114, 78, 0.13);
  color: var(--rs-coral);
  font:
    700 8px/1 Gotham,
    Montserrat,
    sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.sample-score {
  color: var(--rs-green);
  font:
    700 10px/1 Gotham,
    Montserrat,
    sans-serif;
}
.sample-alert h2 {
  margin: 25px 0 12px;
  font:
    700 29px/1.1 Gotham,
    Montserrat,
    sans-serif;
  letter-spacing: -0.04em;
}
.sample-alert > p {
  color: rgba(246, 241, 232, 0.57);
  font-size: 12px;
  line-height: 1.7;
}
.sample-facts {
  margin: 24px 0;
  padding: 18px 0;
  border-top: 1px solid var(--rs-line);
  border-bottom: 1px solid var(--rs-line);
  justify-content: flex-start;
  flex-wrap: wrap;
}
.sample-facts span {
  padding-right: 18px;
  border-right: 1px solid var(--rs-line);
  color: rgba(246, 241, 232, 0.75);
  font-size: 10px;
}
.sample-reason {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  align-items: start;
}
.sample-reason i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--rs-coral);
  font-style: normal;
  font-weight: 700;
}
.sample-reason strong {
  display: block;
  font:
    700 12px/1.2 Gotham,
    Montserrat,
    sans-serif;
}
.sample-reason p {
  margin: 6px 0 0;
  color: rgba(246, 241, 232, 0.52);
  font-size: 11px;
  line-height: 1.6;
}
.sample-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.sample-actions span {
  padding: 11px 14px;
  border: 1px solid var(--rs-line);
  border-radius: 4px;
  color: rgba(246, 241, 232, 0.55);
  font:
    700 8px/1 Gotham,
    Montserrat,
    sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sample-actions .primary {
  background: var(--rs-coral);
  border-color: var(--rs-coral);
  color: white;
}
.product-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.product-point {
  padding: 23px;
  border: 1px solid rgba(8, 12, 20, 0.11);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
}
.product-point b {
  display: block;
  margin-bottom: 10px;
  color: var(--rs-coral);
  font:
    700 9px/1 Gotham,
    Montserrat,
    sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.product-point p {
  margin: 0;
  color: #686b71;
  font-size: 11px;
  line-height: 1.65;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@keyframes orbit-border {
  to {
    transform: rotate(360deg);
  }
}
@keyframes scroll-line {
  0% {
    top: -50%;
  }
  65%,
  100% {
    top: 110%;
  }
}
@keyframes trust-pulse {
  50% {
    box-shadow: 0 0 0 10px rgba(108, 224, 174, 0);
  }
}
@media (max-width: 980px) {
  .premium-nav {
    display: none;
  }
  .premium-menu {
    display: block;
    justify-self: end;
    background: transparent;
    border: 1px solid var(--rs-line);
    border-radius: 4px;
    padding: 9px 11px;
    color: var(--rs-cream);
    font:
      600 9px/1 Gotham,
      Montserrat,
      sans-serif;
    text-transform: uppercase;
  }
  .premium-cta {
    display: none;
  }
  .premium-header {
    grid-template-columns: auto 1fr auto;
  }
  .premium-nav.open {
    display: flex;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    padding: 24px;
    background: #0a0f18;
    border-bottom: 1px solid var(--rs-line);
    flex-direction: column;
    align-items: flex-start;
  }
  .product-grid-premium {
    grid-template-columns: 1fr 1fr;
  }
  .engine-layout,
  .market-grid,
  .content-split {
    grid-template-columns: 1fr;
  }
  .human-story-inner,
  .human-story--reverse .human-story-inner {
    grid-template-columns: 1fr;
  }
  .human-story--reverse .human-story-media,
  .human-story--reverse .human-story-copy {
    grid-column: 1;
  }
  .human-story--reverse .human-story-media {
    grid-row: 1;
  }
  .human-story-copy,
  .human-story--reverse .human-story-copy {
    grid-row: 2;
    margin: -46px 28px 0;
  }
  .proof-inner {
    grid-template-columns: 1fr 1fr;
  }
  .proof-copy {
    grid-column: 1/-1;
  }
  .process-premium {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }
  .process-premium:before {
    display: none;
  }
  .insight-grid-premium {
    grid-template-columns: 1fr 1fr;
  }
  .insight-card:first-child {
    grid-column: 1/-1;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .premium-header {
    height: 66px;
    padding: 0 18px;
  }
  .premium-nav.open {
    top: 64px;
  }
  .premium-hero {
    min-height: 720px;
  }
  .premium-hero:after {
    background: linear-gradient(
      180deg,
      rgba(8, 12, 20, 0.9),
      rgba(8, 12, 20, 0.96) 66%,
      #080c14
    );
  }
  .premium-hero-art {
    opacity: 0.52;
    object-position: 64% center;
  }
  .premium-hero-inner {
    padding: 95px 20px 100px;
  }
  .premium-hero h1 {
    font-size: 51px;
  }
  .premium-lede {
    font-size: 14px;
  }
  .premium-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .premium-button {
    width: 100%;
  }
  .scroll-cue {
    display: none;
  }
  .proof-inner {
    grid-template-columns: 1fr 1fr;
    padding: 24px 20px;
  }
  .stat {
    padding-left: 14px;
  }
  .stat strong {
    font-size: 26px;
  }
  .premium-section {
    padding: 78px 20px;
  }
  .human-story {
    padding: 72px 20px;
  }
  .human-story-media,
  .human-story-media img {
    min-height: 360px;
  }
  .human-story-copy,
  .human-story--reverse .human-story-copy {
    margin: -30px 12px 0;
    padding: 30px 26px;
  }
  .human-story-copy h2 {
    font-size: clamp(36px, 10.5vw, 46px);
  }
  .product-grid-premium,
  .market-cards,
  .process-premium,
  .insight-grid-premium,
  .footer-top {
    grid-template-columns: 1fr;
  }
  .product-tile {
    min-height: 260px;
  }
  .engine-layout,
  .market-grid {
    gap: 42px;
  }
  .process-node {
    padding-right: 0;
  }
  .insight-card:first-child {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .page-hero {
    padding: 88px 20px 68px;
  }
  .page-hero h1 {
    font-size: 51px;
  }
}
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .article-shell {
    grid-template-columns: 1fr;
  }
  .article-aside {
    position: static;
  }
  .product-points {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .article-header {
    padding: 75px 20px 50px;
  }
  .article-header h1 {
    font-size: 43px;
  }
  .article-shell {
    padding: 55px 20px 75px;
  }
  .article-copy {
    font-size: 15px;
  }
  .article-copy > p:first-child {
    font-size: 18px;
  }
  .product-points {
    grid-template-columns: 1fr;
  }
  .sample-stage {
    padding: 18px;
  }
  .sample-alert {
    padding: 22px;
  }
  .sample-alert h2 {
    font-size: 24px;
  }
  .sample-actions {
    flex-direction: column;
  }
  .sample-actions span {
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .glow-border:before,
  .scroll-track:after,
  .trust-dot {
    animation: none;
  }
  .progress-fill {
    transition: none;
    width: var(--progress);
  }
}

/* Shared launch visual system */
.rs-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: invert(52%) sepia(91%) saturate(1540%) hue-rotate(329deg)
    brightness(103%) contrast(93%);
}
.page-hero {
  position: relative;
  min-height: 570px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--rs-ink);
  background:
    radial-gradient(
      circle at 82% 45%,
      rgba(246, 114, 78, 0.17),
      transparent 25%
    ),
    linear-gradient(135deg, #fbf7f0 0%, var(--rs-paper) 100%);
  border-bottom: 1px solid rgba(8, 12, 20, 0.08);
}
.page-hero:before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(8, 12, 20, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 12, 20, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, #000 0 45%, transparent 82%);
}
.page-hero > *:not(.page-hero-visual) {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  max-width: 850px;
}
.page-hero h1 span {
  display: block;
  margin-top: 0.08em;
}
.page-hero > p:not(.premium-kicker) {
  max-width: 650px;
  color: #555b64;
}
.page-hero-visual {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: max(4vw, calc((100vw - var(--rs-max)) / 2));
  width: 285px;
  height: 285px;
  transform: translateY(-50%);
  border: 1px solid rgba(246, 114, 78, 0.35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.9), transparent 63%),
    rgba(246, 114, 78, 0.05);
  box-shadow:
    0 0 0 28px rgba(246, 114, 78, 0.045),
    0 34px 80px rgba(45, 27, 20, 0.12);
  animation: hero-float 6s ease-in-out infinite;
}
.page-hero-visual:before,
.page-hero-visual:after,
.page-hero-visual span {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.page-hero-visual:before {
  inset: 35px;
  border: 1px dashed rgba(246, 114, 78, 0.32);
  animation: orbit-border 18s linear infinite;
}
.page-hero-visual:after {
  width: 14px;
  height: 14px;
  top: 35px;
  right: 54px;
  background: var(--rs-coral);
  box-shadow: 0 0 24px rgba(246, 114, 78, 0.85);
}
.page-hero-visual span {
  width: 8px;
  height: 8px;
  left: 27px;
  bottom: 78px;
  background: var(--rs-cyan);
  box-shadow: 0 0 20px rgba(95, 201, 198, 0.8);
}
.page-hero-icon {
  width: 92px;
  height: 92px;
  filter: invert(52%) sepia(91%) saturate(1540%) hue-rotate(329deg)
    brightness(103%) contrast(93%);
}
.product-glyph .rs-icon,
.feature-icon .rs-icon,
.point-icon .rs-icon,
.market-icon .rs-icon,
.price-icon .rs-icon {
  width: 21px;
  height: 21px;
}
.product-tile:hover .product-glyph .rs-icon {
  filter: brightness(0) invert(1);
}
.product-tile,
.product-point,
.market-card {
  box-shadow: 0 12px 35px rgba(26, 19, 15, 0.045);
}
.product-tile:before,
.product-point:before,
.market-card:before,
.price-card:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 20%,
    rgba(255, 255, 255, 0.52) 45%,
    transparent 70%
  );
  transform: translateX(-125%);
  transition: transform 0.75s ease;
}
.product-tile:hover:before,
.product-point:hover:before,
.market-card:hover:before,
.price-card:hover:before {
  transform: translateX(125%);
}
.product-points {
  gap: 16px;
}
.product-point {
  position: relative;
  min-height: 225px;
  padding: 27px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.product-point:hover {
  transform: translateY(-5px);
  border-color: rgba(246, 114, 78, 0.42);
  box-shadow: 0 24px 52px rgba(38, 25, 20, 0.1);
}
.point-icon,
.market-icon,
.price-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(246, 114, 78, 0.28);
  border-radius: 50%;
  background: rgba(246, 114, 78, 0.055);
}
.product-point b {
  margin-bottom: 13px;
  font-size: 10px;
}
.product-point p {
  font-size: 13px;
  line-height: 1.7;
}
.market-card {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.market-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(38, 25, 20, 0.09);
}
.market-icon {
  margin-bottom: 22px;
}
.feature-item {
  padding: 16px;
  border: 1px solid rgba(246, 114, 78, 0.14);
  border-radius: 12px;
  background: rgba(246, 114, 78, 0.035);
  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}
.feature-item:hover {
  transform: translateX(5px);
  border-color: rgba(246, 114, 78, 0.42);
}
.feature-icon .rs-icon {
  width: 18px;
  height: 18px;
}

/* Finished pricing surface */
.pricing-section {
  background:
    radial-gradient(circle at 20% 0%, rgba(246, 114, 78, 0.1), transparent 28%),
    var(--rs-paper);
  color: var(--rs-ink);
}
.pricing-section .price-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 0;
}
.pricing-section .price-card {
  position: relative;
  min-width: 0;
  padding: 28px;
  overflow: hidden;
  border-color: rgba(8, 12, 20, 0.1);
  background: rgba(255, 255, 255, 0.82);
  color: var(--rs-ink);
  box-shadow: 0 18px 48px rgba(41, 26, 19, 0.07);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.pricing-section .price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(246, 114, 78, 0.45);
  box-shadow: 0 28px 68px rgba(41, 26, 19, 0.13);
}
.pricing-section .price-card.featured {
  background:
    linear-gradient(180deg, rgba(246, 114, 78, 0.07), transparent 42%), #fff;
  border-color: rgba(246, 114, 78, 0.42);
}
.pricing-section .price-card h2 {
  margin: 0 0 11px;
  font-size: 30px;
}
.pricing-section .price-card p {
  min-height: 78px;
  margin: 0;
  color: #5f646c;
  font-size: 12px;
  line-height: 1.7;
}
.pricing-section .price-card .eyebrow {
  min-height: 0;
  margin-bottom: 21px;
  color: #b7442a;
  font-size: 9px;
}
.pricing-section .price {
  margin: 25px 0;
  color: var(--rs-ink);
  font-size: 38px;
}
.pricing-section .price small {
  display: block;
  margin-top: 8px;
  color: #6c7076;
  font-size: 9px;
}
.pricing-section select {
  border-color: rgba(8, 12, 20, 0.14);
  background: #f9f6f0;
  color: var(--rs-ink);
}
.pricing-section .status {
  color: #575d65;
  text-align: center;
}
.pricing-note {
  max-width: 780px;
  margin: 38px auto 0;
  color: #666b72;
  font-size: 12px;
  line-height: 1.75;
  text-align: center;
}
.pricing-section .price-icon {
  margin-bottom: 24px;
}
.pricing-section .primary {
  min-height: 48px;
}

@keyframes hero-float {
  50% {
    transform: translateY(calc(-50% - 10px));
  }
}

@media (max-width: 1100px) {
  .page-hero h1,
  .page-hero > p:not(.premium-kicker) {
    max-width: 68%;
  }
  .page-hero-visual {
    right: -30px;
    width: 245px;
    height: 245px;
  }
  .pricing-section .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .page-hero {
    min-height: 535px;
    padding-top: 105px;
    padding-bottom: 82px;
  }
  .page-hero:before {
    mask-image: linear-gradient(#000, transparent 85%);
  }
  .page-hero h1,
  .page-hero > p:not(.premium-kicker) {
    max-width: none;
  }
  .page-hero h1 {
    font-size: clamp(43px, 12.4vw, 51px);
    line-height: 0.98;
    overflow-wrap: normal;
    word-break: normal;
  }
  .page-hero h1 span {
    margin-top: 0.13em;
  }
  .page-hero > p:not(.premium-kicker) {
    font-size: 14px;
    line-height: 1.7;
  }
  .page-hero-visual {
    top: 68px;
    right: 18px;
    width: 88px;
    height: 88px;
    transform: none;
    box-shadow: 0 0 0 12px rgba(246, 114, 78, 0.04);
    animation: none;
  }
  .page-hero-visual:before {
    inset: 11px;
  }
  .page-hero-visual:after {
    width: 7px;
    height: 7px;
    top: 8px;
    right: 13px;
  }
  .page-hero-visual span {
    display: none;
  }
  .page-hero-icon {
    width: 32px;
    height: 32px;
  }
  .product-point {
    min-height: 0;
    padding: 25px;
  }
  .point-icon {
    margin-bottom: 23px;
  }
  .feature-item {
    grid-template-columns: 44px 1fr;
    padding: 15px;
  }
  .feature-icon {
    width: 44px;
    height: 44px;
  }
  .pricing-section .price-grid {
    grid-template-columns: 1fr;
  }
  .pricing-section .price-card p {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero-visual,
  .page-hero-visual:before {
    animation: none;
  }
}
.price-card.selected {
  outline: 2px solid rgba(255, 111, 77, 0.78);
  box-shadow:
    0 0 0 8px rgba(255, 111, 77, 0.08),
    0 25px 70px rgba(0, 0, 0, 0.3);
}
.payment-notice {
  margin: 0 0 20px;
  padding: 16px 18px;
  border: 1px solid rgba(85, 224, 178, 0.3);
  border-radius: 14px;
  background: rgba(85, 224, 178, 0.08);
  color: #d9fff0;
  font-size: 13px;
  line-height: 1.6;
}
.market-card small {
  display: block;
  margin-bottom: 13px;
  color: #bd4e33;
}
.market-card strong {
  display: block;
  line-height: 1.12;
}
.market-card p {
  margin-bottom: 0;
  color: #5e6268;
}
@media (max-width: 640px) {
  .premium-word {
    font-size: 21px;
  }
  .premium-brand img {
    width: 33px;
    height: 35px;
  }
  .premium-nav.open a {
    width: 100%;
    padding: 9px 0;
    font-size: 11px;
  }
  .premium-hero-inner {
    padding: 88px 20px 84px;
  }
  .premium-hero h1,
  .page-hero h1 {
    font-size: clamp(43px, 13vw, 51px);
    overflow-wrap: anywhere;
  }
  .premium-button {
    min-height: 48px;
    padding: 16px 18px;
  }
  .proof-inner {
    padding: 32px 20px;
    gap: 28px 16px;
  }
  .proof-copy {
    font-size: 13px;
    color: rgba(246, 241, 232, 0.76);
  }
  .stat {
    min-width: 0;
    padding-left: 13px;
  }
  .stat strong {
    font-size: 28px;
  }
  .stat span {
    font-size: 9px;
    line-height: 1.45;
    color: rgba(246, 241, 232, 0.72);
  }
  .premium-section {
    padding: 72px 20px;
  }
  .section-head {
    margin-bottom: 38px;
  }
  .section-head h2 {
    font-size: clamp(38px, 11vw, 48px);
  }
  .product-tile {
    min-height: 0;
    padding: 26px;
  }
  .product-glyph {
    margin: 28px 0 24px;
  }
  .product-tile h3 {
    font-size: 31px;
  }
  .product-tile p {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.6;
  }
  .product-tile small {
    position: static;
    display: block;
    margin-top: 20px;
    color: #666a70;
    font-size: 11px;
    line-height: 1.55;
  }
  .tile-link {
    position: static;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    margin-top: 12px;
    color: #98371f;
    font-size: 10px;
  }
  .engine-media img {
    height: 250px;
    aspect-ratio: auto;
    object-fit: cover;
  }
  .engine-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
  }
  .market-card {
    min-height: 0;
    padding: 25px;
  }
  .market-card strong {
    font-size: 23px;
  }
  .market-card p {
    font-size: 13px;
  }
  .insight-card {
    min-height: 0;
  }
  .premium-cta-band {
    padding: 75px 20px;
  }
  .premium-cta-band h2 {
    font-size: clamp(40px, 11vw, 50px);
  }
  .premium-cta-band .premium-button + .premium-button {
    margin-top: 10px;
  }
  .trust-note {
    align-items: flex-start;
    line-height: 1.55;
  }
  .article-image {
    height: 240px;
    max-height: none;
    object-fit: cover;
  }
  .quote-block {
    padding: 25px 22px;
    font-size: 19px;
  }
  .content-split {
    gap: 35px;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .process-node .progress-fill {
    width: var(--progress);
  }
  .page-hero h1 {
    overflow-wrap: normal;
    word-break: normal;
  }
}
