/* ===== AKlyx marketing site ===== */
:root {
  --bg: #070a14;
  --bg-2: #0b1020;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.10);
  --text: #eaf0ff;
  --muted: #a6b0cf;
  --muted-2: #7a85a8;
  --brand-1: #2f7bff;
  --brand-2: #6a5cff;
  --brand-3: #8a4dff;
  --grad: linear-gradient(120deg, #3a8bff 0%, #6a5cff 50%, #9a4dff 100%);
  --grad-soft: linear-gradient(120deg, rgba(58,139,255,.18), rgba(154,77,255,.18));
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px -20px rgba(8, 12, 30, 0.8);
  --shadow-glow: 0 0 50px -10px rgba(106, 92, 255, 0.45);
  --maxw: 1180px;
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: "Sora", var(--font);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -0.02em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.container--narrow { max-width: 820px; }

/* ===== Background decor ===== */
.bg-grid {
  position: fixed; inset: 0; z-index: -3;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
}
.bg-glow {
  position: fixed; z-index: -2; border-radius: 50%;
  filter: blur(110px); opacity: 0.55; pointer-events: none;
}
.bg-glow--1 { width: 540px; height: 540px; top: -160px; left: -120px;
  background: radial-gradient(circle, rgba(58,139,255,0.55), transparent 70%); }
.bg-glow--2 { width: 560px; height: 560px; top: 140px; right: -160px;
  background: radial-gradient(circle, rgba(154,77,255,0.5), transparent 70%); }
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1;
  background: radial-gradient(120% 80% at 50% -10%, rgba(11,16,32,0) 40%, var(--bg) 100%);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px; padding: 11px 18px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer; transition: transform .18s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-glow); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 0 60px -8px rgba(106,92,255,.6); }
.btn--ghost { background: var(--surface); color: var(--text); border-color: var(--border); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: var(--surface-2); border-color: rgba(255,255,255,.22); transform: translateY(-2px); }
.btn--lg { padding: 14px 24px; font-size: 16px; }
.btn--block { display: flex; width: 100%; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7, 10, 20, 0.55);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.site-header.scrolled { border-bottom-color: var(--border); background: rgba(7,10,20,0.8); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 18px; }
.brand__logo { height: 38px; width: auto; }
.nav__links { display: flex; gap: 26px; list-style: none; }
.nav__links a { color: var(--muted); font-size: 15px; font-weight: 500; transition: color .2s ease; }
.nav__links a:hover { color: var(--text); }
.nav__actions { display: flex; gap: 10px; align-items: center; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s ease; }

/* ===== Hero ===== */
.hero { padding: 70px 0 30px; position: relative; }
.hero__inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--muted);
  background: var(--surface); border: 1px solid var(--border);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: #38e0a0; box-shadow: 0 0 12px #38e0a0; }
