:root {
  color-scheme: dark;
  --bg: #0d1417;
  --surface: #151f24;
  --surface-2: #1e3035;
  --text: #edf5f5;
  --muted: #9fb0b5;
  --line: #2d4248;
  --teal: #25bbb4;
  --teal-dark: #65ddd7;
  --gold: #f4b64b;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  --radius: 8px;
}

body[data-sales-phase] .site-header {
  position: absolute;
  z-index: 20;
  width: 100%;
  height: 76px;
  padding: 0 42px;
  background: rgba(5, 5, 5, 0.72);
  border-bottom: 1px solid rgba(101, 221, 215, 0.12);
  backdrop-filter: blur(22px);
}

body[data-sales-phase] .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #edf5f5;
  font-weight: 950;
}

body[data-sales-phase] .brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

body[data-sales-phase] .brand span {
  font-size: 21px;
  line-height: 1;
}

body[data-sales-phase] .site-header nav {
  color: rgba(237, 245, 245, 0.62);
}

body[data-sales-phase] .site-header nav a {
  transition: color 180ms ease;
}

body[data-sales-phase] .site-header nav a:hover {
  color: #edf5f5;
}

body[data-sales-phase] .header-cta {
  background: rgba(21, 25, 34, 0.82);
  color: #edf5f5;
  border-color: rgba(101, 221, 215, 0.2);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

body[data-sales-phase] .header-cta[href*="lin.ee"] {
  background: #06c755;
  color: #fff;
  border-color: rgba(6, 199, 85, 0.72);
}

body[data-sales-phase] .hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  max-width: none;
  margin: 0;
  padding: 116px 44px 74px;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  gap: 24px;
  overflow: hidden;
  color: #edf5f5;
  background:
    radial-gradient(circle at 50% 18%, rgba(37, 187, 180, 0.16), transparent 34%),
    radial-gradient(circle at 50% 92%, rgba(101, 221, 215, 0.12), transparent 38%),
    linear-gradient(180deg, #050505 0%, #0b0d12 48%, #151922 100%);
}

body[data-sales-phase] .hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -20% -8%;
  z-index: -1;
  height: 54%;
  background: radial-gradient(ellipse at center, rgba(37, 187, 180, 0.18), transparent 66%);
  filter: blur(14px);
}

body[data-sales-phase] .hero-intro {
  grid-column: auto;
  max-width: 980px;
  margin: 0 auto;
  justify-items: center;
  text-align: center;
}

.hero-mark {
  width: 84px;
  height: 84px;
  margin-bottom: 24px;
  border-radius: 24px;
  box-shadow: 0 22px 58px rgba(37, 187, 180, 0.2), 0 0 0 1px rgba(101, 221, 215, 0.16);
}

body[data-sales-phase] .hero h1 {
  display: grid;
  justify-items: center;
  gap: 8px;
  max-width: 1120px;
  margin: 0;
  color: #f5fbfb;
  font-size: clamp(48px, 6.4vw, 92px);
  font-weight: 950;
  line-height: 1.05;
  text-align: center;
  text-shadow: none;
}

body[data-sales-phase] .hero-title-line {
  display: block;
  width: max-content;
  max-width: 100%;
}

body[data-sales-phase] .hero-title-line-main {
  font-size: 1.06em;
}

body[data-sales-phase] .hero-title-line-sub {
  font-size: 0.58em;
}

body[data-sales-phase] .hero-subcopy {
  max-width: 1040px;
  margin: 24px auto 0;
  color: rgba(237, 245, 245, 0.72);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 800;
  line-height: 1.65;
  white-space: nowrap;
}

.sns-line,
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.sns-line span,
.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(21, 25, 34, 0.72);
  color: rgba(237, 245, 245, 0.72);
  border: 1px solid rgba(101, 221, 215, 0.16);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  font-size: 15px;
  font-weight: 850;
}

.hero-badges {
  margin-top: 14px;
}

.hero-badges span {
  color: var(--teal-dark);
  background: rgba(37, 187, 180, 0.12);
  border-color: rgba(101, 221, 215, 0.28);
}

.hero-trial-highlight {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  column-gap: 14px;
  row-gap: 4px;
  width: fit-content;
  max-width: min(100%, 760px);
  margin: 18px auto 0;
  padding: 12px 18px;
  border: 1px solid rgba(244, 182, 75, 0.42);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(244, 182, 75, 0.16), rgba(37, 187, 180, 0.12));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.hero-trial-highlight span {
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(244, 182, 75, 0.2);
  color: #ffd889;
  border: 1px solid rgba(244, 182, 75, 0.36);
  font-size: 13px;
  font-weight: 900;
}

.hero-trial-highlight strong {
  color: #fff6da;
  font-size: clamp(20px, 2.3vw, 30px);
  font-weight: 950;
  line-height: 1.15;
}

.hero-trial-highlight small {
  grid-column: 2;
  color: rgba(237, 245, 245, 0.68);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.hero-sales-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 720px);
  margin-top: 22px;
  padding: 10px;
  border: 1px solid rgba(101, 221, 215, 0.18);
  border-radius: 18px;
  background: rgba(11, 13, 18, 0.58);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.hero-sales-points span {
  display: grid;
  gap: 5px;
  justify-items: center;
  padding: 12px 10px;
  border-radius: 12px;
  background: rgba(21, 25, 34, 0.72);
}

.hero-sales-points b {
  color: var(--teal-dark);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.15;
}

.hero-sales-points small {
  color: rgba(237, 245, 245, 0.62);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.hero-security-note,
.line-bonus-note {
  margin: 14px 0 0;
  color: rgba(237, 245, 245, 0.7);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.7;
}

.line-bonus-note {
  width: fit-content;
  max-width: 100%;
  margin-top: 14px;
  padding: 9px 13px;
  border: 1px solid rgba(244, 182, 75, 0.36);
  border-radius: 999px;
  background: rgba(244, 182, 75, 0.1);
  color: #ffd889;
}

body[data-sales-phase] .hero-actions {
  justify-content: center;
  gap: 14px;
  margin: 32px 0 0;
}

body[data-sales-phase] .hero .primary-cta,
body[data-sales-phase] .hero .secondary-cta {
  width: auto;
  min-width: 230px;
  min-height: 58px;
  padding: 16px 24px;
  border-radius: 999px;
  font-size: 17px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

body[data-sales-phase] .hero .secondary-cta {
  background: rgba(21, 25, 34, 0.78);
  color: #edf5f5;
  border-color: rgba(101, 221, 215, 0.18);
}

body[data-sales-phase] .hero-product {
  width: min(920px, 92vw);
  margin: 8px auto 0;
  opacity: 0.72;
  transform: perspective(1000px) rotateX(7deg) scale(0.9);
  transform-origin: center top;
  pointer-events: none;
}

body[data-sales-phase] .hero-product .app-window {
  border-color: rgba(37, 187, 180, 0.28);
  border-radius: 22px;
  background: rgba(21, 25, 34, 0.94);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

body[data-sales-phase] .hero-product .app-layout {
  min-height: 300px;
}

body[data-sales-phase] .hero-product .floating-note {
  display: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(37, 187, 180, 0.22), transparent 34%),
    radial-gradient(circle at 18% 74%, rgba(244, 182, 75, 0.13), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: "Segoe UI", "Yu Gothic UI", Meiryo, sans-serif;
  font-size: 18px;
  letter-spacing: 0;
}

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

html.reveal-ready .scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 3000ms ease,
    transform 3000ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom));
  z-index: 80;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(101, 221, 215, 0.36);
  border-radius: 999px;
  background: rgba(21, 31, 36, 0.92);
  color: var(--teal-dark);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.back-to-top:hover {
  border-color: rgba(101, 221, 215, 0.72);
  background: rgba(37, 187, 180, 0.16);
  transform: translateY(-2px);
}

.back-to-top span {
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.mobile-expand-toggle {
  display: none;
}

.mobile-collapsible {
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  html.reveal-ready .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .slot-progress-fill,
  .slot-progress-fill::after {
    animation: none;
    transform: scaleX(1);
  }
}

.site-header {
  height: 78px;
  padding: 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(21, 31, 36, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 210px;
  display: block;
}

.brand {
  padding: 0;
  border-radius: 0;
  background: transparent;
}

nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-weight: 700;
}

.header-cta,
.primary-cta,
.secondary-cta {
  border-radius: var(--radius);
  font-weight: 800;
}

.header-cta {
  padding: 10px 14px;
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--line);
}

.header-cta[href*="#line"],
.primary-cta[href*="#line"],
.header-cta[href*="lin.ee"],
.primary-cta[href*="lin.ee"] {
  background: #06c755;
  color: #fff;
  border-color: rgba(6, 199, 85, 0.72);
  box-shadow: 0 14px 32px rgba(6, 199, 85, 0.22);
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(520px, 1.1fr);
  gap: 34px 42px;
  align-items: start;
  padding: 54px 56px 42px;
  max-width: 1440px;
  margin: 0 auto;
}

.hero-intro {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  max-width: 1180px;
  margin: 0 auto 8px;
  text-align: center;
}

.hero-offer {
  width: 100%;
  align-self: start;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-weight: 900;
}

h1 {
  margin: 0 0 18px;
  width: auto;
  max-width: 1180px;
  color: var(--gold);
  font-size: clamp(42px, 4.1vw, 64px);
  line-height: 1.12;
  letter-spacing: 0;
  white-space: normal;
  text-shadow: 0 12px 34px rgba(244, 182, 75, 0.16);
}

.hero-subcopy {
  max-width: 920px;
  margin: -8px 0 14px;
  color: #edf5f5;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.55;
}

.release-note {
  margin: -4px 0 14px;
  color: var(--gold);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.6;
}

.api-cost-note {
  max-width: 860px;
  margin: -4px 0 18px;
  padding: 12px 14px;
  color: #d7e8e8;
  font-size: 15px;
  line-height: 1.7;
  border: 1px solid rgba(101, 221, 215, 0.28);
  border-radius: var(--radius);
  background: rgba(37, 187, 180, 0.1);
}

.lead {
  max-width: 980px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.85;
}

.price-box {
  width: min(100%, 680px);
  min-width: 0;
  margin-bottom: 20px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.price-box span,
.price-box small,
.price-box em {
  display: block;
  color: var(--muted);
}

.regular-price {
  width: fit-content;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(244, 182, 75, 0.78);
}

.regular-anchor {
  width: fit-content;
  margin: 4px 0 10px;
  color: #edf5f5;
  font-size: clamp(32px, 4.3vw, 48px);
  font-weight: 950;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: rgba(244, 182, 75, 0.9);
}

.price-arrow {
  width: fit-content;
  margin: 0 0 4px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(244, 182, 75, 0.16);
  color: var(--gold) !important;
  font-weight: 900;
}

.price-box em {
  margin-top: 8px;
  color: var(--gold);
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.45;
}

.price-box .demo-note {
  margin-top: 8px;
  color: #d7e8e8;
  font-weight: 900;
}

.price-box strong {
  display: block;
  margin: 4px 0;
  color: var(--teal-dark);
  font-size: 46px;
  line-height: 1.12;
}

.sales-proof-card,
.hero-combo-card {
  width: min(100%, 680px);
  margin: -4px 0 18px;
  padding: 16px 18px;
  border: 1px solid rgba(244, 182, 75, 0.52);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(244, 182, 75, 0.16), rgba(37, 187, 180, 0.08)),
    rgba(21, 31, 36, 0.86);
  box-shadow: var(--shadow);
}

.sales-proof-card span,
.sales-proof-card small,
.hero-combo-card small {
  display: block;
  color: var(--muted);
  line-height: 1.7;
}

.sales-proof-card strong,
.hero-combo-card strong {
  display: block;
  margin: 4px 0;
  color: var(--gold);
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1.35;
}

.hero-combo-card {
  border-color: rgba(101, 221, 215, 0.34);
  background:
    linear-gradient(145deg, rgba(37, 187, 180, 0.16), rgba(244, 182, 75, 0.08)),
    rgba(21, 31, 36, 0.86);
}

.hero-combo-card strong {
  color: var(--text);
}

.proof-meter {
  height: 12px;
  margin: 10px 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(13, 20, 23, 0.86);
  border: 1px solid rgba(244, 182, 75, 0.2);
}

.proof-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), #ffe0a0);
}

