:root {
  color-scheme: dark;
  --bg: #07101f;
  --bg-deep: #030814;
  --ink: rgba(255, 255, 255, 0.94);
  --text: rgba(255, 255, 255, 0.8);
  --muted: rgba(255, 255, 255, 0.62);
  --line: rgba(255, 255, 255, 0.14);
  --surface: rgba(255, 255, 255, 0.07);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --blue: #168cff;
  --cyan: #23c7ff;
  --violet: #8b5cf6;
  --green: #28d7a6;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial,
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at 18% 12%,
      rgba(35, 199, 255, 0.11),
      transparent 28rem
    ),
    radial-gradient(
      circle at 86% 48%,
      rgba(139, 92, 246, 0.08),
      transparent 26rem
    ),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  line-height: 1.55;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.32;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.018) 0,
    rgba(255, 255, 255, 0.018) 1px,
    transparent 1px,
    transparent 6px
  );
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px max(20px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(4, 9, 19, 0.72);
  backdrop-filter: blur(18px);
}

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

.brand-icon {
  width: 28px;
  height: 28px;
  opacity: 0.85;
  transform: translateY(3px);
}

.brand-text {
  display: inline-flex;
  gap: 6px;
  align-items: baseline;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
}

.brand-text span {
  opacity: 0.72;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  white-space: nowrap;
  line-height: 1;
  text-align: right;
  flex: 0 0 auto;
  font-size: 0.92rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.header-cta-full {
  display: inline;
}

.header-cta-short {
  display: none !important;
}

.hero {
  position: relative;
  min-height: 74svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 82px 0 96px;
  background:
    radial-gradient(
      circle at 16% 16%,
      rgba(35, 199, 255, 0.18),
      transparent 28rem
    ),
    radial-gradient(
      circle at 78% 30%,
      rgba(139, 92, 246, 0.1),
      transparent 26rem
    ),
    linear-gradient(180deg, #081426 0%, #050b18 100%);
}

.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 8, 20, 0.18), transparent 45%),
    repeating-linear-gradient(
      135deg,
      rgba(35, 199, 255, 0.08) 0 1px,
      transparent 1px 18px
    );
  opacity: 0.72;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

#hero-title span {
  margin-top: 0.28em;
}

.hero-copy-block {
  min-width: 0;
}

.hero-dashboard {
  margin: 0;
  min-width: 0;
  transform-origin: center;
}

.hero-dashboard img {
  width: 100%;
  filter: drop-shadow(0 36px 80px rgba(0, 0, 0, 0.42));
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: -0.02em;
}

h1 {
  max-width: 18ch;
  margin-bottom: 22px;
  font-size: clamp(2.85rem, 3.4vw, 3.8rem);
  line-height: 1.05;
}

h1 span,
h2 span {
  display: block;
  width: fit-content;
  max-width: 100%;
  background: linear-gradient(
    90deg,
    var(--cyan),
    var(--blue) 48%,
    var(--violet)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-text {
  display: inline;
  width: auto;
  max-width: none;
  background: linear-gradient(90deg, var(--cyan), var(--blue) 48%, var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 12px 40px rgba(35, 199, 255, 0.18);
}

h2 {
  max-width: 18ch;
  margin-bottom: 16px;
  font-size: clamp(2rem, 5.5vw, 42px);
  line-height: 1.05;
}

h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.7;
}

.hero-copy {
  max-width: 34rem;
  margin-bottom: 26px;
}

.fine-print {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-copy,
.supporting-copy,
.tools-intro,
.section-note {
  max-width: 42rem;
}

.supporting-copy {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
}

.section-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.96rem;
}

.rule-reference {
  max-width: 38rem;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.86rem;
  line-height: 1.55;
}

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

.btn {
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
}

.btn-primary {
  color: #031326;
  background: linear-gradient(90deg, var(--cyan), #77e1ff);
  box-shadow: 0 20px 50px rgba(35, 199, 255, 0.24);
}

.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
}

.section {
  padding: 82px 0;
}

.section-compact {
  padding: 70px 0;
}

.section-dark {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  background:
    radial-gradient(
      540px 320px at 18% 10%,
      rgba(35, 199, 255, 0.14),
      transparent 70%
    ),
    radial-gradient(
      520px 320px at 86% 70%,
      rgba(139, 92, 246, 0.12),
      transparent 72%
    ),
    linear-gradient(180deg, #111a2d 0%, #030814 100%);
}

.section-glow {
  position: relative;
  overflow: hidden;
}

.section-glow::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    520px 300px at 50% -10%,
    rgba(35, 199, 255, 0.1),
    transparent 74%
  );
}

.section-glow > * {
  position: relative;
  z-index: 1;
}

.section-title {
  display: block;
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.section-title .accent {
  display: inline;
  width: auto;
  max-width: none;
  background: linear-gradient(90deg, var(--cyan), var(--blue) 48%, var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-title-full {
  max-width: none;
}

.template-spacer {
  height: 20px;
}

.social-proof-strip {
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

.social-proof-copy {
  max-width: 960px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.55vw, 1.16rem);
  font-weight: 650;
  line-height: 1.55;
  text-align: center;
}

.social-proof-main,
.social-proof-sub {
  display: block;
}

.social-proof-main {
  color: var(--ink);
  font-size: clamp(1.05rem, 1.65vw, 1.22rem);
}

.social-proof-sub {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86em;
}

.section-intro {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
}

.intro-grid,
.proof-grid,
.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.intro-copy {
  max-width: none;
  width: 100%;
}

.final-summary .intro-grid {
  align-items: flex-start;
}

.final-summary .intro-grid > :first-child {
  align-self: flex-start;
}

.intro-support {
  max-width: 31rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.55;
}

.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 12px;
  margin-top: 0;
  width: 100%;
  flex-direction: column;
  gap: 26px;
}

.benefit-group + .benefit-group {
  margin-top: 8px;
}

.benefit-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.seo-benefits {
  margin-top: 44px;
}

.benefit-group-title {
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.benefit-feature-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.benefit-feature-chip {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 94px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.096);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.028);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.048);
}

.benefit-feature-chip strong {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  font-weight: 760;
  line-height: 1.2;
}

.benefit-feature-chip span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  font-weight: 550;
  line-height: 1.35;
}

