:root {
  --ink: #102033;
  --ink-soft: #52657d;
  --brand: #356fa8;
  --brand-dark: #245985;
  --brand-light: #dcecff;
  --surface: #ffffff;
  --surface-soft: #f5f9fe;
  --line: #dce6f0;
  --success: #198754;
  --shadow-sm: 0 12px 32px rgba(25, 62, 98, 0.08);
  --shadow-lg: 0 30px 80px rgba(25, 62, 98, 0.16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --content: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f8fbff;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 4%, rgba(86, 144, 201, 0.18), transparent 34rem),
    radial-gradient(circle at 0% 36%, rgba(181, 216, 250, 0.26), transparent 28rem),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 48%, #f6faff 100%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(53, 111, 168, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 111, 168, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

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

a {
  color: var(--brand-dark);
}

a:hover {
  color: var(--brand);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #f4a93b;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 11px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(220, 230, 240, 0.82);
  background: rgba(248, 251, 255, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 4px;
}

.nav-links > a:not(.button) {
  min-height: 44px;
  padding: 10px 12px;
  color: #31475f;
  border-radius: 10px;
  font-size: 0.93rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links > a:not(.button):hover {
  color: var(--ink);
  background: rgba(53, 111, 168, 0.08);
}

.nav-utility {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-link {
  min-width: 44px;
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  color: #31475f;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
}

.language-link:hover {
  background: rgba(53, 111, 168, 0.08);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle svg {
  width: 23px;
  height: 23px;
  margin: auto;
}

.hero {
  padding: clamp(58px, 8vw, 112px) 0 72px;
  overflow: clip;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(42px, 7vw, 88px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  padding: 8px 12px;
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #d5e4f3;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  content: "";
  background: #44ad73;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(68, 173, 115, 0.12);
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.15rem, 6.8vw, 6rem);
  font-weight: 700;
  line-height: 0.96;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4.6vw, 4.1rem);
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.hero-copy {
  max-width: 650px;
  margin: 0 0 30px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
  line-height: 1.72;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 19px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(25, 62, 98, 0.06);
  font-size: 0.95rem;
  font-weight: 780;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.button:hover {
  color: var(--ink);
  border-color: #bed3e8;
  box-shadow: 0 12px 26px rgba(25, 62, 98, 0.12);
  transform: translateY(-2px);
}

.button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border-color: transparent;
  box-shadow: 0 14px 34px rgba(36, 89, 133, 0.28);
}

.button-primary:hover {
  color: #fff;
  background: linear-gradient(135deg, #3d7bb7, #245985);
  border-color: transparent;
  box-shadow: 0 18px 38px rgba(36, 89, 133, 0.34);
}

.button-quiet {
  color: #30465e;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.button-quiet:hover {
  background: rgba(53, 111, 168, 0.08);
  box-shadow: none;
}

.button-small {
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 11px;
  font-size: 0.88rem;
}

.platform-android .desktop-primary {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
  box-shadow: 0 8px 18px rgba(25, 62, 98, 0.06);
}

.platform-android .android-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border-color: transparent;
  box-shadow: 0 14px 34px rgba(36, 89, 133, 0.28);
}

.microcopy {
  margin: 18px 0 0;
  color: #667990;
  font-size: 0.82rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  color: #31506d;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #d9e6f2;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.trust-pill svg {
  width: 15px;
  height: 15px;
  color: var(--success);
}

.product-preview {
  position: relative;
  padding: 16px;
}

.product-preview::before {
  position: absolute;
  inset: -16%;
  z-index: -1;
  content: "";
  background: radial-gradient(circle, rgba(72, 134, 193, 0.22), transparent 66%);
  filter: blur(18px);
}

.browser-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #d7e4f0;
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
}

.browser-top {
  display: flex;
  height: 48px;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  background: #edf4fb;
  border-bottom: 1px solid #d9e6f2;
}

.browser-dot {
  width: 9px;
  height: 9px;
  background: #b8cada;
  border-radius: 50%;
}

.browser-address {
  min-width: 0;
  flex: 1;
  margin-left: 8px;
  padding: 7px 12px;
  overflow: hidden;
  color: #6d7f92;
  background: #fff;
  border: 1px solid #d9e6f2;
  border-radius: 999px;
  font-size: 0.72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.offer-panel {
  padding: 26px;
}

.preview-kicker {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-panel h2 {
  margin-bottom: 10px;
  font-family: inherit;
  font-size: 1.65rem;
  letter-spacing: -0.035em;
}

.offer-panel > p {
  margin-top: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.offer-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  margin-top: 18px;
  padding: 14px;
  background: var(--surface-soft);
  border: 1px solid #d9e6f2;
  border-radius: 16px;
}

.offer-avatar {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--brand-dark);
  background: var(--brand-light);
  border-radius: 15px;
  font-weight: 850;
}

.offer-name,
.offer-detail {
  display: block;
}

.offer-name {
  font-size: 0.9rem;
  font-weight: 800;
}

.offer-detail {
  margin-top: 2px;
  color: #6a7c90;
  font-size: 0.74rem;
}

.code-chip {
  padding: 9px 11px;
  color: var(--brand-dark);
  background: #fff;
  border: 1px dashed #9ebbd6;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.05em;
}

.preview-note {
  margin: 13px 0 0;
  color: #708197;
  font-size: 0.72rem;
  text-align: right;
}

.section {
  padding: clamp(74px, 9vw, 124px) 0;
}

.section-tight {
  padding: 66px 0;
}

.section-heading {
  max-width: 770px;
  margin-bottom: 42px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section-heading.center > p:not(.eyebrow) {
  margin-inline: auto;
}

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

.info-card {
  min-height: 100%;
  padding: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.info-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.icon-box {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--brand-dark);
  background: var(--brand-light);
  border-radius: 14px;
}

.icon-box svg {
  width: 24px;
  height: 24px;
}

.creator-section {
  padding-top: 34px;
}

.creator-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(38px, 6vw, 78px);
  padding: clamp(34px, 6vw, 68px);
  color: #fff;
  background:
    radial-gradient(circle at 92% 8%, rgba(115, 183, 244, 0.28), transparent 24rem),
    linear-gradient(145deg, #163550, #0f2438);
  border: 1px solid #2d526f;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.creator-panel .section-heading {
  margin-bottom: 0;
}

.creator-panel .section-heading h2,
.creator-panel .section-heading > p:not(.eyebrow) {
  color: #fff;
}

.creator-panel .section-heading > p:not(.eyebrow) {
  margin-bottom: 26px;
  opacity: 0.8;
}

.creator-benefits {
  display: grid;
  gap: 12px;
}

.creator-benefits article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
}

.creator-benefits article > span {
  color: #9dd1ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.creator-benefits h3 {
  margin-bottom: 5px;
  color: #fff;
}

.creator-benefits p {
  margin: 0;
  color: #c9d9e7;
  font-size: 0.94rem;
}

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

.step {
  position: relative;
  min-height: 260px;
  padding: 74px 28px 28px;
  overflow: hidden;
  background: #12263d;
  border: 1px solid #29445f;
  border-radius: var(--radius-md);
  counter-increment: steps;
}

.step::before {
  position: absolute;
  top: 20px;
  left: 24px;
  content: "0" counter(steps);
  color: #8fc0ed;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.step::after {
  position: absolute;
  top: -38px;
  right: -32px;
  width: 150px;
  height: 150px;
  content: "";
  background: radial-gradient(circle, rgba(101, 166, 225, 0.25), transparent 68%);
}

.step h3 {
  color: #fff;
}

.step p {
  margin: 0;
  color: #c7d7e7;
}

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

.platform-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.platform-card.featured {
  color: #fff;
  background: linear-gradient(145deg, #356fa8, #183958);
  border-color: transparent;
  box-shadow: 0 24px 60px rgba(36, 89, 133, 0.28);
}

.platform-card.featured h3,
.platform-card.featured p {
  color: #fff;
}

.platform-card.featured p {
  opacity: 0.82;
}

.platform-card p {
  margin: 0 0 28px;
  color: var(--ink-soft);
}

.platform-card .button {
  margin-top: auto;
  align-self: flex-start;
}

.platform-label {
  display: inline-flex;
  width: max-content;
  margin-bottom: 44px;
  padding: 7px 10px;
  color: var(--brand-dark);
  background: var(--brand-light);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured .platform-label {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 6vw, 76px);
  padding: clamp(32px, 6vw, 68px);
  color: #fff;
  background:
    radial-gradient(circle at 0 0, rgba(92, 161, 222, 0.32), transparent 34rem),
    #10243a;
  border: 1px solid #29445f;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.trust-panel h2,
.trust-panel h3 {
  color: #fff;
}

.trust-panel .section-heading {
  margin-bottom: 0;
}

.trust-panel .section-heading h2 {
  max-width: 580px;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1.04;
  text-wrap: balance;
}

.trust-panel .section-heading > p:not(.eyebrow) {
  color: #dce8f4;
  font-size: 1.02rem;
  line-height: 1.72;
}

.trust-panel .eyebrow {
  color: var(--brand-dark);
  background: #fff;
  border-color: #d5e4f3;
  box-shadow: none;
}

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

.trust-item {
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
}

.trust-item h3 {
  margin-bottom: 9px;
  font-size: 1.06rem;
  letter-spacing: -0.015em;
}

.trust-item p {
  margin: 0;
  color: #dce8f4;
  font-size: 1rem;
  line-height: 1.65;
}

.trust-item a {
  color: #c9e7ff;
  font-weight: 750;
  text-underline-offset: 3px;
}

.faq-list {
  max-width: 880px;
  margin-inline: auto;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(25, 62, 98, 0.05);
}

.faq-list details + details {
  margin-top: 10px;
}

.faq-list summary {
  min-height: 62px;
  padding: 18px 56px 18px 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 780;
  line-height: 1.35;
}

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

.faq-list summary::after {
  position: absolute;
  right: 20px;
  width: 24px;
  height: 24px;
  content: "+";
  color: var(--brand-dark);
  font-size: 1.3rem;
  line-height: 21px;
  text-align: center;
}

.faq-list summary {
  position: relative;
}

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

.faq-answer {
  padding: 0 20px 20px;
  color: var(--ink-soft);
}

.faq-answer p {
  margin: 0;
}

.closing-card {
  padding: clamp(38px, 7vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 0, rgba(169, 213, 252, 0.44), transparent 28rem),
    linear-gradient(135deg, #eef7ff, #ffffff);
  border: 1px solid #d2e3f2;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.closing-card h2 {
  max-width: 760px;
  margin-inline: auto;
}

.closing-card > p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.closing-card .cta-row {
  justify-content: center;
}

.site-footer {
  padding: 58px 0 28px;
  color: #61758b;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 38px;
}

.footer-brand p {
  max-width: 310px;
  margin: 16px 0 0;
  font-size: 0.9rem;
}

.footer-column h2 {
  margin-bottom: 13px;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: max-content;
  max-width: 100%;
  padding: 5px 0;
  color: #52677d;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  margin-top: 42px;
  padding-top: 22px;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.subpage-hero {
  padding: 82px 0 58px;
}

.subpage-hero .container {
  max-width: 920px;
}

.subpage-hero h1 {
  font-size: clamp(3rem, 7vw, 5.4rem);
}

.subpage-hero p {
  max-width: 700px;
  color: var(--ink-soft);
  font-size: 1.15rem;
}

.content-page {
  padding: 40px 0 100px;
}

.prose {
  max-width: 860px;
  margin-inline: auto;
  padding: clamp(24px, 5vw, 54px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.prose h2 {
  margin-top: 46px;
  font-family: inherit;
  font-size: 1.55rem;
  letter-spacing: -0.025em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: 30px;
}

.prose p,
.prose li {
  color: #40566e;
}

.prose li + li {
  margin-top: 8px;
}

.notice {
  padding: 18px 20px;
  color: #2d4d68;
  background: #eef7ff;
  border: 1px solid #cfe2f3;
  border-radius: 14px;
}

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

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 54px;
  }

  .product-preview {
    width: min(100%, 620px);
    margin-inline: auto;
  }

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

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

  .platform-card:last-child {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }
}

@media (max-width: 1080px) {
  .trust-panel {
    grid-template-columns: 1fr;
  }

  .trust-panel .section-heading {
    max-width: 720px;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-utility {
    margin-left: 0;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    margin: 0;
    padding: 12px;
    align-items: stretch;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links > a:not(.button) {
    display: flex;
    align-items: center;
  }

  .nav-links .button {
    margin-top: 4px;
  }

  .nav-shell {
    position: relative;
  }

  .nav-utility > .button {
    display: none;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--content));
  }

  .hero {
    padding-top: 48px;
  }

  h1 {
    font-size: clamp(3rem, 14.5vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

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

  .platform-card:last-child {
    grid-column: auto;
  }

  .step {
    min-height: 220px;
  }

  .trust-panel {
    padding: 28px 20px;
  }

  .cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-row .button {
    width: 100%;
  }

  .offer-card {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .offer-avatar {
    width: 46px;
    height: 46px;
  }

  .code-chip {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .brand span {
    font-size: 1.05rem;
  }

  .language-link {
    min-width: 40px;
  }

  .offer-panel {
    padding: 20px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}

@media print {
  .site-header,
  .cta-row,
  .site-footer {
    display: none !important;
  }

  body,
  body::before,
  body::after {
    background: #fff;
  }

  .prose {
    padding: 0;
    border: 0;
    box-shadow: none;
  }
}