.trial-spotlight {
  width: min(100%, 760px);
  margin: 18px 0 0;
  padding: 16px;
  border: 1px solid rgba(101, 221, 215, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(37, 187, 180, 0.16), rgba(244, 182, 75, 0.08)),
    rgba(21, 31, 36, 0.82);
  box-shadow: var(--shadow);
}

.trial-spotlight-title {
  margin: 0 0 14px;
  color: var(--text);
  font-weight: 900;
  line-height: 1.5;
}

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

.trial-spotlight article {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(101, 221, 215, 0.18);
  border-radius: var(--radius);
  background: rgba(10, 19, 23, 0.48);
}

.trial-spotlight img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.trial-spotlight span,
.trial-spotlight strong,
.trial-spotlight a {
  display: block;
}

.trial-spotlight span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.trial-spotlight strong {
  margin: 4px 0 8px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.45;
}

.trial-spotlight a {
  width: fit-content;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

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

.hero-offer .hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 14px;
  margin-top: 18px;
  margin-bottom: 20px;
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 18px;
}

.hero-offer .primary-cta,
.hero-offer .secondary-cta {
  width: min(100%, 460px);
  min-height: 64px;
  padding: 18px 24px;
  font-size: 19px;
  line-height: 1.35;
}

.primary-cta {
  background: var(--teal);
  color: #fff;
}

.primary-cta[aria-disabled="true"],
.secondary-cta[aria-disabled="true"] {
  border: 1px solid rgba(159, 176, 181, 0.24);
  background: rgba(159, 176, 181, 0.18);
  color: var(--muted);
  cursor: not-allowed;
  box-shadow: none;
}

.release-lock-note {
  display: block;
  margin: 0 0 10px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0;
}

.release-lock-note.center {
  text-align: center;
}

.primary-cta.is-locked-cta,
.secondary-cta.is-locked-cta,
.header-cta.is-locked-cta,
.conversion-form button.is-locked-cta,
button.is-locked-cta {
  border: 1px solid rgba(159, 176, 181, 0.24);
  background: rgba(159, 176, 181, 0.18);
  color: var(--muted);
  cursor: not-allowed;
  box-shadow: none;
  pointer-events: none;
}

.hero-offer .primary-cta {
  background: #06c755;
  color: #fff;
  box-shadow: 0 18px 38px rgba(6, 199, 85, 0.22);
}

.secondary-cta {
  background: var(--surface);
  border: 1px solid var(--line);
}

.hero-offer .secondary-cta {
  background: rgba(21, 31, 36, 0.92);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  border-radius: 999px;
  padding: 8px 11px;
  background: var(--surface-2);
  color: var(--teal-dark);
  font-weight: 800;
}

.hero-product {
  position: relative;
}

.app-window {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(21, 31, 36, 0.96);
  box-shadow: var(--shadow);
}

.window-bar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  background: #203035;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #6d8288;
}

.app-layout {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 500px;
}

.app-layout aside {
  padding: 18px;
  border-right: 1px solid var(--line);
  display: grid;
  align-content: start;
  gap: 12px;
  color: var(--muted);
}

.app-layout aside img {
  width: 150px;
  margin-bottom: 12px;
}

.app-layout aside b {
  border-radius: var(--radius);
  padding: 10px;
  background: var(--surface-2);
  color: var(--teal-dark);
}

.app-layout section {
  padding: 22px;
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.mini-cards article,
.queue div,
.drop-preview {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(30, 48, 53, 0.72);
}

.mini-cards article {
  padding: 14px;
}

.mini-cards span,
.queue span {
  color: var(--muted);
}

.mini-cards strong {
  display: block;
  margin-top: 6px;
  font-size: 24px;
}

.queue {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.queue div {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 10px;
  align-items: center;
  padding: 13px;
}

.queue b {
  color: var(--teal-dark);
}

.drop-preview {
  padding: 26px;
  border-style: dashed;
  text-align: center;
  color: var(--teal-dark);
  font-weight: 800;
}

.floating-note {
  position: absolute;
  max-width: min(420px, calc(100% - 40px));
  border-radius: 999px;
  padding: 11px 14px;
  background: var(--gold);
  color: #17252d;
  line-height: 1.35;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.note-a {
  top: -18px;
  right: 30px;
}

.note-b {
  bottom: -18px;
  left: 28px;
}

.problem-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1328px;
  margin: 0 auto 42px;
  padding: 0 56px;
}

.problem-strip article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.icon-badge {
  display: inline-grid !important;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 12px;
  border: 1px solid rgba(101, 221, 215, 0.36);
  border-radius: 8px;
  background: rgba(37, 187, 180, 0.12);
  color: var(--teal-dark) !important;
}

.icon-badge svg,
.mini-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-strip strong,
.problem-strip span {
  display: block;
}

.problem-strip strong {
  margin-bottom: 6px;
}

.problem-strip span {
  color: var(--muted);
  line-height: 1.7;
}

.quick-summary-section {
  max-width: 1328px;
  margin: 0 auto 18px;
  padding: 0 56px 22px;
}

.quick-summary-head {
  margin-bottom: 18px;
  text-align: center;
}

.quick-summary-head h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.3;
}

.quick-summary-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.quick-summary-grid article {
  min-height: 190px;
  padding: 18px;
  border: 1px solid rgba(101, 221, 215, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(37, 187, 180, 0.09), rgba(21, 31, 36, 0.8)),
    rgba(21, 31, 36, 0.78);
  box-shadow: var(--shadow);
}

.quick-summary-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  border: 1px solid rgba(101, 221, 215, 0.45);
  border-radius: var(--radius);
  background: rgba(37, 187, 180, 0.14);
  color: var(--teal-dark);
  font-family: "Material Symbols Rounded";
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.quick-summary-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.4;
}

.quick-summary-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.section {
  max-width: 1328px;
  margin: 0 auto;
  padding: 74px 56px;
}

.section-head {
  width: 100%;
  max-width: none;
  margin-bottom: 28px;
}

.cost-section .section-head,
.comparison-section .section-head,
.pricing-section .section-head,
.support-section .section-head {
  max-width: none;
}

.section-head p {
  width: 100%;
  max-width: none;
}

.section-head h2,
.closing-cta h2 {
  margin: 0 0 12px;
  font-size: 40px;
  line-height: 1.25;
}

.cost-section .section-head h2,
.api-fee-section .section-head h2,
.comparison-section .section-head h2 {
  color: var(--gold);
}

.section-head p,
.closing-cta p,
.comparison-note {
  color: var(--muted);
  line-height: 1.85;
}

.slot-status {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 18px;
  width: 100%;
  margin-top: 22px;
  padding: 20px;
  border: 1px solid rgba(244, 182, 75, 0.55);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(244, 182, 75, 0.18), rgba(21, 31, 36, 0.74)),
    rgba(21, 31, 36, 0.82);
}

.slot-status-main,
.monitor-motivation {
  min-width: 0;
}

.slot-status-main {
  display: grid;
  gap: 12px;
}

.slot-status-main strong,
.monitor-motivation strong {
  display: block;
  color: var(--gold);
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.35;
}

.slot-status-main > div > span {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 900;
}

.slot-status-main p,
.monitor-motivation p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.slot-progress {
  display: grid;
  gap: 10px;
  padding-top: 4px;
}

.slot-progress-track {
  position: relative;
  height: 27px;
  overflow: hidden;
  border: 1px solid rgba(149, 178, 190, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 0 12px rgba(0, 0, 0, 0.28),
    0 8px 18px rgba(0, 0, 0, 0.12);
}

.slot-progress-fill {
  overflow: hidden;
  display: block;
  width: var(--slot-progress, 0%);
  height: 100%;
  border-radius: 3px;
  background: var(--teal);
  box-shadow: 0 0 16px rgba(75, 213, 226, 0.25);
  transform-origin: left center;
  transform: scaleX(0);
}

.slot-status.is-animated .slot-progress-fill {
  animation: slot-progress-grow 900ms cubic-bezier(0.2, 0.72, 0.25, 1) both;
}

.slot-progress-fill::after {
  content: none;
}

.slot-progress-labels {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.slot-progress-labels b {
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--text);
  background: var(--gold);
}

.slot-progress-labels span:last-child {
  text-align: right;
}

.monitor-motivation {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(101, 221, 215, 0.22);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(4, 25, 28, 0.56);
}

.monitor-motivation .combo-badge {
  width: fit-content;
}

.monitor-motivation strong {
  color: var(--text);
  font-size: clamp(20px, 1.8vw, 26px);
}

.monitor-motivation ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.monitor-motivation li {
  position: relative;
  padding-left: 20px;
  color: var(--text);
  font-weight: 850;
  line-height: 1.55;
}

.monitor-motivation li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(244, 182, 75, 0.45);
}