.benefit-group-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 12px;
}

.benefit-group-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.94rem;
  font-weight: 650;
}

.benefit-group-chips-muted span {
  color: rgba(255, 255, 255, 0.72);
  min-height: 34px;
  padding: 0 12px;
  font-size: 0.82rem;
  font-weight: 600;
}

.proof-section {
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(40, 215, 166, 0.08),
      transparent 24rem
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0));
}

.proof-section.alt {
  background:
    radial-gradient(
      circle at 88% 20%,
      rgba(139, 92, 246, 0.1),
      transparent 24rem
    ),
    rgba(255, 255, 255, 0.025);
}

.proof-grid.reverse .proof-copy {
  order: 2;
}

.proof-grid.reverse {
  align-items: flex-start;
}

.proof-grid.reverse .proof-copy {
  align-self: flex-start;
}

.proof-copy {
  align-self: center;
}

.proof-copy p {
  max-width: 34rem;
}

ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.76);
}

li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(40, 215, 166, 0.65);
}

.slide-frame,
.wide-slide {
  overflow: hidden;
  margin: 0;
  border: 0;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.34);
}

.slide-frame img,
.wide-slide img {
  width: 100%;
}

.visual-image,
.visual-image-shell {
  display: block;
  width: 100%;
}

.visual-image {
  height: auto;
}

.visual-image-shell {
  position: relative;
  overflow: hidden;
  border-radius: inherit;
}

.hero-visual-image,
.cta-visual-image {
  border: 0;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.34);
}

.image-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  background: rgba(3, 8, 20, 0.42);
  backdrop-filter: blur(12px);
}

.image-transparent {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.summary-slide {
  margin-top: 34px;
}

.visual-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100%;
  padding: 24px;
  color: rgba(255, 255, 255, 0.68);
  border: 1px dashed rgba(35, 199, 255, 0.42);
  border-radius: inherit;
  background:
    linear-gradient(
      135deg,
      rgba(35, 199, 255, 0.12),
      rgba(139, 92, 246, 0.1)
    ),
    rgba(255, 255, 255, 0.035);
  font-size: clamp(0.95rem, 1.8vw, 1.28rem);
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.placeholder-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(35, 199, 255, 0.22);
  border-radius: 999px;
  background: rgba(3, 8, 20, 0.24);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-placeholder-hero,
.visual-placeholder-wide {
  aspect-ratio: 16 / 9;
}

.visual-placeholder-pdf {
  padding: clamp(22px, 4vw, 42px);
}

.visual-placeholder-currency {
  min-height: clamp(320px, 42vw, 520px);
  padding: clamp(22px, 4vw, 42px);
}

.visual-placeholder-panel {
  min-height: 260px;
}

.visual-placeholder-tall {
  aspect-ratio: 4 / 3;
}

.visual-placeholder-small {
  min-height: 260px;
}

.visual-placeholder-cta {
  min-height: 210px;
}

.currency-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}

.currency-layout .wide-slide {
  align-self: stretch;
}

.feature-bullets {
  margin-top: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 12px;
  margin-top: 24px;
}

.tools-grid {
  column-gap: 28px;
  row-gap: 18px;
}

.tools-intro {
  margin: 18px 0 0;
}