.hero__title { font-size: clamp(34px, 5vw, 58px); font-weight: 800; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { color: var(--muted); font-size: clamp(16px, 1.4vw, 18px); margin: 22px 0 30px; max-width: 560px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.hero__bullets { display: flex; flex-wrap: wrap; gap: 18px; list-style: none; }
.hero__bullets li { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 14px; font-weight: 500; }
.hero__bullets svg { width: 18px; height: 18px; fill: none; stroke: #38e0a0; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.hero__visual { position: relative; }
.hero__frame {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: var(--surface);
  box-shadow: var(--shadow); transform: perspective(1400px) rotateY(-7deg) rotateX(3deg);
  transition: transform .5s ease;
}
.hero__visual:hover .hero__frame { transform: perspective(1400px) rotateY(-2deg) rotateX(1deg); }
.hero__frame img { width: 100%; }
.floating-card {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: rgba(12, 17, 34, 0.85); backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: 14px; padding: 12px 16px;
  box-shadow: var(--shadow); animation: float 5s ease-in-out infinite;
}
.floating-card--a { top: -18px; left: -22px; flex-direction: column; align-items: flex-start; gap: 2px; }
.floating-card--a .fc__label { font-size: 11px; color: var(--muted-2); }
.floating-card--a .fc__value { font-size: 20px; font-weight: 700; font-family: var(--font-display); background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.floating-card--b { bottom: -16px; right: -16px; font-size: 14px; font-weight: 600; animation-delay: 1.4s; }
.fc__icon { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: #38e0a0; color: #04120c; font-size: 13px; font-weight: 800; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ===== CSS dashboard mockup (hero) ===== */
.mock { background: linear-gradient(180deg, #0c1226, #0a0f20); color: var(--text); }
.mock__bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; border-bottom: 1px solid var(--border); background: rgba(255,255,255,.03); }
.mock__dot { width: 10px; height: 10px; border-radius: 50%; background: #2a3354; }
.mock__dot:nth-child(1) { background: #ff6058; } .mock__dot:nth-child(2) { background: #ffbe2e; } .mock__dot:nth-child(3) { background: #2aca44; }
.mock__url { margin-left: 10px; font-size: 11.5px; color: var(--muted-2); background: rgba(255,255,255,.04); padding: 4px 12px; border-radius: 999px; }
.mock__body { display: grid; grid-template-columns: 64px 1fr; min-height: 320px; }
.mock__side { background: linear-gradient(180deg, #0f1733, #0b1126); padding: 16px 12px; display: flex; flex-direction: column; gap: 12px; border-right: 1px solid var(--border); }
.mock__brand { height: 14px; border-radius: 4px; background: var(--grad); }
.mock__nav { height: 9px; border-radius: 4px; background: rgba(255,255,255,.07); }
.mock__nav--active { background: var(--grad-soft); box-shadow: inset 0 0 0 1px var(--border); }
.mock__main { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.mock__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mock__stat { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 12px; display: flex; flex-direction: column; gap: 6px; }
.mock__stat-k { font-size: 11px; color: var(--muted-2); }
.mock__stat-v { font-size: 18px; font-weight: 800; font-family: var(--font-display); }
.mock__chart { flex: 1; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; }
.mock__cap { font-size: 11px; color: var(--muted-2); }
.mock__bars { height: 120px; display: flex; align-items: flex-end; gap: 10px; margin-top: 12px; }
.mock__bars i { flex: 1; height: var(--h); border-radius: 6px 6px 0 0; background: var(--grad); opacity: .85; animation: grow 1s ease both; }
@keyframes grow { from { height: 0; } }

/* ===== CSS illustrations (product tour) ===== */
.ill { background: linear-gradient(180deg, #0c1226, #0a0f20); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; gap: 14px; min-height: 300px; }
.ill__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.ill__title { font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.ill__pill { font-size: 12px; color: var(--muted); background: var(--surface); border: 1px solid var(--border); padding: 5px 11px; border-radius: 999px; }
.ill__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.ill__chips span { font-size: 12px; font-weight: 600; color: var(--muted); padding: 6px 12px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface); }
.ill__chips span.on { color: #fff; background: var(--grad); border-color: transparent; }
.ill__rows, .ill__stats { display: flex; flex-direction: column; gap: 10px; }
.ill__row { display: flex; align-items: center; justify-content: space-between; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px; font-size: 14px; color: var(--muted); }
.ill__row b { color: var(--text); }
.ill__total { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 12px; border-top: 1px dashed var(--border); font-size: 14px; color: var(--muted); }
.ill__total b { font-size: 22px; font-family: var(--font-display); }
.ill__stats { display: grid; grid-template-columns: repeat(3, 1fr); }
.ill__stat { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.ill__stat span { font-size: 11px; color: var(--muted-2); }
.ill__stat b { font-size: 18px; font-family: var(--font-display); }
.ill__split { display: flex; align-items: center; gap: 24px; margin-top: 6px; }
.ill__donut {
  width: 128px; height: 128px; border-radius: 50%; flex: none;
  background: conic-gradient(#38e0a0 0 38%, #ffbe3a 38% 52%, #ff6471 52% 100%);
  -webkit-mask: radial-gradient(circle 40px at center, transparent 98%, #000 100%);
          mask: radial-gradient(circle 40px at center, transparent 98%, #000 100%);
}
.ill__legend { list-style: none; display: grid; gap: 12px; }
.ill__legend li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); }
.ill__legend i { width: 12px; height: 12px; border-radius: 4px; }
.d-paid { background: #38e0a0; } .d-part { background: #ffbe3a; } .d-over { background: #ff6471; }

/* receipt illustration */
.ill--receipt { background: #ffffff; color: #1a2336; }
.ill__rhead { display: flex; align-items: center; justify-content: space-between; }
.ill__rbrand { font-family: var(--font-display); font-weight: 800; font-size: 22px; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ill__rtag { font-size: 11px; font-weight: 800; letter-spacing: .08em; color: #18a558; background: #e6f8ef; padding: 5px 12px; border-radius: 999px; }
.ill__rmeta { display: flex; justify-content: space-between; font-size: 13px; color: #6b7796; }
.ill__rmeta b { color: #1a2336; }
.ill__rline { height: 1px; background: #e7ebf4; margin: 4px 0; }
.ill--receipt .ill__row { background: #f6f8fc; border-color: #e7ebf4; color: #6b7796; }
.ill--receipt .ill__row b { color: #1a2336; }
.ill--receipt .ill__total { border-top-color: #e7ebf4; color: #6b7796; }
.ill__thanks { text-align: center; font-size: 12px; color: #8a93ad; margin-top: 6px; }

/* trust bar */
.trustbar { text-align: center; margin-top: 64px; }
.trustbar p { color: var(--muted-2); font-size: 13px; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 14px; }
.trustbar__items { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; color: var(--muted); font-weight: 600; font-size: 15px; }
.trustbar__items span:nth-child(even) { color: var(--brand-2); }

/* ===== Sections ===== */
.section { padding: 90px 0; position: relative; }
.section--alt { background: linear-gradient(180deg, rgba(255,255,255,0.015), transparent); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 54px; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brand-2); margin-bottom: 14px;
  padding: 5px 12px; border-radius: 999px; background: var(--grad-soft); border: 1px solid var(--border);
}
.section__head h2 { font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; }
.section__head p { color: var(--muted); margin-top: 14px; font-size: 17px; }

/* feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 22px; transition: transform .25s ease, border-color .25s ease, background .25s ease;
  position: relative; overflow: hidden;
}
.feature::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .25s ease;
}
.feature:hover { transform: translateY(-6px); background: var(--surface-2); }
.feature:hover::after { opacity: .9; }
.feature__icon { font-size: 26px; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; background: var(--grad-soft); border: 1px solid var(--border); margin-bottom: 16px; }
.feature h3 { font-size: 18px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 14.5px; }

/* product tour */
.tour { display: flex; flex-direction: column; gap: 72px; }
.tour__row { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.tour__row--reverse .tour__text { order: 2; }
.tour__text h3 { font-size: clamp(22px, 2.4vw, 30px); margin-bottom: 14px; }
.tour__text p { color: var(--muted); font-size: 16px; }
.ticks { list-style: none; margin-top: 18px; display: grid; gap: 10px; }
.ticks li { position: relative; padding-left: 30px; color: var(--text); font-size: 15px; }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%;
  background: var(--grad); color: #fff; font-size: 11px; font-weight: 800;
}
.tour__img {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  background: var(--surface); box-shadow: var(--shadow);
}
.tour__img img { width: 100%; }

/* why grid */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; transition: transform .25s ease, background .25s ease; }
.why:hover { transform: translateY(-4px); background: var(--surface-2); }
.why h3 { font-size: 19px; margin-bottom: 10px; }
.why p { color: var(--muted); font-size: 15px; }

/* pricing */
.pricing { display: grid; grid-template-columns: 1.3fr 1fr; gap: 22px; align-items: stretch; }
.pricing__card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: 22px; padding: 36px; box-shadow: var(--shadow); overflow: hidden;
}
.pricing__card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
  background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: .8;
}
.pricing__badge {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: var(--grad); color: #fff; padding: 5px 12px; border-radius: 999px; margin-bottom: 16px;
}
.pricing__card h3 { font-size: 24px; }
.pricing__price { display: flex; align-items: baseline; gap: 10px; margin: 14px 0 4px; }
.pricing__amount { font-size: 52px; font-weight: 800; font-family: var(--font-display); background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pricing__period { color: var(--muted); font-size: 15px; }
.pricing__note { color: var(--muted); margin-bottom: 22px; }
.pricing__list { list-style: none; display: grid; gap: 12px; margin-bottom: 26px; }
.pricing__list li { position: relative; padding-left: 30px; font-size: 15px; }
.pricing__list li::before { content: "✓"; position: absolute; left: 0; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: var(--grad-soft); border: 1px solid var(--border); color: #38e0a0; font-size: 12px; font-weight: 800; }
.pricing__fine { text-align: center; color: var(--muted-2); font-size: 13px; margin-top: 12px; }
.pricing__aside {
  background: var(--grad-soft); border: 1px solid var(--border); border-radius: 22px;
  padding: 36px; display: flex; flex-direction: column; justify-content: center; gap: 14px;
}
.pricing__aside h3 { font-size: 22px; }
.pricing__aside p { color: var(--muted); }
.pricing__aside .btn { align-self: flex-start; }

/* CTA banner */
.cta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
  background: var(--grad); border-radius: 24px; padding: 44px 48px;
  box-shadow: var(--shadow-glow); position: relative; overflow: hidden;
}
.cta::after { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 100% 0%, rgba(255,255,255,.18), transparent 60%); }
.cta__text { position: relative; z-index: 1; }
.cta__text h2 { color: #fff; font-size: clamp(24px, 3vw, 34px); }
.cta__text p { color: rgba(255,255,255,.85); margin-top: 8px; }
.cta__actions { position: relative; z-index: 1; display: flex; gap: 12px; flex-wrap: wrap; }
.cta .btn--primary { background: #fff; color: #1a1140; box-shadow: 0 14px 30px -10px rgba(0,0,0,.4); }
.cta .btn--ghost { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.3); color: #fff; }

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq__item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 4px 20px; transition: background .2s ease; }
.faq__item summary { cursor: pointer; list-style: none; padding: 16px 0; font-weight: 600; font-size: 16px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 22px; color: var(--brand-2); transition: transform .25s ease; line-height: 1; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--muted); padding: 0 0 18px; font-size: 15px; }
.faq__item[open] { background: var(--surface-2); }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 56px 0 30px; margin-top: 30px; background: rgba(7,10,20,.6); }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
.footer__brand img { height: 36px; width: auto; margin-bottom: 14px; }
.footer__brand p { color: var(--muted); max-width: 320px; font-size: 14.5px; }
.footer__col h4 { font-size: 14px; margin-bottom: 14px; color: var(--text); }
.footer__col a { display: block; color: var(--muted); font-size: 14.5px; margin-bottom: 10px; transition: color .2s ease; }
.footer__col a:hover { color: var(--text); }
.footer__bottom { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--border); color: var(--muted-2); font-size: 13px; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .floating-card { animation: none; }
  html { scroll-behavior: auto; }
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; gap: 56px; }
  .hero__visual { max-width: 560px; }
  .tour__row, .tour__row--reverse { grid-template-columns: 1fr; gap: 24px; }
  .tour__row--reverse .tour__text { order: 0; }
  .pricing { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav__links, .nav__actions { display: none; }
  .nav__toggle { display: flex; }
  .site-header.open .nav__links {
    display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column;
    background: rgba(8,12,24,.97); backdrop-filter: blur(14px); padding: 18px 22px; gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .site-header.open .nav__actions { display: flex; position: absolute; top: 260px; left: 0; right: 0; padding: 0 22px 18px; background: rgba(8,12,24,.97); }
  .site-header.open .nav__actions .btn { flex: 1; }
  .nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .feature-grid, .why-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .cta { padding: 32px 26px; }
  .section { padding: 64px 0; }
  .floating-card--a { left: -8px; top: -10px; }
  .floating-card--b { right: -6px; }
}