.slot-benefit-note {
  display: inline-block;
  margin-left: 0.35em;
  color: var(--gold);
  font-weight: 950;
}

.slot-reason-link {
  display: inline;
  margin: 0 0 0 0.35em;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(244, 182, 75, 0.72);
  background: transparent;
  color: var(--gold);
  font: inherit;
  font-weight: 950;
  line-height: 1.35;
  cursor: pointer;
}

.slot-reason-link:hover,
.slot-reason-link:focus-visible {
  color: #ffd882;
  border-bottom-color: #ffd882;
  outline: none;
}

.slot-reason-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  padding: 24px;
}

.slot-reason-modal[aria-hidden="false"] {
  display: grid;
}

body.slot-reason-open {
  overflow: hidden;
}

.slot-reason-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 10, 12, 0.72);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.slot-reason-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  padding: 28px;
  border: 1px solid rgba(244, 182, 75, 0.48);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(244, 182, 75, 0.13), rgba(6, 24, 27, 0.96)),
    rgba(21, 31, 36, 0.98);
  box-shadow: var(--shadow-strong);
}

.slot-reason-panel h2 {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.25;
}

.slot-reason-panel p:not(.eyebrow) {
  margin: 0 0 12px;
  color: var(--text);
  line-height: 1.85;
}

.slot-reason-panel p:last-child {
  margin-bottom: 0;
}

.slot-reason-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(110, 231, 226, 0.28);
  border-radius: var(--radius);
  background: rgba(5, 19, 23, 0.78);
  color: var(--text);
  cursor: pointer;
}

.slot-reason-close span {
  font-size: 24px;
  line-height: 1;
}

.slot-reason-close:hover,
.slot-reason-close:focus-visible {
  border-color: rgba(110, 231, 226, 0.72);
  color: var(--teal-dark);
  outline: none;
}

@keyframes slot-progress-grow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes slot-progress-shine {
  0% {
    transform: translateX(-90px);
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  100% {
    transform: translateX(90px);
    opacity: 0;
  }
}

.benefit-grid,
.target-grid,
.demo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.sales-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.sales-benefit-grid article {
  padding: 20px;
  border: 1px solid rgba(101, 221, 215, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(37, 187, 180, 0.09), rgba(21, 31, 36, 0.8)),
    rgba(21, 31, 36, 0.78);
  box-shadow: var(--shadow);
}

.sales-benefit-grid strong,
.sales-benefit-grid p {
  display: block;
}

.sales-benefit-grid strong {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.45;
}

.sales-benefit-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

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

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

.demo-experience-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(101, 221, 215, 0.28);
  border-radius: var(--radius);
  background: rgba(21, 31, 36, 0.82);
  box-shadow: var(--shadow);
}

.demo-experience-card.featured {
  border-color: rgba(244, 182, 75, 0.48);
  background:
    linear-gradient(180deg, rgba(244, 182, 75, 0.1), rgba(21, 31, 36, 0.86)),
    rgba(21, 31, 36, 0.82);
}

.demo-preview {
  position: relative;
  display: grid;
  gap: 16px;
  min-height: 330px;
  padding: 34px 36px 28px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 12%, rgba(100, 235, 229, 0.15), transparent 32%),
    linear-gradient(145deg, rgba(4, 22, 23, 0.98), rgba(11, 55, 50, 0.9));
}

.demo-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 82%);
}

.demo-preview > * {
  position: relative;
  z-index: 1;
}

.demo-preview-heading {
  display: grid;
  gap: 4px;
}

.demo-preview-heading strong {
  color: var(--text);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: 0;
}

.demo-preview-heading span {
  color: var(--muted);
  font-size: 20px;
  font-weight: 800;
}

.demo-browser-frame,
.demo-desktop-frame {
  overflow: hidden;
  border: 2px solid rgba(116, 225, 220, 0.25);
  background: rgba(6, 24, 27, 0.9);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.demo-browser-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(116, 225, 220, 0.24);
  background: rgba(5, 21, 24, 0.95);
}

.demo-browser-bar span {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(173, 199, 205, 0.72);
}

.demo-browser-bar span:first-child {
  background: var(--teal);
}

.demo-browser-bar b {
  margin-left: 18px;
  color: var(--muted);
  font-size: 20px;
}

.demo-browser-content {
  display: grid;
  gap: 14px;
  padding: 28px 32px 18px;
}

.demo-browser-content p,
.demo-desktop-content p {
  margin: 0;
  padding: 12px 20px;
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
  background: rgba(37, 73, 78, 0.74);
}

.demo-browser-content .demo-metric {
  width: min(45%, 280px);
  color: var(--teal);
  font-size: 22px;
}

.demo-desktop-frame {
  display: grid;
  grid-template-columns: 24% 1fr;
  min-height: 190px;
}

.demo-desktop-frame aside {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 28px 26px;
  background: rgba(4, 25, 28, 0.95);
}

.demo-desktop-frame aside b {
  color: var(--gold);
  font-size: 17px;
  line-height: 1.25;
}

.demo-desktop-frame aside span {
  color: var(--muted);
  font-size: 17px;
  font-weight: 900;
}

.demo-desktop-frame aside .is-active {
  width: fit-content;
  padding: 8px 22px;
  color: var(--text);
  background: rgba(79, 61, 22, 0.95);
}

.demo-desktop-content {
  display: grid;
  gap: 12px;
  padding: 28px 34px;
}

.demo-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.demo-stat-row strong {
  display: grid;
  min-height: 60px;
  place-items: center;
  padding: 8px;
  color: var(--gold);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  background: rgba(37, 73, 78, 0.74);
}

.demo-preview-ribbon {
  align-self: end;
}

.demo-preview-ribbon span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: var(--gold);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.2;
  text-shadow: 0 0 18px rgba(244, 182, 75, 0.32);
}

.demo-preview-ribbon span::before {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(244, 182, 75, 0.15));
}

.demo-preview-ribbon span::after {
  content: "→";
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), #ffe08a);
  box-shadow: 0 10px 28px rgba(244, 182, 75, 0.24);
}

.demo-experience-body {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.demo-experience-body span {
  color: var(--muted);
  font-weight: 900;
}

.demo-experience-body strong {
  color: var(--teal-dark);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.2;
}

.demo-experience-card.featured .demo-experience-body strong {
  color: var(--gold);
}

.demo-experience-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.demo-experience-body ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.demo-experience-body li {
  position: relative;
  padding-left: 20px;
  color: var(--text);
  line-height: 1.55;
}

.demo-experience-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
}

.demo-experience-card.featured li::before {
  background: var(--gold);
}

.demo-experience-body .primary-cta {
  width: fit-content;
  margin-top: 4px;
}

.demo-section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(244, 182, 75, 0.42);
  border-radius: var(--radius);
  background: rgba(244, 182, 75, 0.08);
}

.demo-section-cta p {
  margin: 0;
  color: var(--text);
  font-weight: 900;
  line-height: 1.6;
}

.benefit-grid article,
.target-grid article,
.demo-grid article,
.pricing-card,
.workflow article,
.comparison-table,
.screenshot-grid figure,
.closing-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 31, 36, 0.78);
  box-shadow: var(--shadow);
}

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

.pricing-card,
.service-card {
  padding: 22px;
}

.pricing-card.primary {
  border-color: var(--gold);
  background:
    linear-gradient(180deg, rgba(37, 187, 180, 0.2), rgba(244, 182, 75, 0.1)),
    rgba(21, 31, 36, 0.88);
}

.pricing-card.standard {
  background:
    linear-gradient(180deg, rgba(159, 176, 181, 0.08), rgba(21, 31, 36, 0.82)),
    rgba(21, 31, 36, 0.78);
}

.pricing-card.option {
  border-style: dashed;
  background:
    linear-gradient(180deg, rgba(37, 187, 180, 0.08), rgba(21, 31, 36, 0.82)),
    rgba(21, 31, 36, 0.78);
}

.pricing-card span,
.pricing-card small {
  display: block;
  color: var(--muted);
}

.pricing-card strong {
  display: block;
  margin: 6px 0;
  color: var(--teal-dark);
  font-size: clamp(34px, 3vw, 44px);
  line-height: 1;
}

.pricing-card.primary strong {
  font-size: clamp(42px, 3.6vw, 54px);
}

.pricing-card.standard strong,
.pricing-card.option strong {
  color: var(--text);
}

.pricing-card .regular-anchor {
  font-size: clamp(25px, 2.8vw, 34px);
}

.pricing-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.65;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal);
}

.purchase-combo-card,
.monitor-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 18px;
  align-items: center;
  margin-top: 20px;
  padding: 24px;
  border: 1px solid rgba(244, 182, 75, 0.56);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(244, 182, 75, 0.16), rgba(37, 187, 180, 0.1)),
    rgba(21, 31, 36, 0.86);
  box-shadow: var(--shadow);
}

.purchase-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.purchase-flow article {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(101, 221, 215, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(37, 187, 180, 0.08), rgba(21, 31, 36, 0.82)),
    rgba(21, 31, 36, 0.78);
  box-shadow: var(--shadow);
}

.purchase-flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(244, 182, 75, 0.18);
  color: var(--gold);
  font-size: 20px;
  font-weight: 950;
}

.purchase-flow strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 21px;
  line-height: 1.4;
}

.purchase-flow p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.line-join-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: 22px;
  align-items: center;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(6, 199, 85, 0.48);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(6, 199, 85, 0.15), rgba(37, 187, 180, 0.08)),
    rgba(21, 31, 36, 0.86);
  box-shadow: var(--shadow);
}