.feature-item {
  height: auto;
  overflow: hidden;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.feature-item:hover {
  border-color: rgba(35, 199, 255, 0.24);
  box-shadow: 0 12px 28px rgba(22, 140, 255, 0.18);
  transform: translateY(-2px);
}

.tool-card {
  height: auto;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.tool-card:hover {
  border-color: rgba(35, 199, 255, 0.3);
  background: rgba(255, 255, 255, 0.035);
}

.feature-trigger {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
  padding: 16px 20px 10px;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.feature-label {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.feature-title {
  font-weight: 650;
}

.feature-summary {
  max-width: 58rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  font-weight: 560;
  line-height: 1.35;
}

.feature-chevron {
  position: relative;
  top: -4px;
  margin-left: auto;
  color: var(--muted);
  font-size: 1.45rem;
  line-height: 1;
  transition:
    transform 180ms ease,
    color 180ms ease;
}

.feature-item.is-open .feature-chevron {
  color: var(--cyan);
  transform: rotate(180deg);
}

.feature-detail {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 420ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.feature-item.is-open .feature-detail {
  max-height: 560px;
  cursor: pointer;
}

.feature-body {
  padding-top: 0;
  padding-bottom: 16px;
}

.tool-card-body {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.45;
}

.feature-detail p {
  margin: 8px 0 0;
  padding-bottom: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.45;
}

.feature-detail .rule-list {
  display: grid;
  gap: 6px;
  margin: 8px 0 10px;
  padding: 0;
  list-style: none;
}

.feature-detail .rule-list li {
  position: relative;
  padding-left: 17px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  line-height: 1.4;
}

.feature-detail .rule-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(35, 199, 255, 0.4);
}

.icon {
  color: var(--cyan);
  font-size: 0.75rem;
}

.note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
}

.switch-block {
  margin-top: 48px;
}

.switch-block .switch-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.switch-block .switch-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 18px;
  color: var(--muted);
}

.switch-block .switch-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(0.8em - 4px);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 0 18px rgba(35, 199, 255, 0.35);
}

.process-section {
  padding-bottom: 70px;
}

.flight-limit-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
}

.first-process {
  padding-top: 76px;
}

.compact-top {
  padding-top: 38px;
}

.section-heading {
  max-width: 940px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 18ch;
}

.section-heading p:not(.eyebrow) {
  max-width: 48rem;
}

.cta-section {
  background:
    radial-gradient(
      circle at 16% 18%,
      rgba(35, 199, 255, 0.14),
      transparent 28rem
    ),
    radial-gradient(
      circle at 84% 62%,
      rgba(40, 215, 166, 0.09),
      transparent 24rem
    ),
    linear-gradient(180deg, #081426 0%, #030814 100%);
}

.cta-copy h2 {
  max-width: 15ch;
}

.cta-note {
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cta-panel {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.11),
    rgba(255, 255, 255, 0.055)
  );
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.cta-content {
  display: grid;
  gap: 18px;
}

.lock-label {
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.app-store-link {
  width: 100%;
  min-height: 58px;
  font-size: 1.08rem;
}

.app-store-link {
  margin-top: 8px;
  margin-bottom: 12px;
}

.cta-inline-link {
  width: fit-content;
  margin-top: 8px;
}

.secondary-link {
  display: block;
  width: fit-content;
  margin-top: 16px;
  color: rgba(35, 199, 255, 0.72);
  font-size: 0.96rem;
  font-weight: 700;
}

.image-caption {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.45;
  text-align: center;
}

.highlight-panel {
  align-self: stretch;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(35, 199, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(35, 199, 255, 0.1), rgba(139, 92, 246, 0.08)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.highlight-panel h3 {
  max-width: 17ch;
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.08;
}

.highlight-panel p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.highlight-strip {
  width: fit-content;
  max-width: 100%;
  margin: 22px 0;
  padding: 14px 16px;
  border: 1px solid rgba(35, 199, 255, 0.22);
  border-radius: 8px;
  background: rgba(35, 199, 255, 0.08);
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 800;
}

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

.static-card,
.faq-card,
.step-card {
  min-height: 150px;
  padding: 22px;
}

.static-card h3,
.faq-card h3,
.step-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
}

.static-card p,
.faq-card p,
.step-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.96rem;
  line-height: 1.55;
}

.related-links a {
  color: rgba(35, 199, 255, 0.78);
  font-weight: 760;
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.comparison-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 15px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.45;
  text-align: left;
  vertical-align: top;
}

.comparison-table thead th {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comparison-table tbody th {
  color: var(--ink);
  font-weight: 760;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-note,
.legal-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.84rem;
  line-height: 1.55;
}

.steps-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.step-card,
.faq-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.step-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.warning-panel {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(40, 215, 166, 0.24);
  border-radius: 8px;
  background: rgba(40, 215, 166, 0.08);
}

.warning-panel strong {
  color: var(--ink);
  font-size: 1rem;
}

.warning-panel span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.96rem;
  line-height: 1.5;
}

.migration-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(
      circle at 82% 24%,
      rgba(35, 199, 255, 0.08),
      transparent 24rem
    ),
    rgba(255, 255, 255, 0.018);
}

.migration-copy {
  max-width: 900px;
}

.migration-copy h2 {
  max-width: 22ch;
}

.migration-copy p:not(.eyebrow) {
  max-width: 48rem;
}

.alternate-path {
  margin-top: 10px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.52);
}

