:root {
  --ink: #101318;
  --muted: #5b6470;
  --line: rgba(16, 19, 24, 0.12);
  --paper: #fbfaf7;
  --soft: #f1f5ee;
  --green: #0bbf79;
  --green-dark: #087a52;
  --blue: #1d63ff;
  --coral: #ff6b57;
  --yellow: #f7c948;
  --shadow: 0 24px 80px rgba(16, 19, 24, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::selection {
  background: rgba(11, 191, 121, 0.25);
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 30;
  display: flex;
  width: min(1180px, calc(100% - 28px));
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 40px rgba(16, 19, 24, 0.08);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 50px rgba(16, 19, 24, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  text-decoration: none;
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: contain;
}

.brand-name {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(16, 19, 24, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--green-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-select select {
  height: 42px;
  max-width: 136px;
  padding: 0 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
}

.header-cta,
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.header-cta,
.btn.primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 24px rgba(16, 19, 24, 0.16);
}

.header-cta:hover,
.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(16, 19, 24, 0.2);
}

.btn.secondary {
  color: var(--ink);
  border: 1px solid rgba(16, 19, 24, 0.18);
  background: rgba(255, 255, 255, 0.66);
}

.btn.secondary:hover {
  background: #fff;
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 76svh;
  align-items: center;
  padding: 112px 24px 60px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  right: -2%;
  bottom: 0;
  z-index: 1;
  width: 62%;
  height: 100%;
  background-image: url("assets/hero-options/hero-world-links.png");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: contain;
  transform: scale(1);
  transform-origin: center right;
  animation: heroDrift 16s ease-in-out infinite alternate;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 12%, #000 82%, transparent 100%),
    linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 12%, #000 82%, transparent 100%),
    linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
  mask-composite: intersect;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 1) 0%, rgba(251, 250, 247, 0.96) 38%, rgba(251, 250, 247, 0.38) 72%, rgba(251, 250, 247, 0.12) 100%),
    linear-gradient(180deg, rgba(251, 250, 247, 0.02), rgba(251, 250, 247, 0.92));
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 24%;
  background: linear-gradient(90deg, rgba(251, 250, 247, 0), var(--paper) 88%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(650px, 100%);
  min-width: 0;
  margin-left: max(0px, calc((100vw - 1180px) / 2));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 7.6rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  width: min(570px, 100%);
  margin: 28px 0 0;
  color: #2f3740;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof span {
  padding: 8px 12px;
  border: 1px solid rgba(16, 19, 24, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #2f3740;
  font-size: 0.86rem;
  font-weight: 800;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  border: 1px solid rgba(16, 19, 24, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.trust-item {
  min-height: 112px;
  padding: 24px;
  border-right: 1px solid rgba(16, 19, 24, 0.08);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
}

.trust-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 750;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 118px 0;
}

.section-head {
  width: min(730px, 100%);
}

.section-head.centered {
  width: min(860px, 100%);
  margin: 0 auto;
  text-align: center;
}

.section-head h2,
.split-copy h2,
.scenario-copy h2,
.download h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-head p:not(.eyebrow),
.split-copy p,
.download p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.feature-card,
.price-card,
.faq details {
  border: 1px solid rgba(16, 19, 24, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 36px rgba(16, 19, 24, 0.06);
}

.feature-card {
  min-height: 260px;
  padding: 24px;
}

.feature-card:nth-child(2) .icon {
  color: var(--blue);
}

.feature-card:nth-child(3) .icon {
  color: var(--coral);
}

.feature-card:nth-child(4) .icon {
  color: var(--green-dark);
}

.icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #f4f6f4;
  color: var(--green);
  font-size: 1.45rem;
  font-weight: 900;
}

.feature-card h3 {
  margin: 32px 0 10px;
  font-size: 1.18rem;
}

.feature-card p,
.price-card p,
.platform-card p,
.price-card li,
.faq p,
.check-list li {
  color: var(--muted);
}

.platform-section {
  padding-top: 44px;
  padding-bottom: 86px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.platform-card {
  display: grid;
  min-height: 214px;
  justify-items: center;
  align-content: start;
  padding: 24px 14px 22px;
  border: 1px solid rgba(16, 19, 24, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 36px rgba(16, 19, 24, 0.06);
  text-align: center;
}

.platform-card-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.platform-card-available {
  position: relative;
  min-height: 320px;
  padding: 62px 14px 20px;
  border-color: rgba(11, 191, 121, 0.28);
  background: #fff;
  box-shadow: 0 18px 48px rgba(16, 19, 24, 0.09);
}

.platform-card-available::after {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: inherit;
  content: "";
  pointer-events: none;
  transition: border-color 160ms ease;
}

.platform-card-available:hover::after,
.platform-card-available:focus-visible::after {
  border-color: rgba(11, 191, 121, 0.5);
}

.platform-availability {
  position: absolute;
  top: 18px;
  left: 50%;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(11, 191, 121, 0.12);
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.platform-download-button {
  display: inline-flex;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  padding: 0 20px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 0.94rem;
  font-weight: 900;
}

.android-download-button {
  background: var(--green-dark);
}

.platform-card-future {
  min-height: 320px;
  align-content: center;
  padding: 20px 12px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: none;
  opacity: 0.68;
}

.platform-variant {
  display: block;
  min-height: 24px;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 850;
}

.platform-card-future .platform-icon {
  width: 58px;
  height: 58px;
}

.platform-card-future .platform-icon i {
  font-size: 1.75rem;
}

.platform-card-future h3 {
  margin-top: 12px;
  font-size: 1.2rem;
}

.platform-card-link:hover,
.platform-card-link:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(11, 191, 121, 0.46);
  box-shadow: 0 18px 42px rgba(16, 19, 24, 0.11);
  outline: none;
}

.platform-icon {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 2px solid rgba(16, 19, 24, 0.78);
  border-radius: 50%;
  color: var(--ink);
}

.platform-icon i {
  font-size: 2.55rem;
  line-height: 1;
}

.platform-icon.android {
  border-color: rgba(11, 191, 121, 0.62);
  color: var(--green-dark);
}

.platform-icon.mac {
  border-color: rgba(29, 99, 255, 0.56);
  color: var(--blue);
}

.platform-icon.mac.intel {
  border-color: rgba(116, 84, 255, 0.5);
  color: #6848d7;
}

.platform-icon.windows {
  border-color: rgba(245, 127, 23, 0.62);
  color: #a34d09;
}

.platform-card h3 {
  margin: 20px 0 6px;
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  line-height: 1;
}

.platform-card p {
  margin: 0;
  font-weight: 760;
}

@media (max-width: 900px) {
  .platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platform-card-available,
  .platform-card-future {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .platform-card-available {
    grid-column: span 2;
    min-height: 254px;
    padding: 24px 18px 20px;
  }

  .platform-card-available .platform-icon {
    width: 72px;
    height: 72px;
  }

  .platform-card-available .platform-icon i {
    font-size: 2.2rem;
  }

  .platform-card-available h3 {
    margin-top: 15px;
    font-size: 1.6rem;
  }

  .platform-card-available p {
    font-size: 0.82rem;
  }

  .platform-download-button {
    width: 100%;
    min-width: 0;
    margin-top: 18px;
  }

  .platform-card-future {
    min-height: 128px;
  }

  .platform-availability {
    top: 14px;
    right: 14px;
    left: auto;
    font-size: 0.66rem;
    transform: none;
  }
}

.feature-section {
  padding-top: 72px;
}

.feature-section .section-head {
  width: min(860px, 100%);
  margin-bottom: 34px;
}

.feature-orbit {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  margin-top: 34px;
  overflow: hidden;
}

.feature-point {
  position: absolute;
  z-index: 2;
  display: inline-grid;
  grid-template-columns: 42px minmax(0, max-content);
  gap: 12px;
  align-items: center;
  max-width: 320px;
  min-height: 78px;
  padding: 16px 18px;
  border: 1px solid rgba(16, 19, 24, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 34px rgba(16, 19, 24, 0.05);
}

.feature-point.point-one {
  top: 18px;
  left: 18px;
}

.feature-point.point-two {
  top: 18px;
  right: 18px;
}

.feature-point.point-three {
  bottom: 18px;
  left: 18px;
}

.feature-point.point-four {
  right: 18px;
  bottom: 18px;
}

.feature-point span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(11, 191, 121, 0.1);
  color: var(--green);
  font-size: 1rem;
  font-weight: 950;
}

.feature-point:nth-child(2) span {
  background: rgba(29, 99, 255, 0.1);
  color: var(--blue);
}

.feature-point:nth-child(3) span {
  background: rgba(255, 124, 96, 0.12);
  color: var(--coral);
}

.feature-point:nth-child(4) span {
  background: rgba(8, 122, 82, 0.12);
  color: var(--green-dark);
}

.feature-point h3 {
  margin: 0;
  font-size: clamp(1rem, 1.7vw, 1.38rem);
  line-height: 1.12;
}

.feature-art {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(760px, 64%);
  margin: 0 auto;
  padding: 20px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 48%, rgba(11, 191, 121, 0.12), transparent 54%),
    linear-gradient(180deg, rgba(239, 248, 242, 0.42), rgba(255, 255, 255, 0));
}

.feature-art img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.scenario-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(420px, 1.05fr) minmax(210px, 0.45fr);
  gap: 30px;
  align-items: center;
  padding: 92px max(24px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 48% 50%, rgba(11, 191, 121, 0.14), transparent 29%),
    radial-gradient(circle at 82% 22%, rgba(11, 191, 121, 0.08), transparent 22%),
    linear-gradient(180deg, #fbfaf7, #eef8f2);
  color: var(--ink);
}

.scenario-copy h2 {
  max-width: 500px;
}

.scenario-band .eyebrow {
  color: var(--green-dark);
}

.scenario-list {
  display: grid;
  gap: 10px;
  align-content: center;
  justify-items: start;
}

.scenario-art,
.inline-art,
.app-panel {
  border: 1px solid rgba(16, 19, 24, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(16, 19, 24, 0.06);
  overflow: hidden;
}

.scenario-art {
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.scenario-art img,
.inline-art img,
.section-art {
  display: block;
  width: 100%;
  height: auto;
}

.scenario-list span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(11, 191, 121, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
  box-shadow: 0 10px 26px rgba(16, 19, 24, 0.04);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.split-copy {
  width: min(820px, 100%);
}

.ios-art-panel {
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: visible;
}

.ios-art-panel .section-art {
  width: min(430px, 100%);
  max-height: 560px;
  object-fit: contain;
}

.phone-shell {
  width: min(310px, 78vw);
  padding: 12px;
  border: 1px solid rgba(16, 19, 24, 0.2);
  border-radius: 42px;
  background: #151922;
  box-shadow: 0 30px 80px rgba(16, 19, 24, 0.28);
}

.phone-top {
  width: 88px;
  height: 22px;
  margin: 4px auto 10px;
  border-radius: 999px;
  background: #05070a;
}

.phone-screen {
  display: flex;
  min-height: 540px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 28px 20px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #0d1118;
  color: #fff;
}

.app-status {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
}

.app-status strong {
  color: var(--green);
}

.connect-ring {
  position: relative;
  display: grid;
  width: 172px;
  height: 172px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(11, 191, 121, 0.14);
  cursor: pointer;
  box-shadow:
    inset 0 0 0 1px rgba(11, 191, 121, 0.28),
    0 0 60px rgba(11, 191, 121, 0.35);
  animation: pulse 2.4s ease-in-out infinite;
}

.connect-ring span {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 28px rgba(11, 191, 121, 0.55);
}

.phone-screen p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
  text-align: center;
}

.mini-stats {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mini-stats span {
  padding: 10px 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 850;
  text-align: center;
}

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

.check-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 750;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(11, 191, 121, 0.14);
  color: var(--green-dark);
  content: "✓";
  font-size: 0.86rem;
  font-weight: 900;
}

.pricing {
  position: relative;
  padding-top: 72px;
  overflow: hidden;
}

.pricing .section-head {
  position: relative;
  z-index: 1;
}

.inline-art {
  width: min(720px, 100%);
  margin: 28px 0 22px;
}

.pricing-art {
  position: absolute;
  right: -20px;
  top: 36px;
  z-index: 0;
  width: min(640px, 48%);
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0.2;
  pointer-events: none;
}

.pricing-art img {
  mix-blend-mode: multiply;
}

.pricing-note {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.pricing-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.price-card {
  position: relative;
  min-height: 286px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(8px);
}

.price-card:nth-child(1) {
  border-color: rgba(16, 19, 24, 0.12);
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(244,246,244,0.72));
}

.price-card:nth-child(2) {
  border-color: rgba(11, 191, 121, 0.28);
  background: linear-gradient(135deg, rgba(238, 255, 247, 0.9), rgba(255,255,255,0.86));
}

.price-card:nth-child(3) {
  border-color: rgba(224, 36, 56, 0.24);
  background: linear-gradient(135deg, rgba(255, 239, 241, 0.88), rgba(255,255,255,0.9));
}

.price-card.featured {
  border-color: rgba(11, 191, 121, 0.46);
  background: #fff;
  box-shadow: var(--shadow);
}

.price-card.yearly {
  border-color: rgba(245, 127, 23, 0.38);
  background:
    linear-gradient(135deg, rgba(255, 247, 230, 0.86), rgba(255, 255, 255, 0.92) 46%, rgba(239, 248, 255, 0.86)),
    #fff;
}

.badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(11, 191, 121, 0.14);
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.badge.muted {
  background: rgba(16, 19, 24, 0.07);
  color: #2f3740;
}

.badge.red {
  background: rgba(224, 36, 56, 0.12);
  color: #a91727;
}

.badge.orange {
  background: rgba(245, 127, 23, 0.15);
  color: #a34d09;
}

.plan-name {
  margin: 0;
  color: var(--green-dark) !important;
  font-weight: 900;
}

.price-card h3 {
  margin: 8px 0 8px;
  font-size: clamp(2.25rem, 3.4vw, 3.6rem);
  line-height: 1;
}

.price-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.faq {
  padding-top: 40px;
}

.faq-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 36px;
  align-items: center;
  margin-top: 36px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 0;
}

.faq-art {
  width: 100%;
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.faq-art img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.faq details {
  padding: 0 22px;
}

.faq summary {
  cursor: pointer;
  padding: 22px 0;
  font-size: 1.04rem;
  font-weight: 900;
}

.faq p {
  margin: 0;
  padding: 0 0 22px;
}

.download {
  padding: 96px 24px;
  background:
    linear-gradient(135deg, rgba(17, 24, 32, 0.95), rgba(8, 122, 82, 0.92)),
    #111820;
  color: #fff;
}

.download-inner {
  width: min(840px, 100%);
  margin: 0 auto;
  text-align: center;
}

.download .eyebrow {
  color: var(--yellow);
}

.download p {
  color: rgba(255, 255, 255, 0.76);
}

.download .btn {
  margin-top: 30px;
  color: var(--ink);
  background: #fff;
}

.release-banner {
  width: 100%;
  margin: 18px 0 0;
}

.release-banner-inner {
  display: grid;
  justify-items: center;
  padding: 46px 24px 52px;
  border-radius: 0;
  background:
    radial-gradient(circle at 72% 12%, rgba(11, 191, 121, 0.34), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(29, 99, 255, 0.14), transparent 24%),
    linear-gradient(135deg, #0d1e21 0%, #063f32 48%, #078052 100%);
  box-shadow: none;
  color: #fff;
  text-align: center;
}

.release-banner .eyebrow {
  color: var(--yellow);
}

.release-banner h2 {
  width: min(620px, 100%);
  margin: 0;
  color: #fff;
  font-size: clamp(1.9rem, 3.4vw, 3.05rem);
  line-height: 0.98;
}

.release-banner p:not(.eyebrow) {
  width: min(760px, 100%);
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.02rem;
  font-weight: 760;
}

.btn.light {
  margin-top: 18px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.legal-section {
  display: grid;
  width: min(1180px, calc(100% - 32px));
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0 auto;
  padding: 72px 0 20px;
}

.legal-section article {
  scroll-margin-top: 110px;
  padding: 26px;
  border: 1px solid rgba(16, 19, 24, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.legal-section h2 {
  margin: 0 0 10px;
  font-size: 1.24rem;
}

.legal-section p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.legal-page {
  background:
    linear-gradient(180deg, rgba(11, 191, 121, 0.08), rgba(251, 250, 247, 0) 280px),
    var(--paper);
}

.legal-document {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 138px 0 28px;
}

.legal-hero {
  padding: 34px 0 26px;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.legal-hero p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.legal-content {
  padding: 38px;
  border: 1px solid rgba(16, 19, 24, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 70px rgba(16, 19, 24, 0.08);
}

.legal-content h2 {
  margin: 34px 0 10px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.legal-content h2:first-of-type {
  margin-top: 28px;
}

.legal-content p,
.legal-content li {
  color: #39424d;
  font-size: 1rem;
}

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

.legal-content ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal-content a {
  color: var(--green-dark);
  font-weight: 800;
}

.guide-document {
  width: min(1060px, calc(100% - 32px));
}

.guide-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
}

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

.guide-card {
  display: grid;
  min-height: 246px;
  align-content: space-between;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(16, 19, 24, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 70px rgba(16, 19, 24, 0.08);
  text-decoration: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.guide-card:hover {
  border-color: rgba(11, 191, 121, 0.38);
  box-shadow: 0 20px 74px rgba(16, 19, 24, 0.12);
  transform: translateY(-2px);
}

.guide-card span,
.guide-meta {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.guide-card h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.08;
}

.guide-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.guide-content h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.98;
}

.guide-content .guide-meta {
  margin-bottom: 26px;
  color: var(--muted);
}

.guide-callout {
  margin: 28px 0;
  padding: 20px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: rgba(11, 191, 121, 0.08);
  color: #26313a;
}

.checkout-document {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 136px 0 34px;
}

.checkout-hero {
  padding: 44px 0 32px;
  text-align: center;
}

.checkout-hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  line-height: 0.94;
}

.checkout-hero p:not(.eyebrow) {
  width: min(680px, 100%);
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 760;
}

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

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

.checkout-plan {
  position: relative;
  display: grid;
  min-height: 276px;
  align-content: space-between;
  gap: 20px;
  padding: 22px;
  border: 1px solid rgba(16, 19, 24, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
  box-shadow: 0 18px 44px rgba(16, 19, 24, 0.06);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.checkout-plan:nth-child(1) {
  border-color: rgba(16, 19, 24, 0.12);
  background:
    radial-gradient(circle at 78% 22%, rgba(151, 164, 178, 0.18), transparent 34%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(244, 246, 244, 0.74));
}

.checkout-plan:nth-child(2) {
  border-color: rgba(116, 84, 255, 0.34);
  background:
    radial-gradient(circle at 78% 20%, rgba(116, 84, 255, 0.24), transparent 34%),
    linear-gradient(150deg, rgba(245, 241, 255, 0.98), rgba(255, 255, 255, 0.92));
}

.checkout-plan:nth-child(3) {
  border-color: rgba(224, 36, 56, 0.24);
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 105, 120, 0.18), transparent 34%),
    linear-gradient(150deg, rgba(255, 239, 241, 0.92), rgba(255, 255, 255, 0.92));
}

.checkout-plan:nth-child(4) {
  border-color: rgba(245, 127, 23, 0.34);
  background:
    radial-gradient(circle at 78% 20%, rgba(245, 127, 23, 0.2), transparent 34%),
    linear-gradient(150deg, rgba(255, 247, 230, 0.96), rgba(255, 255, 255, 0.9) 58%, rgba(239, 248, 255, 0.74));
}

.checkout-plan.is-selected {
  border-color: rgba(11, 191, 121, 0.72);
  background: rgba(232, 255, 246, 0.76);
  box-shadow: 0 24px 58px rgba(11, 191, 121, 0.14);
  transform: translateY(-4px);
}

.checkout-plan .radio-dot {
  position: absolute;
  top: 20px;
  right: 20px;
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(16, 19, 24, 0.22);
  border-radius: 50%;
}

.checkout-plan.is-selected .radio-dot {
  border: 6px solid var(--green);
}

.checkout-plan strong,
.checkout-plan b {
  display: block;
  font-size: 1.16rem;
  line-height: 1.1;
}

.checkout-plan b {
  font-size: clamp(2rem, 3vw, 3.1rem);
  letter-spacing: 0;
}

.checkout-plan:nth-child(1) b {
  color: #2f3740;
}

.checkout-plan:nth-child(2) b {
  color: #6848d7;
}

.checkout-plan:nth-child(3) b {
  color: #b32638;
}

.checkout-plan:nth-child(4) b {
  color: #a34d09;
}

.checkout-plan:nth-child(4)::before {
  position: absolute;
  top: -12px;
  left: 22px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  content: "BEST VALUE";
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0;
}

.checkout-plan em {
  display: inline-flex;
  margin-top: 9px;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(11, 191, 121, 0.16);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 900;
}

.checkout-plan small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 760;
}

.checkout-plan .plan-meta {
  position: relative;
  padding-left: 14px;
}

.checkout-plan .plan-meta::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.checkout-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 20px;
  align-items: start;
}

.checkout-field,
.payment-methods {
  padding: 24px;
  border: 1px solid rgba(16, 19, 24, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(16, 19, 24, 0.06);
}

.checkout-field label,
.payment-methods h2 {
  display: block;
  margin-bottom: 12px;
  color: #2d333a;
  font-size: 1.04rem;
  font-weight: 900;
}

.checkout-user-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.checkout-field input {
  width: 100%;
  height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(16, 19, 24, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  font-weight: 760;
}

.checkout-receipt-field {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.checkout-receipt-field label {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 850;
}

.checkout-receipt-field input {
  height: 50px;
  font-size: 0.92rem;
  font-weight: 700;
}

.checkout-receipt-field span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.verify-user-button {
  min-width: 112px;
  height: 58px;
  padding: 0 20px;
  border: 1px solid rgba(16, 19, 24, 0.12);
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 900;
}

.verify-user-button:disabled {
  background: rgba(16, 19, 24, 0.2);
  cursor: not-allowed;
}

.checkout-turnstile {
  min-height: 70px;
  margin-top: 14px;
}

.checkout-user-status {
  min-height: 24px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.checkout-user-status.is-valid {
  color: var(--green-dark);
}

.checkout-user-status.is-invalid {
  color: #c5392d;
}

.checkout-field p {
  margin: 14px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: rgba(11, 191, 121, 0.09);
  color: var(--muted);
  font-weight: 760;
}

.payment-methods {
  margin: 0;
}

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

.payment-method-chip {
  position: relative;
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 12px;
  border: 1px solid rgba(16, 19, 24, 0.12);
  border-radius: 8px;
  background: #fff;
  color: #172b4d;
  cursor: pointer;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 850;
  text-align: center;
}

.payment-method-chip:hover {
  background: #f7fafc;
}

.payment-method-chip.is-selected {
  border-color: rgba(11, 191, 121, 0.68);
  background: rgba(11, 191, 121, 0.06);
  box-shadow: 0 0 0 3px rgba(11, 191, 121, 0.14);
}

.payment-method-chip::after {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(16, 19, 24, 0.22);
  border-radius: 999px;
  content: "";
}

.payment-method-chip.is-selected::after {
  border-color: var(--green);
  background: radial-gradient(circle, var(--green) 0 42%, transparent 47%);
}

.payment-logo {
  display: inline-flex;
  width: 54px;
  height: 50px;
  flex: 0 0 54px;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: transparent;
  color: #172b4d;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
}

.payment-logo img {
  display: block;
  max-width: 41px;
  max-height: 32px;
}

.card-logo {
  gap: 2px;
}

.card-logo img {
  max-width: 24px;
  max-height: 19px;
}

.amazon-logo {
  color: #232f3e;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
}

.checkout-submit {
  width: 100%;
  min-height: 64px;
  margin-top: 16px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 1.15rem;
  font-weight: 950;
}

.checkout-submit:disabled {
  background: rgba(16, 19, 24, 0.2);
  color: rgba(255, 255, 255, 0.82);
  cursor: not-allowed;
}

.stripe-checkout-status {
  min-height: 24px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 850;
  text-align: center;
}

.stripe-checkout-status.is-invalid {
  color: #c5392d;
}

.checkout-return-panel {
  max-width: 760px;
  margin: 80px auto 0;
}

.checkout-return-panel h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 0.96;
}

.checkout-return-panel p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 760;
}

.checkout-reminder {
  margin-top: 16px;
  padding: 24px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(11, 191, 121, 0.08), rgba(255, 255, 255, 0.82)),
    rgba(16, 19, 24, 0.035);
  border: 1px solid rgba(16, 19, 24, 0.06);
}

.checkout-reminder h2 {
  margin: 0 0 10px;
  font-size: 1.16rem;
}

.checkout-reminder ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  font-weight: 760;
}

.support-document {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 138px 0 28px;
}

.support-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 34px;
  min-height: 420px;
  align-items: center;
  padding: 58px 0 42px;
}

.support-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.support-hero-copy p:not(.eyebrow) {
  width: min(690px, 100%);
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.support-hero-art {
  justify-self: end;
  width: min(520px, 100%);
}

.support-hero-art img {
  display: block;
  width: 100%;
  max-height: 390px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.support-grid,
.support-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.support-card,
.support-panel,
.support-columns article,
.support-contact {
  border: 1px solid rgba(16, 19, 24, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 36px rgba(16, 19, 24, 0.06);
}

.support-card {
  min-height: 280px;
  padding: 26px;
}

.support-card:nth-child(2) .icon {
  color: var(--blue);
}

.support-card:nth-child(3) .icon {
  color: var(--coral);
}

.support-card h2,
.support-panel h2,
.support-columns h2,
.support-contact h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.08;
}

.support-card h2 {
  margin-top: 28px;
}

.support-card p,
.support-steps p,
.support-columns li,
.support-contact p {
  color: var(--muted);
}

.support-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  gap: 30px;
  margin-top: 16px;
  padding: 34px;
}

.support-steps {
  display: grid;
  gap: 14px;
}

.support-steps article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
}

.support-steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.support-steps h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.support-steps p {
  margin: 0;
}

.support-columns {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 16px;
}

.support-columns article {
  padding: 30px;
}

.support-columns ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 20px;
}

.support-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(17, 24, 32, 0.95), rgba(8, 122, 82, 0.92)),
    #111820;
  color: #fff;
}

.support-contact .eyebrow {
  color: var(--yellow);
}

.support-contact p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.support-contact .btn {
  color: var(--ink);
  background: #fff;
}

.site-footer {
  display: flex;
  width: min(1180px, calc(100% - 32px));
  min-height: 150px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 34px 0;
}

.site-footer p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

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

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-social a {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 19, 24, 0.14);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.66);
  text-decoration: none;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.footer-social a::before {
  width: 15px;
  height: 15px;
  background: currentColor;
  content: "";
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.footer-social .social-x::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.2 10.4 22.7 0h-2l-7.4 9.1L7.4 0H.6l8.9 13.1L.6 24h2l7.8-9.6 6.3 9.6h6.8l-9.3-13.6Zm-2.8 3.4-.9-1.3L3.3 1.5h3.1l5.8 8.8.9 1.3 7.6 11h-3.1l-6.2-8.8Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.2 10.4 22.7 0h-2l-7.4 9.1L7.4 0H.6l8.9 13.1L.6 24h2l7.8-9.6 6.3 9.6h6.8l-9.3-13.6Zm-2.8 3.4-.9-1.3L3.3 1.5h3.1l5.8 8.8.9 1.3 7.6 11h-3.1l-6.2-8.8Z'/%3E%3C/svg%3E");
}

.footer-social .social-telegram::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.9 3.2c.3-1.4-1-2.1-2.1-1.6L2.1 8.4C.9 8.9 1 10.5 2 10.8l4.5 1.4 1.7 5.5c.2.7.4 1 .8 1.1.4.2.8 0 1.1-.3l2.5-2.4 4.7 3.5c.9.5 1.5.3 1.8-.8l2.8-15.6ZM7.2 11.8l10.4-6.5c.5-.3.9-.1.6.2L9.8 13.1l-.3 3.2-1.3-4.1 9.9-6.3-10.9 5.9Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.9 3.2c.3-1.4-1-2.1-2.1-1.6L2.1 8.4C.9 8.9 1 10.5 2 10.8l4.5 1.4 1.7 5.5c.2.7.4 1 .8 1.1.4.2.8 0 1.1-.3l2.5-2.4 4.7 3.5c.9.5 1.5.3 1.8-.8l2.8-15.6ZM7.2 11.8l10.4-6.5c.5-.3.9-.1.6.2L9.8 13.1l-.3 3.2-1.3-4.1 9.9-6.3-10.9 5.9Z'/%3E%3C/svg%3E");
}

.footer-social .social-email::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 5h16c1.1 0 2 .9 2 2v10c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V7c0-1.1.9-2 2-2Zm0 3v.4l8 5 8-5V8l-8 5-8-5Zm0 2.7V17h16v-6.3l-8 5-8-5Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 5h16c1.1 0 2 .9 2 2v10c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V7c0-1.1.9-2 2-2Zm0 3v.4l8 5 8-5V8l-8 5-8-5Zm0 2.7V17h16v-6.3l-8 5-8-5Z'/%3E%3C/svg%3E");
}

.footer-social a:hover {
  border-color: rgba(11, 191, 121, 0.55);
  color: var(--green-dark);
  transform: translateY(-1px);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  justify-content: flex-end;
  font-size: 0.88rem;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

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

.footer-links span {
  color: var(--muted);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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

@media (max-width: 980px) {
  .site-header {
    border-radius: 24px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 74svh;
    padding: 112px 24px 72px;
  }

  .hero-image {
    right: -16%;
    width: 96%;
    opacity: 0.48;
  }

  .hero-content {
    width: min(680px, 100%);
  }

  .platform-grid,
  .pricing-grid,
  .checkout-plan-grid,
  .legal-row {
    grid-template-columns: 1fr 1fr;
  }

  .feature-orbit {
    min-height: 600px;
  }

  .feature-art {
    width: min(620px, 76%);
  }

  .checkout-form-grid {
    grid-template-columns: 1fr;
  }

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

  .price-card {
    min-height: 286px;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ios-art-panel {
    min-height: auto;
  }

  .ios-art-panel .section-art {
    width: min(360px, 100%);
    justify-self: start;
  }

  .scenario-band {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .scenario-art {
    max-width: 620px;
    justify-self: center;
  }

  .scenario-band {
    gap: 34px;
  }

  .faq-body {
    grid-template-columns: 1fr;
  }

  .faq-art {
    width: min(520px, 100%);
    order: -1;
  }

}

@media (max-width: 700px) {
  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    min-height: 0;
    flex-wrap: wrap;
    gap: 7px 10px;
    padding: 8px 10px;
  }

  .brand {
    gap: 8px;
    min-width: 0;
  }

  .brand-name {
    max-width: none;
    overflow: visible;
    font-size: 0.9rem;
    line-height: 1;
    white-space: nowrap;
  }

  .brand-logo {
    width: 30px;
    height: 30px;
  }

  .nav-links {
    order: 3;
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 14px;
    padding-top: 2px;
    border-top: 1px solid rgba(16, 19, 24, 0.08);
    font-size: 0.72rem;
    font-weight: 850;
  }

  .language-select select {
    max-width: 98px;
    height: 36px;
    padding: 0 8px;
    font-size: 0.72rem;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 126px 16px 56px;
    align-items: start;
  }

  .hero-image {
    top: 82px;
    right: -38%;
    bottom: auto;
    width: 150%;
    height: 330px;
    opacity: 0.26;
    transform: none;
    animation: none;
    background-position: top right;
    -webkit-mask-image:
      linear-gradient(90deg, transparent 0%, #000 20%, #000 78%, transparent 100%),
      linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
    mask-image:
      linear-gradient(90deg, transparent 0%, #000 20%, #000 78%, transparent 100%),
      linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(251, 250, 247, 0.68) 0%, rgba(251, 250, 247, 0.95) 58%, var(--paper) 100%),
      linear-gradient(90deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.78) 62%, rgba(251, 250, 247, 0.62) 100%);
  }

  .hero-content {
    width: 100%;
    max-width: calc(100vw - 32px);
    margin-left: 0;
  }

  .hero h1 {
    font-size: clamp(2.82rem, 16.2vw, 4.7rem);
  }

  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 32px);
    font-size: 1.02rem;
    margin-top: 20px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 28px;
  }

  .hero-proof {
    gap: 8px;
    margin-top: 18px;
  }

  .btn {
    width: 100%;
    min-height: 48px;
  }

  .hero-proof span {
    width: 100%;
  }

  .section {
    padding: 78px 0;
  }

  .platform-grid,
  .pricing-grid,
  .support-grid,
  .scenario-band,
  .legal-row {
    grid-template-columns: 1fr;
  }

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

  .platform-card {
    min-height: 126px;
    padding: 14px 6px 12px;
  }

  .platform-icon {
    width: 48px;
    height: 48px;
    border-width: 1.5px;
  }

  .platform-icon i {
    font-size: 1.55rem;
  }

  .platform-card h3 {
    margin: 10px 0 4px;
    font-size: 0.88rem;
  }

  .platform-card p {
    font-size: 0.6rem;
    line-height: 1.15;
  }

  .checkout-plan-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
   }

  .checkout-document {
    width: min(100% - 24px, 1180px);
    padding-top: 132px;
  }

  .checkout-hero {
    padding: 38px 0 26px;
  }

  .checkout-panel {
    padding: 0;
  }

  .checkout-plan {
    min-height: 196px;
    gap: 8px;
    padding: 18px 6px 9px;
    text-align: center;
  }

  .checkout-plan strong {
    min-height: 1.55rem;
    padding: 0 10px;
    font-size: 0.64rem;
    line-height: 1.1;
  }

  .checkout-plan em {
    max-width: 100%;
    margin-top: 5px;
    padding: 3px 4px;
    font-size: 0.52rem;
    line-height: 1.05;
  }

  .checkout-plan .plan-meta {
    display: block;
    margin-top: 5px;
    padding-left: 0;
    color: rgba(93, 102, 116, 0.94);
    font-size: 0.49rem;
    line-height: 1.08;
    font-weight: 850;
  }

  .checkout-plan .plan-meta::before {
    display: none;
  }

  .checkout-plan b {
    grid-column: auto;
    margin-top: 4px;
    font-size: 1rem;
    line-height: 1;
  }

  .checkout-plan .radio-dot {
    top: 6px;
    right: 6px;
    width: 11px;
    height: 11px;
    border-width: 1.5px;
  }

  .checkout-plan.is-selected {
    transform: none;
  }

  .checkout-plan.is-selected .radio-dot {
    border-width: 3.5px;
  }

  .checkout-plan:nth-child(4)::before {
    top: -8px;
    left: 6px;
    padding: 3px 5px;
    font-size: 0.43rem;
  }

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

  .verify-user-button {
    width: 100%;
  }

  .payment-method-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .payment-method-chip {
    min-height: 78px;
    flex-direction: column;
    gap: 6px;
    padding: 8px 4px 7px;
    font-size: 0.58rem;
    line-height: 1.05;
  }

  .payment-method-chip::after {
    top: 5px;
    right: 5px;
    width: 10px;
    height: 10px;
    border-width: 1.5px;
  }

  .payment-logo {
    width: 36px;
    height: 32px;
    flex-basis: 36px;
  }

  .payment-logo img {
    max-width: 28px;
    max-height: 22px;
  }

  .card-logo img {
    max-width: 16px;
    max-height: 13px;
  }

  .amazon-logo {
    font-size: 0.58rem;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-orbit {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 12px;
    overflow: visible;
  }

  .feature-art {
    width: 100%;
    order: 1;
    padding: 8px;
  }

  .feature-point {
    position: static;
    display: grid;
    width: 100%;
    max-width: none;
    min-height: auto;
  }

  .feature-point.point-one {
    order: 2;
  }

  .feature-point.point-two {
    order: 3;
  }

  .feature-point.point-three {
    order: 4;
  }

  .feature-point.point-four {
    order: 5;
  }

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

  .scenario-band {
    padding: 70px 16px;
  }

  .scenario-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .scenario-list span {
    min-height: 40px;
    width: 100%;
    padding: 0 10px;
    font-size: 0.84rem;
  }

  .pricing-art {
    position: relative;
    top: auto;
    right: auto;
    width: min(380px, 100%);
    margin: 18px auto 0;
    opacity: 0.22;
  }

  .pricing-grid {
    gap: 14px;
    margin-top: 38px;
  }

  .faq-body {
    gap: 18px;
  }

  .faq-art {
    width: 100%;
  }

  .ios-art-panel .section-art {
    width: min(300px, 100%);
  }

  .price-card.featured {
    transform: none;
  }

  .price-card {
    min-height: auto;
  }

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

  .guide-card {
    min-height: 0;
    padding: 22px;
  }

  .guide-content h1 {
    font-size: 2.35rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    min-height: 0;
    padding: 24px 0 28px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, auto));
    gap: 10px 18px;
    justify-content: flex-start;
    font-size: 0.78rem;
  }

  .footer-links span {
    grid-column: 1 / -1;
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .footer-social a {
    width: 28px;
    height: 28px;
  }

  .footer-social a::before {
    width: 14px;
    height: 14px;
  }

  .site-footer p {
    margin-top: 8px;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .legal-document {
    padding-top: 112px;
  }

  .legal-content {
    padding: 24px;
  }

  .support-document {
    padding-top: 112px;
  }

  .support-hero {
    min-height: auto;
    padding: 34px 0;
  }

  .support-panel,
  .support-columns {
    grid-template-columns: 1fr;
  }

  .support-hero {
    grid-template-columns: 1fr;
  }

  .support-hero-art {
    width: min(560px, 100%);
    justify-self: center;
  }

  .support-panel,
  .support-columns article,
  .support-contact {
    padding: 24px;
  }

  .support-contact {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Download cards intentionally override the legacy compact platform grid. */
@media (max-width: 700px) {
  .platform-section .section-head h2 {
    max-width: 360px;
    margin-inline: auto;
    font-size: 1.8rem;
    line-height: 1.08;
  }

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

  .platform-card-available {
    grid-column: span 2;
    min-height: 254px;
    padding: 24px 18px 20px;
  }

  .platform-card-available .platform-icon {
    width: 72px;
    height: 72px;
  }

  .platform-card-available .platform-icon i {
    font-size: 2.2rem;
  }

  .platform-card-available h3 {
    margin: 15px 0 5px;
    font-size: 1.6rem;
  }

  .platform-card-available p {
    font-size: 0.82rem;
  }

  .platform-card-future {
    grid-column: auto;
    min-height: 128px;
    padding: 14px 6px 12px;
  }

  .platform-card-future .platform-icon {
    width: 48px;
    height: 48px;
  }

  .platform-card-future .platform-icon i {
    font-size: 1.55rem;
  }

  .platform-card-future h3 {
    margin: 10px 0 4px;
    font-size: 0.88rem;
  }

  .platform-card-future .platform-variant {
    min-height: 18px;
    margin-bottom: 2px;
    font-size: 0.62rem;
  }

  .platform-card-future p {
    font-size: 0.6rem;
  }
}