.line-bonus-card {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(244, 182, 75, 0.36);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(244, 182, 75, 0.12), rgba(37, 187, 180, 0.08)),
    rgba(21, 25, 34, 0.78);
  box-shadow: var(--shadow);
}

.line-bonus-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.35;
}

.line-bonus-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.line-join-copy h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.35;
}

.line-join-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.8;
}

.line-cta {
  background: #06c755;
  border-color: rgba(6, 199, 85, 0.72);
  box-shadow: 0 14px 32px rgba(6, 199, 85, 0.22);
}

.line-qr-card {
  display: grid;
  place-items: center;
  justify-self: center;
  align-self: center;
  gap: 12px;
  width: min(100%, 340px);
  padding: 16px;
  border: 1px solid rgba(101, 221, 215, 0.18);
  border-radius: var(--radius);
  background: rgba(11, 13, 18, 0.88);
  color: var(--text);
  text-align: center;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.line-qr-card picture {
  display: flex;
  justify-content: center;
  width: 100%;
}

.line-qr-card img {
  width: min(100%, 240px);
  height: auto;
  display: block;
  margin-inline: auto;
}

.line-qr-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.combo-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(244, 182, 75, 0.18);
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.purchase-combo-card h3,
.monitor-card strong {
  display: block;
  margin: 0 0 8px;
  color: var(--text);
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.3;
}

.purchase-combo-card p,
.monitor-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.combo-price {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(101, 221, 215, 0.24);
  border-radius: var(--radius);
  background: rgba(13, 20, 23, 0.58);
}

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

.combo-price strong {
  color: var(--gold);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
}

.monitor-card ul,
.service-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.monitor-card li,
.service-list li {
  position: relative;
  padding-left: 20px;
  color: var(--text);
  line-height: 1.55;
}

.monitor-card li::before,
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.developer-section {
  padding-top: 54px;
}

.developer-message-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 28px;
  border: 1px solid rgba(101, 221, 215, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(37, 187, 180, 0.12), rgba(244, 182, 75, 0.08)),
    rgba(21, 31, 36, 0.84);
  box-shadow: var(--shadow);
}

.developer-profile {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.developer-profile img {
  width: 116px;
  height: 116px;
  border: 3px solid rgba(101, 221, 215, 0.42);
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

.developer-profile strong {
  display: block;
  margin-bottom: 2px;
  color: var(--text);
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.25;
}

.developer-profile small {
  color: var(--muted);
  font-weight: 900;
}

.developer-message-copy {
  display: grid;
  gap: 14px;
}

.developer-message-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.developer-message-copy strong {
  color: var(--text);
}

.developer-message-core {
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(244, 182, 75, 0.1);
}

.developer-achievement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.developer-achievement-grid article {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 86px;
  padding: 18px;
  border: 1px solid rgba(244, 182, 75, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(244, 182, 75, 0.12), rgba(37, 187, 180, 0.07)),
    rgba(21, 31, 36, 0.78);
  box-shadow: var(--shadow);
}

.developer-achievement-grid span {
  flex: 0 0 auto;
  font-size: 28px;
  line-height: 1;
}

.developer-achievement-grid strong {
  color: var(--text);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.45;
}

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

.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 31, 36, 0.78);
  box-shadow: var(--shadow);
}

.service-card span {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.service-card strong {
  display: block;
  margin: 6px 0 10px;
  color: var(--teal-dark);
  font-size: 30px;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.service-card-featured {
  border-color: rgba(244, 182, 75, 0.5);
  background:
    linear-gradient(180deg, rgba(244, 182, 75, 0.11), rgba(21, 31, 36, 0.82)),
    rgba(21, 31, 36, 0.78);
}

.service-card-featured .regular-anchor {
  font-size: 28px;
  margin-bottom: 8px;
}

.service-card-featured .service-list {
  margin-top: 14px;
}

.service-highlight {
  color: var(--gold);
  font-weight: 900;
}

.cost-comparison {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 18px;
  align-items: start;
}

.cost-summary,
.cost-bars {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 31, 36, 0.78);
  box-shadow: var(--shadow);
}

.cost-summary {
  padding: 22px;
  position: sticky;
  top: 94px;
}

.cost-summary span,
.cost-summary small,
.cost-note {
  color: var(--muted);
}

.cost-summary span,
.cost-summary small {
  display: block;
}

.cost-summary strong {
  display: block;
  margin: 6px 0 10px;
  color: var(--gold);
  font-size: 36px;
  line-height: 1.15;
}

.cost-bars {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.cost-row {
  display: grid;
  gap: 7px;
}

.cost-row-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: baseline;
}

.cost-row-head strong {
  color: var(--text);
}

.cost-row-head span {
  color: var(--teal-dark);
  font-weight: 900;
}

.cost-track {
  height: 34px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--surface-2);
}

.cost-fill {
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  transition: width 900ms ease;
}

.cost-row.featured .cost-fill {
  background: linear-gradient(90deg, var(--gold), #ffe1a1);
}

.cost-row.own .cost-fill {
  background: linear-gradient(90deg, #25bbb4, #8df3eb);
}

.cost-meta {
  color: var(--muted);
  font-size: 15px;
}

.cost-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
}

.benefit-grid article {
  padding: 18px;
}

.target-grid article,
.demo-grid article {
  padding: 18px;
}

.benefit-grid strong,
.benefit-grid span,
.target-grid strong,
.target-grid span,
.demo-grid strong,
.demo-grid span {
  display: block;
}

.benefit-grid strong,
.target-grid strong,
.demo-grid strong {
  margin-bottom: 9px;
  color: var(--text);
}

.benefit-grid span,
.target-grid span,
.demo-grid span {
  color: var(--muted);
  line-height: 1.75;
}

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

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

.target-grid article {
  display: grid;
  align-content: start;
}

.target-icon {
  display: inline-grid !important;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 14px;
  border: 1px solid rgba(101, 221, 215, 0.38);
  border-radius: 8px;
  background: rgba(37, 187, 180, 0.13);
  color: var(--teal-dark) !important;
  font-size: 27px !important;
  line-height: 1 !important;
  font-variation-settings: "FILL" 0, "wght" 600, "GRAD" 0, "opsz" 24;
}

.api-fee-section .benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.usage-volume-feature,
.api-meter-feature {
  border-color: rgba(101, 221, 215, 0.42) !important;
  background:
    linear-gradient(180deg, rgba(37, 187, 180, 0.12), rgba(21, 31, 36, 0.8)),
    rgba(21, 31, 36, 0.78) !important;
}

.usage-volume-feature strong,
.api-meter-feature strong {
  color: var(--teal-dark);
}

.api-cost-feature {
  border-color: rgba(244, 182, 75, 0.5) !important;
}

.api-cost-catch {
  color: var(--gold) !important;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.55 !important;
}

.api-cost-points {
  display: grid;
  gap: 10px;
  margin: 12px 0;
}

.api-cost-points p {
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(244, 182, 75, 0.1);
}

.api-cost-points small,
.api-cost-points b {
  display: block;
}

.api-cost-points small {
  color: var(--muted);
  font-weight: 800;
}

.api-cost-points b {
  margin-top: 3px;
  color: var(--gold);
  font-size: 24px;
  line-height: 1.2;
}

.api-proof-card {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(244, 182, 75, 0.48);
  border-radius: var(--radius);
  background: rgba(244, 182, 75, 0.08);
  box-shadow: var(--shadow);
}

.api-proof-card h3 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.35;
}

.api-proof-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.75;
}

.api-proof-card small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.api-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 31, 36, 0.7);
}

.api-proof-grid span,
.api-proof-grid strong {
  padding: 14px;
  border-right: 1px solid var(--line);
}

.api-proof-grid span:nth-child(5),
.api-proof-grid strong:nth-child(6) {
  border-right: 0;
}

.api-proof-grid span {
  color: var(--muted);
  font-weight: 800;
}

.api-proof-grid strong {
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.screenshot-grid figure {
  margin: 0;
  overflow: hidden;
}

.screenshot-grid img {
  display: block;
  width: 100%;
  border-bottom: 1px solid var(--line);
}

.screenshot-grid figcaption {
  padding: 14px 16px;
  color: var(--muted);
  line-height: 1.65;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.workflow article {
  padding: 18px;
}

.workflow span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
}

.workflow strong {
  display: block;
  margin-bottom: 6px;
}

.workflow p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.mini-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid rgba(244, 182, 75, 0.45);
  border-radius: 8px;
  background: rgba(244, 182, 75, 0.14);
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.mini-icon svg {
  width: 22px;
  height: 22px;
}

.comparison-lead-grid,
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.comparison-lead-card,
.competitor-price-block,
.fit-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 31, 36, 0.78);
  box-shadow: var(--shadow);
}

.comparison-lead-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
}

.comparison-lead-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.55;
}

.comparison-lead-card p,
.competitor-price-head p,
.competitor-card p,
.fit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.comparison-table {
  overflow: hidden;
}

.table-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr 1fr 1fr;
  min-height: 62px;
  border-bottom: 1px solid var(--line);
}

.table-row:last-child {
  border-bottom: 0;
}

.table-row > * {
  padding: 15px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line);
  line-height: 1.55;
}

.table-row > *:last-child {
  border-right: 0;
}

.table-head {
  background: var(--surface-2);
  font-weight: 900;
}

.table-row strong {
  color: var(--teal-dark);
}

.table-row span {
  color: var(--muted);
}

.comparison-note {
  margin: 14px 0 0;
  font-size: 15px;
}

.competitor-price-block {
  margin-top: 20px;
  padding: 22px;
}

.competitor-price-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.competitor-price-head h3,
.fit-card h3 {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 26px;
  line-height: 1.35;
}

.competitor-price-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.competitor-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13, 20, 23, 0.62);
}

.competitor-card.featured {
  border-color: rgba(244, 182, 75, 0.6);
  background:
    linear-gradient(180deg, rgba(244, 182, 75, 0.13), rgba(13, 20, 23, 0.68)),
    rgba(13, 20, 23, 0.62);
}

.competitor-card span,
.competitor-card strong,
.competitor-card small {
  display: block;
}

.competitor-card span {
  min-height: 44px;
  color: var(--text);
  font-weight: 900;
  line-height: 1.35;
}