.alternate-path h3 {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
  font-weight: 650;
}

.alternate-path p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.alternate-path .alternate-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.alternate-path a {
  color: rgba(35, 199, 255, 0.66);
  font-size: 0.9rem;
  font-weight: 600;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  will-change: opacity, transform, filter;
}

.js .reveal.reveal-heading {
  transform: translateY(26px);
  filter: blur(2px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 620ms ease;
}

.js .reveal.reveal-copy {
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.reveal-ui {
  transform: translateY(10px);
  transition:
    opacity 380ms ease,
    transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.reveal-media {
  transform: translateY(12px) scale(0.985);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.2, 0.65, 0.3, 1);
  transition-delay: 90ms;
}

.js .reveal.reveal-card {
  transform: translateY(10px);
  transition:
    opacity 420ms ease,
    transform 420ms cubic-bezier(0.2, 0.65, 0.3, 1);
  transition-delay: calc(min(var(--i, 0), 6) * 70ms);
}

.js .reveal[data-reveal-delay="1"] {
  transition-delay: 80ms;
}

.js .reveal[data-reveal-delay="2"] {
  transition-delay: 160ms;
}

.js .reveal[data-reveal-delay="3"] {
  transition-delay: 240ms;
}

.js .reveal[data-reveal-delay="4"] {
  transition-delay: 320ms;
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.js .reveal.reveal-media.visible {
  transform: translateY(0) scale(1);
}

.js .reveal,
.js .reveal.reveal-heading,
.js .reveal.reveal-copy,
.js .reveal.reveal-ui,
.js .reveal.reveal-media,
.js .reveal.reveal-card,
.js .reveal.visible,
.js .reveal.reveal-media.visible {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
  will-change: auto;
}

.site-footer {
  padding: 22px 0 28px;
  border-top: 1px solid var(--line);
  background: #030814;
}

.regulatory-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-top: 0;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
  line-height: 1.4;
  text-align: center;
}

.regulatory-links a {
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.regulatory-links a:hover,
.regulatory-links a:focus-visible {
  color: var(--text);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.9rem;
}

.footer-links a {
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

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

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}

.footer-copyright {
  margin: 0;
  max-width: max-content;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.74rem;
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-align: center;
}

@media (max-width: 860px) {
  .hero {
    min-height: auto;
    padding-bottom: 76px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-dashboard {
    width: min(100%, 720px);
  }

  .social-proof-strip {
    padding: 22px 0;
  }

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

  .card-grid,
  .steps-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .static-card,
  .faq-card,
  .step-card {
    min-height: 0;
  }

  .benefit-feature-chip {
    min-height: auto;
  }

  .intro-grid,
  .proof-grid,
  .cta-layout,
  .currency-layout,
  .flight-limit-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid.reverse .proof-copy {
    order: 0;
  }

  .section {
    padding: 64px 0;
  }

  .process-section {
    padding-bottom: 54px;
  }

  .currency-layout .wide-slide {
    align-self: auto;
  }

  .visual-placeholder-currency {
    min-height: 300px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-text {
    font-size: 22px;
  }

  .brand-icon {
    width: 24px;
    height: 24px;
    transform: translateY(3px);
  }

  .header-cta {
    font-size: 0.82rem;
  }

  .header-cta-full {
    display: none !important;
  }

  .header-cta-short {
    display: inline !important;
  }

  .container,
  .hero-content {
    width: min(100% - 28px, var(--max));
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cta-inline-link,
  .secondary-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .benefit-list span {
    width: 100%;
    justify-content: center;
  }

  .feature-trigger {
    padding-left: 16px;
    padding-right: 16px;
  }

  .feature-detail {
    padding-left: 16px;
    padding-right: 16px;
  }

  .feature-item.is-open .feature-detail {
    max-height: 360px;
  }

  .slide-frame,
  .wide-slide,
  .cta-panel {
    border-radius: 6px;
  }

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

@media (max-width: 560px) and (orientation: portrait) {
  .hero {
    padding-top: 42px;
  }

  .hero-content {
    padding-top: 14px;
  }
}

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

  .js .reveal,
  .js .reveal.reveal-heading,
  .js .reveal.reveal-copy,
  .js .reveal.reveal-ui,
  .js .reveal.reveal-media,
  .js .reveal.reveal-card {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}