.competitor-card strong {
  margin-top: 12px;
  color: var(--teal-dark);
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1.15;
}

.competitor-card.featured strong {
  color: var(--gold);
}

.competitor-card small {
  margin: 6px 0 12px;
  color: var(--muted);
  line-height: 1.45;
}

.fit-grid {
  margin-top: 20px;
  margin-bottom: 0;
}

.fit-card {
  position: relative;
  padding: 22px 22px 20px;
}

.fit-card .mini-icon {
  margin-bottom: 12px;
}

.fit-card.good {
  border-color: rgba(101, 221, 215, 0.38);
}

.fit-card.not-good {
  border-color: rgba(244, 182, 75, 0.45);
}

.fit-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-card li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  line-height: 1.65;
}

.fit-card li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
}

.fit-card.not-good li::before {
  background: var(--gold);
}

.fit-card p {
  margin-top: 14px;
}

.cta-sub {
  margin-top: -4px;
  color: var(--teal-dark) !important;
  font-weight: 900;
}

.closing-cta {
  text-align: center;
  margin-bottom: 56px;
}

.hero-actions.center {
  justify-content: center;
  margin-bottom: 0;
}

.hero-actions.center .primary-cta {
  background: #06c755;
  color: #fff;
  box-shadow: 0 18px 38px rgba(6, 199, 85, 0.22);
}

.site-footer {
  display: grid;
  gap: 18px;
  padding: 36px 56px 42px;
  border-top: 1px solid var(--line);
  background: rgba(7, 17, 21, 0.96);
  color: var(--muted);
}

.footer-inner {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(360px, 1.4fr);
  gap: 28px;
  align-items: center;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: #fff;
  font-size: 18px;
}

.footer-brand span {
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.7;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
}

.site-footer a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border: 1px solid rgba(95, 240, 225, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(238, 248, 247, 0.88);
  font-size: 14px;
}

.site-footer a:hover {
  border-color: rgba(95, 240, 225, 0.44);
  color: #fff;
  background: rgba(47, 194, 185, 0.12);
}

.site-footer small {
  width: min(1180px, 100%);
  margin: 0 auto;
  color: rgba(181, 199, 203, 0.78);
}

.legal-page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 64px 56px 80px;
}

.legal-hero {
  margin-bottom: 28px;
}

.legal-hero h1 {
  width: auto;
  margin-bottom: 14px;
  white-space: normal;
}

.legal-hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.manual-page {
  max-width: 1160px;
}

.manual-alert {
  margin: 0 auto 24px;
  padding: 18px 20px;
  border: 1px solid rgba(251, 191, 36, 0.4);
  border-radius: var(--radius);
  background: rgba(251, 191, 36, 0.08);
}

.manual-alert strong {
  color: #fde68a;
  font-size: 18px;
}

.manual-alert p {
  margin: 8px 0 0;
}

.manual-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-bottom: 34px;
}

.manual-index a {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(9, 31, 35, 0.7);
  color: var(--text);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.manual-section {
  margin-bottom: 34px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 31, 36, 0.78);
  box-shadow: var(--shadow);
}

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

.manual-action {
  margin-top: 16px;
}

.manual-grid figure {
  margin: 0;
}

.manual-shot-list {
  display: grid;
  gap: 14px;
}

.manual-grid img {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #07171b;
}

.manual-grid figure img {
  cursor: zoom-in;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.manual-grid figure img:hover {
  border-color: rgba(110, 231, 226, 0.7);
  transform: translateY(-1px);
}

.manual-shot-placeholder {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 20px;
  border: 1px dashed rgba(110, 231, 226, 0.36);
  border-radius: 12px;
  background: rgba(7, 23, 27, 0.78);
  color: var(--teal-dark);
  font-weight: 900;
  text-align: center;
  line-height: 1.7;
}

.manual-shot-placeholder.danger {
  border-color: rgba(251, 191, 36, 0.48);
  color: #fde68a;
  background: rgba(251, 191, 36, 0.08);
}

.manual-grid figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.manual-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0, 8, 10, 0.88);
}

.manual-lightbox.is-open {
  display: flex;
}

.manual-lightbox img {
  display: block;
  max-width: min(96vw, 1600px);
  max-height: 88vh;
  border: 1px solid rgba(110, 231, 226, 0.35);
  border-radius: 12px;
  background: #07171b;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.manual-lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 32, 38, 0.96);
  color: var(--text);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.manual-lightbox button:hover {
  border-color: rgba(110, 231, 226, 0.7);
  color: var(--teal);
}

.manual-steps {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(6, 18, 22, 0.72);
}

.manual-steps ol {
  margin: 0;
  padding-left: 22px;
}

.manual-steps li {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.75;
}

.manual-note {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(45, 212, 191, 0.09);
  color: var(--teal-dark);
  font-weight: 700;
}

.legal-card,
.faq-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 31, 36, 0.78);
  box-shadow: var(--shadow);
}

.legal-card {
  padding: 26px;
}

.legal-card h2,
.faq-list h2 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.45;
}

.legal-card p,
.legal-list dd,
.faq-list p,
.legal-bullets {
  color: var(--muted);
  line-height: 1.85;
}

.legal-card p {
  margin: 0 0 22px;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-list {
  display: grid;
  grid-template-columns: 240px 1fr;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal-list dt,
.legal-list dd {
  margin: 0;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.legal-list dt {
  color: var(--text);
  font-weight: 900;
  background: rgba(30, 48, 53, 0.72);
}

.legal-list dd {
  border-left: 1px solid var(--line);
}

.email-image {
  display: block;
  max-width: min(100%, 340px);
  height: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.conversion-page {
  box-sizing: border-box;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 96px 24px 0;
  overflow-x: hidden;
}

.conversion-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
  min-height: 520px;
  padding: 74px 0 56px;
}

.conversion-hero > *,
.form-section > *,
.step-grid > *,
.guarantee-grid > * {
  min-width: 0;
}

.conversion-hero h1 {
  max-width: 1120px;
  margin: 0 0 22px;
  color: var(--text);
  font-size: clamp(38px, 3.9vw, 64px);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.conversion-hero p {
  max-width: 860px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.conversion-panel,
.checkout-card {
  align-self: start;
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  padding: 28px;
  border: 1px solid rgba(101, 221, 215, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(37, 187, 180, 0.18), rgba(21, 31, 36, 0.82)),
    rgba(21, 31, 36, 0.78);
  box-shadow: var(--shadow);
}

.conversion-panel span,
.checkout-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 800;
}

.conversion-panel strong,
.checkout-card strong {
  display: block;
  color: var(--teal-dark);
  font-size: 38px;
  line-height: 1.25;
}

.conversion-panel p,
.checkout-card p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.price-panel {
  border-color: rgba(244, 182, 75, 0.5);
  background:
    linear-gradient(145deg, rgba(244, 182, 75, 0.2), rgba(21, 31, 36, 0.86)),
    rgba(21, 31, 36, 0.78);
}

.price-panel del {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 26px;
  font-weight: 900;
}

.price-panel strong {
  color: var(--gold);
  font-size: 56px;
}

.compact-section {
  padding-top: 58px;
}

.step-grid,
.guarantee-grid,
.trial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.step-grid article,
.guarantee-grid article,
.trial-grid article,
.checkout-card,
.conversion-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 31, 36, 0.78);
  box-shadow: var(--shadow);
}

.step-grid article,
.guarantee-grid article,
.trial-grid article {
  padding: 22px;
}

.step-grid b {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(37, 187, 180, 0.16);
  color: var(--teal-dark);
}

.step-grid strong,
.guarantee-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.55;
}

.step-grid span,
.guarantee-grid span {
  color: var(--muted);
  line-height: 1.75;
}

.trial-section > p {
  max-width: 900px;
  color: var(--muted);
  line-height: 1.85;
}

.trial-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 800;
}

.trial-grid strong {
  display: block;
  color: var(--teal-dark);
  font-size: 32px;
  line-height: 1.25;
}

.trial-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 28px;
  align-items: start;
}

.conversion-page .section {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.form-copy p {
  color: var(--muted);
  line-height: 1.9;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.7;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
}

.conversion-form {
  display: grid;
  gap: 18px;
  padding: 26px;
}

.conversion-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 900;
}

.conversion-form input[type="email"] {
  width: 100%;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(7, 23, 27, 0.86);
  color: var(--text);
  font: inherit;
}

.conversion-form input[type="email"]:focus {
  border-color: rgba(101, 221, 215, 0.72);
  outline: 2px solid rgba(37, 187, 180, 0.16);
}

.checkbox-row {
  grid-template-columns: 22px 1fr;
  gap: 12px !important;
  align-items: start;
  color: var(--muted) !important;
  font-weight: 700 !important;
  line-height: 1.75;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 5px;
  accent-color: var(--teal);
}

.checkbox-row a {
  color: var(--teal-dark);
}

.conversion-form button,
.checkout-card .primary-cta {
  display: grid;
  place-items: center;
  min-height: 56px;
  border: 0;
  border-radius: 10px;
  background: var(--teal);
  color: #fff;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.checkout-card .primary-cta[aria-disabled="true"] {
  background: rgba(159, 176, 181, 0.22);
  color: var(--muted);
  cursor: not-allowed;
}

.invite-code-card {
  display: grid;
  gap: 18px;
  margin: 4px 0 8px;
  padding: 20px;
  border: 1px solid rgba(101, 221, 215, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(37, 187, 180, 0.14), rgba(244, 182, 75, 0.07)),
    rgba(8, 21, 25, 0.72);
}

.invite-code-copy {
  display: grid;
  gap: 8px;
}

.invite-code-copy .eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.invite-code-copy h3 {
  margin: 0;
  color: var(--text);
  font-size: 22px;
  line-height: 1.45;
}

.invite-code-copy p,
.invite-code-message {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.invite-code-card small {
  color: rgba(237, 245, 245, 0.72);
}

.invite-code-form {
  display: grid;
  gap: 10px;
}

.invite-code-form label {
  color: var(--text);
  font-weight: 900;
}

.invite-code-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
}

.invite-code-control input {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(101, 221, 215, 0.28);
  border-radius: 10px;
  background: rgba(6, 18, 21, 0.92);
  color: var(--text);
  font: inherit;
}

.invite-code-control input::placeholder {
  color: rgba(159, 176, 181, 0.78);
}

.invite-code-control input:focus {
  border-color: rgba(101, 221, 215, 0.78);
  outline: 2px solid rgba(37, 187, 180, 0.16);
}

.invite-code-control button {
  min-width: 118px;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid rgba(101, 221, 215, 0.38);
  border-radius: 10px;
  background: rgba(37, 187, 180, 0.18);
  color: var(--teal-dark);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.invite-code-control button:hover,
.invite-code-control button:focus-visible {
  border-color: rgba(101, 221, 215, 0.72);
  background: rgba(37, 187, 180, 0.26);
  outline: none;
}

.invite-code-test-hint {
  color: rgba(237, 245, 245, 0.76);
}

.invite-code-test-hint code {
  display: inline-block;
  padding: 2px 7px;
  border: 1px solid rgba(244, 182, 75, 0.42);
  border-radius: 6px;
  background: rgba(244, 182, 75, 0.12);
  color: var(--gold);
  font-weight: 900;
}

.invite-code-message {
  min-height: 1.75em;
  font-size: 14px;
}

.invite-code-message[data-state="error"] {
  color: #ffb8a6;
}

.invite-code-message[data-state="pending"] {
  color: #ffd889;
}

.invite-code-message[data-state="success"] {
  color: var(--teal-dark);
}

.invite-code-price {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border: 1px solid rgba(244, 182, 75, 0.36);
  border-radius: 10px;
  background: rgba(244, 182, 75, 0.1);
}

.invite-code-price[hidden] {
  display: none;
}

.checkout-card .invite-code-price span {
  margin-bottom: 0;
  color: var(--muted);
}

.checkout-card .invite-code-price strong {
  color: var(--gold);
  font-size: 20px;
}

.sandbox-checkout-panel {
  grid-column: 1 / -1;
  overflow: hidden;
  border: 1px dashed rgba(244, 182, 75, 0.72);
  border-radius: var(--radius);
  background: rgba(44, 36, 20, 0.56);
}

.sandbox-checkout-panel summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 18px 20px;
  color: var(--gold);
  cursor: pointer;
  list-style: none;
}

.sandbox-checkout-panel summary::-webkit-details-marker {
  display: none;
}

.sandbox-checkout-panel summary span {
  color: rgba(255, 232, 184, 0.8);
  font-weight: 800;
}

.sandbox-checkout-panel summary strong {
  color: #fff;
  font-size: 18px;
}

.sandbox-checkout-body {
  display: grid;
  gap: 18px;
  padding: 0 20px 20px;
}

.sandbox-checkout-copy {
  display: grid;
  gap: 8px;
  color: rgba(237, 245, 245, 0.78);
}

.sandbox-checkout-copy h3,
.sandbox-invite-links h4 {
  margin: 0;
  color: #fff;
}

.sandbox-checkout-copy p,
.sandbox-invite-links p {
  margin: 0;
  color: rgba(237, 245, 245, 0.72);
  line-height: 1.7;
}

.sandbox-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.sandbox-link-grid a {
  display: grid;
  gap: 6px;
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(244, 182, 75, 0.42);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(13, 20, 23, 0.58);
  color: #fff;
  text-decoration: none;
}

.sandbox-link-grid a:hover,
.sandbox-link-grid a:focus-visible {
  border-color: rgba(244, 182, 75, 0.9);
  outline: none;
}

.sandbox-link-grid span {
  color: rgba(255, 232, 184, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.sandbox-link-grid strong {
  color: var(--gold);
  font-size: 20px;
}

.sandbox-invite-links {
  display: grid;
  gap: 14px;
  padding-top: 4px;
}

.sandbox-invite-links[hidden] {
  display: none;
}

.form-note,
.checkout-card small {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.download-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 56px 84px;
}

.download-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 42px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(45, 212, 191, 0.14), rgba(21, 31, 36, 0.84)),
    rgba(21, 31, 36, 0.88);
  box-shadow: var(--shadow);
}

.download-hero h1 {
  width: auto;
  margin: 0 0 16px;
  color: var(--text);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.12;
  white-space: normal;
}

.download-hero p,
.download-summary-card p {
  color: var(--muted);
  line-height: 1.85;
}

.download-summary-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(110, 231, 226, 0.24);
  border-radius: var(--radius);
  background: rgba(5, 19, 23, 0.7);
}

.download-summary-card > span {
  color: var(--teal-dark);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.download-summary-card strong {
  color: var(--text);
  font-size: 32px;
  line-height: 1.25;
}

.download-primary::before {
  content: "download";
  margin-right: 8px;
  font-family: "Material Symbols Rounded";
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.download-section {
  margin-top: 42px;
}

.download-security-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 22px;
  align-items: start;
  margin: 0 0 46px;
  padding: 28px;
  border: 1px solid rgba(251, 191, 36, 0.46);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(45, 212, 191, 0.08) 42%, transparent),
    rgba(21, 31, 36, 0.9);
  box-shadow: var(--shadow);
}

.download-security-panel h2 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.22;
}

.download-security-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.download-check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.download-check-grid article,
.download-file-list,
.download-notice {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 31, 36, 0.78);
  box-shadow: var(--shadow);
}

.download-check-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.download-check-grid strong {
  color: var(--text);
  font-size: 20px;
  line-height: 1.4;
}

.download-check-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.download-file-list {
  overflow: hidden;
  margin: 0;
}

.download-file-list.compact {
  box-shadow: none;
}

.download-file-list div {
  display: grid;
  grid-template-columns: minmax(150px, 0.32fr) minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
}

.download-file-list div:last-child {
  border-bottom: 0;
}

.download-file-list dt,
.download-file-list dd {
  margin: 0;
  padding: 16px 18px;
  line-height: 1.65;
}

.download-file-list dt {
  color: var(--text);
  font-weight: 900;
  background: rgba(30, 48, 53, 0.72);
}

.download-file-list dd {
  color: var(--muted);
  border-left: 1px solid var(--line);
  overflow-wrap: anywhere;
}

.download-hash,
.download-url {
  font-family: Consolas, "Courier New", monospace;
  font-size: 14px;
}

.download-notice {
  margin-top: 46px;
  padding: 28px;
  border-color: rgba(251, 191, 36, 0.32);
  background:
    linear-gradient(135deg, rgba(251, 191, 36, 0.12), transparent 54%),
    rgba(21, 31, 36, 0.84);
}

.download-notice h2 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.25;
}

.download-notice p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.85;
}

.download-notice code {
  color: var(--teal-dark);
  font-family: Consolas, "Courier New", monospace;
}

.download-file-list code {
  color: var(--teal-dark);
  font-family: Consolas, "Courier New", monospace;
  font-size: 14px;
}

.checkout-card {
  display: grid;
  gap: 14px;
  align-self: stretch;
}

.checkout-card small {
  display: block;
}

.checkout-card .purchase-option {
  position: relative;
  gap: 10px;
  padding: 20px;
  overflow: hidden;
}

.checkout-card .purchase-option::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: currentColor;
  opacity: 0.85;
}

.checkout-card .purchase-option span,
.checkout-card .purchase-option small {
  margin-bottom: 0;
}

.checkout-card .purchase-option strong {
  font-size: clamp(32px, 4vw, 42px);
}

.checkout-card .purchase-option--single {
  color: var(--teal-dark);
  border-color: rgba(101, 221, 215, 0.52);
  background:
    linear-gradient(135deg, rgba(37, 187, 180, 0.2), rgba(13, 20, 23, 0.72)),
    rgba(13, 20, 23, 0.74);
}

.checkout-card .purchase-option--single strong {
  color: var(--teal-dark);
}

.checkout-card .purchase-option--bundle {
  color: var(--gold);
  border-color: rgba(244, 182, 75, 0.72);
  background:
    linear-gradient(135deg, rgba(244, 182, 75, 0.24), rgba(107, 73, 18, 0.22), rgba(13, 20, 23, 0.74)),
    rgba(20, 17, 11, 0.78);
  box-shadow: 0 20px 44px rgba(244, 182, 75, 0.12);
}

.checkout-card .purchase-option--bundle span:first-child,
.checkout-card .purchase-option--bundle strong {
  color: var(--gold);
}

.checkout-card .purchase-option--bundle .primary-cta {
  background: var(--gold);
  color: #17130b;
}

.checkout-card .purchase-option--setup {
  color: #9ec7ff;
  border-color: rgba(126, 166, 255, 0.58);
  background:
    linear-gradient(135deg, rgba(86, 120, 230, 0.22), rgba(13, 20, 23, 0.74)),
    rgba(13, 20, 23, 0.78);
}

.checkout-card .purchase-option--setup span:first-child,
.checkout-card .purchase-option--setup strong {
  color: #9ec7ff;
}

.checkout-card .purchase-option--setup .primary-cta {
  background: #5678e6;
}

.checkout-card .purchase-option.is-invite-applied {
  border-color: rgba(244, 182, 75, 0.92);
  box-shadow: 0 18px 34px rgba(244, 182, 75, 0.12);
}

.checkout-card .purchase-option.is-invite-applied::after {
  content: "招待特典適用中";
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(244, 182, 75, 0.18);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.guarantee-section {
  display: grid;
  gap: 24px;
}

.legal-list dt:nth-last-child(2),
.legal-list dd:last-child {
  border-bottom: 0;
}

.legal-bullets {
  margin: 0 0 22px;
  padding-left: 1.25em;
}

.legal-date {
  color: var(--teal-dark) !important;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-list article {
  padding: 22px;
}

.faq-list p {
  margin: 0;
}

.feature-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 56px 84px;
}

.feature-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 34px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(45, 212, 191, 0.14), rgba(21, 31, 36, 0.84)),
    rgba(21, 31, 36, 0.88);
  box-shadow: var(--shadow);
}

.feature-hero h1 {
  width: auto;
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.12;
  white-space: normal;
}

.feature-hero p,
.feature-hero-card p {
  color: var(--muted);
  line-height: 1.85;
}

.feature-hero-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(110, 231, 226, 0.24);
  border-radius: var(--radius);
  background: rgba(5, 19, 23, 0.7);
}

.feature-hero-card > span {
  color: var(--teal-dark);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.feature-hero-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-hero-card li {
  color: var(--muted);
  line-height: 1.65;
}

.feature-hero-card b {
  color: var(--text);
}

.feature-section {
  margin-top: 42px;
}

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

.feature-section-head h2,
.feature-notice h2,
.faq-category-title {
  margin: 0 0 10px;
  color: var(--text);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.25;
}

.feature-section-head p,
.feature-notice p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

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

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

.feature-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 31, 36, 0.78);
  box-shadow: var(--shadow);
}

.feature-card.is-highlight {
  border-color: rgba(110, 231, 226, 0.44);
  background:
    linear-gradient(180deg, rgba(45, 212, 191, 0.11), transparent 64%),
    rgba(21, 31, 36, 0.84);
}

.feature-card.muted {
  background: rgba(21, 31, 36, 0.58);
}

.feature-symbol {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(110, 231, 226, 0.32);
  border-radius: 12px;
  background: rgba(45, 212, 191, 0.1);
  color: var(--teal-dark);
  font-family: "Material Symbols Rounded";
  font-size: 25px;
  line-height: 1;
}

.feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.feature-status.ready {
  background: rgba(45, 212, 191, 0.15);
  color: var(--teal-dark);
}

.feature-status.partial {
  background: rgba(251, 191, 36, 0.15);
  color: #fde68a;
}

.feature-status.planned {
  background: rgba(148, 163, 184, 0.18);
  color: #cbd5e1;
}

.feature-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 21px;
  line-height: 1.4;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.image-open-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  min-height: 44px;
  margin-top: 4px;
  padding: 10px 16px;
  border: 1px solid rgba(110, 231, 226, 0.44);
  border-radius: var(--radius);
  background: rgba(9, 31, 35, 0.86);
  color: var(--text);
  font: inherit;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
}

.image-open-button::before {
  content: "open_in_full";
  font-family: "Material Symbols Rounded";
  font-size: 19px;
  font-weight: 600;
  line-height: 1;
}

.image-open-button:hover,
.image-open-button:focus-visible {
  border-color: rgba(110, 231, 226, 0.76);
  color: var(--teal-dark);
  outline: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.image-lightbox.is-open {
  display: flex;
}

body.image-lightbox-open {
  overflow: hidden;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 8, 10, 0.84);
  cursor: zoom-out;
}

.image-lightbox-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  width: min(96vw, 1180px);
  max-height: 90vh;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(110, 231, 226, 0.34);
  border-radius: var(--radius);
  background: rgba(9, 31, 35, 0.96);
  box-shadow: var(--shadow-strong);
}

.image-lightbox-panel img {
  display: block;
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: calc(var(--radius) - 4px);
  background: rgba(5, 19, 23, 0.9);
}

.image-lightbox-panel figcaption {
  color: var(--muted);
  font-weight: 900;
  line-height: 1.5;
}

.image-lightbox-close {
  display: inline-grid;
  place-items: center;
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(110, 231, 226, 0.34);
  border-radius: var(--radius);
  background: rgba(21, 31, 36, 0.9);
  color: var(--text);
  cursor: pointer;
}

.image-lightbox-close span {
  font-family: "Material Symbols Rounded";
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.image-lightbox-close:hover,
.image-lightbox-close:focus-visible {
  border-color: rgba(110, 231, 226, 0.72);
  color: var(--teal-dark);
  outline: none;
}

.feature-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.feature-flow article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 31, 36, 0.72);
}

.feature-flow b {
  color: var(--teal-dark);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.feature-flow strong {
  color: var(--text);
  font-size: 18px;
}

.feature-flow span {
  color: var(--muted);
  line-height: 1.7;
}

.feature-notice {
  margin-top: 46px;
  padding: 28px;
  border: 1px solid rgba(251, 191, 36, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(251, 191, 36, 0.12), transparent 54%),
    rgba(21, 31, 36, 0.84);
  box-shadow: var(--shadow);
}

.qa-page {
  max-width: 1120px;
}

.qa-index {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 34px;
}

.qa-index a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(9, 31, 35, 0.72);
  color: var(--text);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.qa-index a:hover {
  border-color: rgba(110, 231, 226, 0.56);
  color: var(--teal-dark);
}

.faq-section {
  margin-top: 34px;
}

.faq-section:first-of-type {
  margin-top: 0;
}

.faq-category-title {
  font-size: clamp(24px, 3.5vw, 34px);
}

.faq-section .faq-list {
  margin-top: 14px;
}

.qa-closing {
  margin-top: 38px;
}

@media (min-width: 981px) and (max-width: 1180px) {
  body {
    font-size: 17px;
  }

  .site-header {
    padding: 0 28px;
  }

  nav {
    gap: 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 44px 34px 36px;
  }

  h1 {
    font-size: 52px;
  }

  .hero-product {
    max-width: 860px;
  }

  .quick-summary-section {
    padding-left: 34px;
    padding-right: 34px;
  }

  .problem-strip,
  .section {
    padding-left: 34px;
    padding-right: 34px;
  }

  .problem-strip,
  .benefit-grid,
  .sales-benefit-grid,
  .target-grid,
  .demo-grid,
  .trial-grid,
  .pricing-grid,
  .quick-summary-grid,
  .line-join-panel,
  .purchase-combo-card,
  .monitor-card,
  .developer-achievement-grid,
  .comparison-lead-grid,
  .fit-grid,
  .download-check-grid,
  .feature-grid,
  .feature-grid.compact,
  .qa-index,
  .purchase-flow,
  .workflow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .download-hero,
  .download-security-panel,
  .feature-hero,
  .feature-flow {
    grid-template-columns: 1fr;
  }

  .developer-message-panel {
    grid-template-columns: 1fr;
  }

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

  .slot-status {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 980px) {
  body {
    font-size: 17px;
  }

  .slot-status {
    grid-template-columns: 1fr;
  }

  .site-header,
  nav,
  .hero-actions,
  .trust-list {
    align-items: flex-start;
  }

  .site-header,
  .hero,
  .problem-strip,
  .quick-summary-section,
  .section,
  .download-page,
  .legal-page {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-header {
    height: auto;
    flex-direction: column;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .brand img {
    width: 190px;
  }

  nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .hero {
    min-height: auto;
    gap: 30px;
    padding-top: 36px;
    padding-bottom: 32px;
  }

  h1 {
    font-size: 40px;
    white-space: normal;
  }

  .lead {
    font-size: 19px;
  }

  .hero-subcopy {
    font-size: 20px;
  }

  .price-box {
    width: 100%;
    min-width: 0;
  }

  .sales-proof-card,
  .hero-combo-card {
    width: 100%;
  }

  .hero,
  .problem-strip,
  .conversion-hero,
  .form-section,
  .benefit-grid,
  .sales-benefit-grid,
  .target-grid,
  .demo-grid,
  .demo-experience-grid,
  .comparison-lead-grid,
  .competitor-price-grid,
  .fit-grid,
  .screenshot-grid,
  .pricing-grid,
  .quick-summary-grid,
  .line-join-panel,
  .purchase-combo-card,
  .monitor-card,
  .developer-message-panel,
  .developer-achievement-grid,
  .service-grid,
  .cost-comparison,
  .manual-grid,
  .download-hero,
  .download-security-panel,
  .download-check-grid,
  .feature-hero,
  .feature-grid,
  .feature-grid.compact,
  .feature-flow,
  .qa-index,
  .step-grid,
  .guarantee-grid,
  .trial-grid,
  .purchase-flow,
  .workflow {
    grid-template-columns: 1fr;
  }

  .api-fee-section .benefit-grid {
    grid-template-columns: 1fr;
  }

  .trial-spotlight-grid,
  .trial-spotlight article {
    grid-template-columns: 1fr;
  }

  .trial-spotlight img {
    max-height: 180px;
  }

  .conversion-page {
    width: min(100%, calc(100% - 40px));
    padding-top: 24px;
  }

  .conversion-hero {
    min-height: auto;
    padding-top: 36px;
    padding-bottom: 32px;
  }

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

  .cost-summary {
    position: static;
  }

  .table-row {
    grid-template-columns: 1fr;
  }

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

  .legal-list dd {
    border-left: 0;
  }

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

  .api-proof-grid span,
  .api-proof-grid strong {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .api-proof-grid strong:last-child {
    border-bottom: 0;
  }

  .table-row > * {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .app-layout {
    grid-template-columns: 1fr;
  }

  .app-layout aside {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mini-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
    background: var(--bg);
  }

  .site-header {
    padding: 14px 16px;
    gap: 14px;
  }

  .brand img {
    width: 174px;
  }

  nav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    font-size: 14px;
  }

  nav a,
  .header-cta {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
  }

  .header-cta {
    width: 100%;
  }

  .hero,
  .problem-strip,
  .quick-summary-section,
  .section,
  .legal-page,
  .feature-page,
  .download-page,
  .conversion-page {
    padding-left: 16px;
    padding-right: 16px;
  }

  .conversion-page {
    width: 100%;
    padding-top: 24px;
  }

  .conversion-hero {
    padding-top: 28px;
    gap: 24px;
  }

  .conversion-hero h1 {
    font-size: 34px;
  }

  .conversion-hero p {
    font-size: 16px;
  }

  .conversion-panel,
  .checkout-card,
  .conversion-form,
  .download-hero,
  .download-security-panel,
  .download-summary-card,
  .download-notice,
  .feature-hero,
  .feature-hero-card,
  .feature-notice {
    padding: 18px;
  }

  .sandbox-checkout-panel summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .sandbox-link-grid {
    grid-template-columns: 1fr;
  }

  .invite-code-card {
    padding: 16px;
  }

  .invite-code-control {
    grid-template-columns: 1fr;
  }

  .invite-code-control button {
    width: 100%;
  }

  .invite-code-copy h3 {
    font-size: 20px;
  }

  .download-page {
    padding-top: 32px;
    padding-bottom: 56px;
  }

  .download-hero h1 {
    font-size: 32px;
  }

  .download-file-list div {
    grid-template-columns: 1fr;
  }

  .download-file-list dd {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .feature-page {
    padding-top: 32px;
    padding-bottom: 56px;
  }

  .feature-hero h1 {
    font-size: 32px;
  }

  .image-open-button {
    width: 100%;
  }

  .image-lightbox {
    padding: 10px;
  }

  .image-lightbox-panel {
    max-height: 92vh;
    padding: 10px;
  }

  .image-lightbox-panel img {
    max-height: 72vh;
  }

  .conversion-panel strong,
  .checkout-card strong {
    font-size: 30px;
  }

  .price-panel strong {
    font-size: 42px;
  }

  .manual-index {
    grid-template-columns: 1fr 1fr;
  }

  .manual-section {
    padding: 18px;
  }

  .hero {
    padding-top: 28px;
    gap: 24px;
  }

  h1 {
    font-size: 27px;
  }

  .lead {
    font-size: 18px;
    line-height: 1.75;
  }

  .hero-subcopy {
    font-size: 17px;
  }

  .price-box {
    padding: 15px;
  }

  .sales-proof-card,
  .hero-combo-card {
    padding: 15px;
  }

  .price-box em {
    font-size: 20px;
  }

  .price-box strong {
    font-size: 30px;
  }

  .trial-spotlight {
    padding: 13px;
  }

  .trial-spotlight-title {
    font-size: 15px;
  }

  .trial-spotlight article {
    padding: 10px;
  }

  .trial-spotlight strong {
    font-size: 16px;
  }

  .pricing-card strong {
    font-size: 36px;
  }

  .slot-status {
    gap: 14px;
    padding: 16px;
  }

  .monitor-motivation {
    padding: 16px;
  }

  .slot-progress-labels {
    grid-template-columns: 1fr auto 1fr;
    justify-items: stretch;
    gap: 6px;
  }

  .slot-progress-labels span:last-child {
    text-align: right;
  }

  .hero-actions {
    display: grid;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
  }

  .trust-list li {
    font-size: 14px;
  }

  .app-window {
    border-radius: var(--radius);
  }

  .app-layout {
    min-height: auto;
  }

  .app-layout aside {
    padding: 14px;
  }

  .app-layout aside img {
    width: 138px;
  }

  .app-layout section {
    padding: 16px;
  }

  .queue div {
    grid-template-columns: 1fr;
  }

  .floating-note {
    position: static;
    display: inline-flex;
    margin-top: 10px;
    margin-right: 8px;
    font-size: 13px;
  }

  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .legal-page {
    padding-top: 40px;
    padding-bottom: 56px;
  }

  .section-head h2,
  .closing-cta h2 {
    font-size: 30px;
  }

  .quick-summary-head h2 {
    font-size: 28px;
  }

  .benefit-grid article,
  .sales-benefit-grid article,
  .quick-summary-grid article,
  .feature-card,
  .feature-flow article,
  .line-join-panel,
  .target-grid article,
  .demo-grid article,
  .demo-experience-body,
  .purchase-combo-card,
  .monitor-card,
  .developer-message-panel,
  .comparison-lead-card,
  .competitor-price-block,
  .competitor-card,
  .fit-card,
  .purchase-flow article,
  .workflow article,
  .pricing-card {
    padding: 16px;
  }

  .developer-profile img {
    width: 96px;
    height: 96px;
  }

  .developer-achievement-grid article {
    min-height: 0;
    padding: 16px;
  }

  .line-join-copy h3 {
    font-size: 24px;
  }

  .line-qr-card img {
    width: min(100%, 176px);
  }

  .demo-preview {
    min-height: 0;
    padding: 24px 18px 22px;
  }

  .demo-preview-heading strong {
    font-size: 28px;
  }

  .demo-preview-heading span,
  .demo-browser-bar b,
  .demo-browser-content p,
  .demo-desktop-content p {
    font-size: 16px;
  }

  .demo-browser-content {
    padding: 18px 16px;
  }

  .demo-browser-content .demo-metric {
    width: 70%;
    font-size: 18px;
  }

  .demo-desktop-frame {
    grid-template-columns: 1fr;
  }

  .demo-desktop-frame aside {
    grid-template-columns: repeat(3, max-content);
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
  }

  .demo-desktop-frame aside b {
    grid-column: 1 / -1;
  }

  .demo-desktop-content {
    padding: 18px 16px;
  }

  .demo-stat-row {
    gap: 8px;
  }

  .demo-stat-row strong {
    min-height: 52px;
    font-size: 17px;
  }

  .demo-preview-ribbon span {
    font-size: 18px;
  }

  .demo-section-cta {
    padding: 16px;
  }

  .api-cost-catch {
    font-size: 18px;
  }

  .table-head {
    display: none;
  }

  .table-row {
    margin-bottom: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(21, 31, 36, 0.78);
  }

  .table-row > * {
    padding: 12px 14px;
  }

  .comparison-note {
    font-size: 14px;
  }

  .cost-row-head {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .cost-summary strong {
    font-size: 30px;
  }

  .closing-cta {
    margin-bottom: 32px;
  }

  .site-footer nav {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    text-align: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .site-footer {
    padding: 32px 20px 38px;
  }

  html.reveal-ready .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .back-to-top {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: 44px;
    height: 44px;
  }

  html.mobile-accordion-ready .mobile-expand-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 50px;
    margin: 2px 0 20px;
    border: 1px solid rgba(101, 221, 215, 0.36);
    border-radius: 999px;
    background: rgba(37, 187, 180, 0.12);
    color: var(--teal-dark);
    font: inherit;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 0;
  }

  html.mobile-accordion-ready .mobile-expand-toggle .material-symbols-rounded {
    font-size: 23px;
    transition: transform 180ms ease;
  }

  html.mobile-accordion-ready .mobile-expand-toggle.is-expanded .material-symbols-rounded {
    transform: rotate(180deg);
  }

  html.mobile-accordion-ready .mobile-collapsible {
    display: none;
  }

  html.mobile-accordion-ready .mobile-collapsible.is-expanded {
    display: block;
  }
}

@media (max-width: 980px) {
  body[data-sales-phase] .site-header {
    position: absolute;
    height: auto;
    min-height: 72px;
    padding: 14px 20px;
    flex-direction: row;
    align-items: center;
  }

  body[data-sales-phase] .site-header nav {
    display: none;
  }

  body[data-sales-phase] .header-cta {
    width: auto;
    min-height: 42px;
    padding: 10px 13px;
    font-size: 14px;
    border-radius: 999px;
  }

  body[data-sales-phase] .brand img {
    width: 38px;
    height: 38px;
  }

  body[data-sales-phase] .brand span {
    font-size: 18px;
  }

  body[data-sales-phase] .hero {
    min-height: 100svh;
    padding: 104px 22px 76px;
    gap: 18px;
  }

  .hero-mark {
    width: 68px;
    height: 68px;
    margin-bottom: 18px;
    border-radius: 20px;
  }

  body[data-sales-phase] .hero h1 {
    font-size: clamp(38px, 10vw, 58px);
    line-height: 1.08;
  }

  body[data-sales-phase] .hero-title-line-main {
    font-size: 1.02em;
  }

  body[data-sales-phase] .hero-title-line-sub {
    font-size: 0.58em;
  }

  body[data-sales-phase] .hero-subcopy {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.65;
    white-space: normal;
  }

  .sns-line,
  .hero-badges {
    gap: 8px;
    margin-top: 18px;
  }

  .sns-line span,
  .hero-badges span {
    min-height: 32px;
    padding: 7px 10px;
    font-size: 13px;
  }

  .hero-trial-highlight {
    grid-template-columns: 1fr;
    width: min(100%, 420px);
    margin-top: 18px;
    padding: 12px;
    border-radius: 16px;
    text-align: center;
  }

  .hero-trial-highlight span {
    grid-row: auto;
    justify-self: center;
  }

  .hero-trial-highlight small {
    grid-column: auto;
  }

  body[data-sales-phase] .hero-actions {
    width: min(100%, 420px);
    display: grid;
    gap: 10px;
    margin-top: 24px;
  }

  body[data-sales-phase] .hero .primary-cta,
  body[data-sales-phase] .hero .secondary-cta {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    font-size: 16px;
  }

  body[data-sales-phase] .hero-product {
    display: none;
  }

  .hero-sales-points {
    grid-template-columns: 1fr;
    width: min(100%, 420px);
    margin-top: 18px;
    padding: 8px;
  }

  .hero-sales-points span {
    padding: 10px 12px;
  }

  .hero-sales-points b {
    font-size: 24px;
  }

  .hero-security-note {
    max-width: 420px;
    font-size: 13px;
  }

  .line-bonus-note {
    max-width: 420px;
    border-radius: 14px;
    font-size: 13px;
    text-align: center;
  }
}

@media (max-width: 420px) {
  body[data-sales-phase] .site-header {
    padding-left: 14px;
    padding-right: 14px;
  }

  body[data-sales-phase] .brand span {
    font-size: 16px;
  }

  body[data-sales-phase] .header-cta {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 13px;
  }

  body[data-sales-phase] .hero h1 {
    font-size: 34px;
  }

  body[data-sales-phase] .hero-title-line-sub {
    font-size: 0.56em;
  }

  body[data-sales-phase] .hero-subcopy {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 18px;
  }

  .section-head p,
  .quick-summary-grid p,
  .benefit-grid article span,
  .sales-benefit-grid article p,
  .line-bonus-card p,
  .demo-experience-body p,
  .demo-experience-body li,
  .pricing-card li,
  .purchase-flow p,
  .monitor-card p,
  .service-card p,
  .service-list li,
  .api-fee-section article span,
  .api-proof-card p,
  .target-grid article span,
  .line-section article span,
  .cost-note,
  .screenshot-grid figcaption,
  .workflow p,
  .comparison-lead-card p,
  .table-row > *,
  .competitor-card p,
  .fit-card li,
  .fit-card p,
  .closing-cta p {
    font-size: 18px;
    line-height: 1.75;
  }

  .slot-status-main p,
  .monitor-motivation p,
  .comparison-note,
  .line-bonus-note,
  .hero-security-note {
    font-size: 15px;
    line-height: 1.7;
  }

  body[data-sales-phase] .hero-subcopy {
    font-size: 18px;
  }

  body[data-sales-phase] .hero .primary-cta,
  body[data-sales-phase] .hero .secondary-cta,
  .primary-cta,
  .secondary-cta {
    font-size: 17px;
    line-height: 1.35;
  }
}
