/* ==========================================================================
   Reconnectifly — reconnectifly.com
   Single stylesheet. No build step, no framework.
   Brand tokens mirror rif-frontend/lib/config/theme.dart so the site and the
   app stay visually in sync — change them in one place here.
   ========================================================================== */

/* --------------------------------------------------------------- 1. Tokens */
:root {
  --brand: #3653f4;
  --brand-dark: #2841d6;
  --brand-deep: #622e9b;
  --brand-pink: #c13584;
  --gold: #e39a1b;

  --bg: #f8f9ff;
  --surface: #ffffff;
  --surface-alt: #f1f3fd;
  --ink: #2d3748;
  --ink-strong: #171e2e;
  --muted: #718096;
  --line: #e4e8f5;

  --on-dark: #ffffff;
  --on-dark-soft: #d8dfff;

  --radius-sm: 10px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(23, 30, 46, .06), 0 2px 8px rgba(23, 30, 46, .04);
  --shadow: 0 4px 12px rgba(23, 30, 46, .06), 0 12px 32px rgba(23, 30, 46, .07);
  --shadow-lg: 0 12px 28px rgba(23, 30, 46, .10), 0 32px 72px rgba(40, 65, 214, .16);

  --gradient: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  --gradient-warm: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-pink) 100%);

  --container: 1160px;
  --header-h: 68px;

  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

/* ---------------------------------------------------------------- 2. Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

button {
  font: inherit;
  color: inherit;
}

/* Must come after the display rules below it would otherwise lose to — the JS
   search sets [hidden] on .faq-toc, which carries an author `display: flex`. */
[hidden] {
  display: none !important;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink-strong);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
}

p {
  margin: 0;
}

a {
  color: var(--brand);
  text-decoration: none;
}

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

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  padding: 10px 18px;
  border-radius: var(--radius);
  background: var(--ink-strong);
  color: #fff;
  font-weight: 600;
  transition: top .18s ease;
}

.skip-link:focus {
  top: 12px;
  color: #fff;
}

/* ------------------------------------------------------------- 3. Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding: 92px 0;
}

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

.section--alt {
  background: var(--surface);
}

.section-head {
  max-width: 660px;
  margin-bottom: 52px;
}

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

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
}

.eyebrow--on-dark {
  color: var(--on-dark-soft);
}

h1 {
  font-size: clamp(2.3rem, 5.2vw, 3.65rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
}

h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.lead {
  margin-top: 18px;
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  color: var(--muted);
  line-height: 1.7;
}

.lead--on-dark {
  color: var(--on-dark-soft);
}

/* ------------------------------------------------------------ 4. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  font-size: .97rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease,
    background-color .16s ease, border-color .16s ease, color .16s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 18px rgba(54, 83, 244, .28);
}

.btn--primary:hover {
  background: var(--brand-dark);
  color: #fff;
  box-shadow: 0 10px 26px rgba(54, 83, 244, .34);
}

.btn--ghost {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink-strong);
}

.btn--ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.btn--on-dark {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .38);
  color: #fff;
}

.btn--on-dark:hover {
  background: rgba(255, 255, 255, .2);
  color: #fff;
}

.btn--sm {
  padding: 11px 18px;
  font-size: .88rem;
}

/* Play Store badge -- generic glyph, badge layout. Swap in Google's official
   badge artwork per assets/img/README notes if you want the exact mark. */
.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 12px 24px 12px 20px;
  border: 1.5px solid transparent;
  border-radius: 14px;
  background: var(--ink-strong);
  color: #fff;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
  box-shadow: 0 8px 22px rgba(23, 30, 46, .24);
}

.btn-store:hover {
  transform: translateY(-2px);
  background: #0d121f;
  color: #fff;
  box-shadow: 0 14px 32px rgba(23, 30, 46, .3);
}

.btn-store__icon {
  flex: none;
  width: 26px;
  height: 26px;
}

.btn-store__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}

.btn-store__kicker {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  opacity: .72;
}

.btn-store__label {
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: -.01em;
}

.btn-store--light {
  background: #fff;
  color: var(--ink-strong);
  box-shadow: 0 10px 28px rgba(10, 14, 40, .28);
}

.btn-store--light:hover {
  background: #fff;
  color: var(--ink-strong);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
}

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

.btn-note--on-dark {
  color: rgba(255, 255, 255, .68);
}

/* ------------------------------------------------------------- 5. Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 18px rgba(23, 30, 46, .05);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  flex: none;
}

.brand img {
  height: 24px;
  width: auto;
}

.brand__tagline {
  font-size: 10px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--muted);
  margin-top: 2px;
  opacity: .8;
}

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

.nav__list {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__list a {
  position: relative;
  padding: 4px 0;
  font-size: .93rem;
  font-weight: 600;
  color: var(--ink);
}

.nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transition: transform .18s ease;
}

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

.nav__list a:hover::after,
.nav__list a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
}

/* Scoped to its own class, not `span`, so the .sr-only label inside the button
   isn't turned into a stray bar. */
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink-strong);
  transition: transform .22s ease, background-color .18s ease;
}

.nav-toggle__bars {
  position: relative;
  margin: 0 auto;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__bars::before {
  top: -6px;
}

.nav-toggle__bars::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* --------------------------------------------------------------- 6. Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient);
  color: #fff;
  padding: 88px 0 96px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 640px;
  height: 640px;
  top: -280px;
  right: -180px;
  background: radial-gradient(circle, rgba(193, 53, 132, .5), transparent 68%);
}

.hero::after {
  width: 560px;
  height: 560px;
  bottom: -300px;
  left: -200px;
  background: radial-gradient(circle, rgba(255, 255, 255, .2), transparent 68%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  color: #fff;
}

.hero h1 em {
  font-style: normal;
  color: #ffd9ef;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 7px 15px 7px 11px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  font-size: .8rem;
  font-weight: 600;
  color: #fff;
}

.hero__badge svg {
  width: 15px;
  height: 15px;
  flex: none;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.hero__stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.02em;
}

.hero__stat span {
  font-size: .82rem;
  color: rgba(255, 255, 255, .72);
}

/* ------------------------------------------------------ 7. Phone mockups */
.phone {
  position: relative;
  width: 100%;
  max-width: 288px;
  padding: 9px;
  border-radius: 40px;
  background: linear-gradient(160deg, #2a3050, #12162c);
  box-shadow: var(--shadow-lg), inset 0 0 0 1.5px rgba(255, 255, 255, .14);
}

/* The ratio lives on the screen, not the frame, so the 360x780 artwork fills
   it exactly and object-fit has nothing to crop. */
.phone__screen {
  position: relative;
  aspect-ratio: 360 / 780;
  overflow: hidden;
  border-radius: 32px;
  background: var(--bg);
}

.phone__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.phone::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 50%;
  width: 78px;
  height: 7px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: rgba(255, 255, 255, .22);
}

.phone-cluster {
  position: relative;
  display: flex;
  justify-content: center;
  padding-block: 8px;
}

.phone-cluster .phone--front {
  z-index: 2;
}

.phone-cluster .phone--back {
  position: absolute;
  top: 40px;
  left: 50%;
  z-index: 1;
  max-width: 224px;
  transform: translateX(24%) rotate(7deg);
  opacity: .95;
}

/* --------------------------------------------------------- 8. Trust strip */
.trust {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}

.trust__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust__list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .89rem;
  font-weight: 600;
  color: var(--ink);
}

.trust__list svg {
  width: 17px;
  height: 17px;
  flex: none;
  color: var(--brand);
}

/* ------------------------------------------------------------ 9. Pillars */
.pillar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 78px 0;
}

.pillar+.pillar {
  border-top: 1px solid var(--line);
}

.pillar--flip .pillar__media {
  order: -1;
}

.pillar__media {
  display: flex;
  justify-content: center;
}

.pillar__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: rgba(54, 83, 244, .1);
  color: var(--brand);
}

.pillar__icon svg {
  width: 26px;
  height: 26px;
}

.pillar--pink .pillar__icon {
  background: rgba(193, 53, 132, .1);
  color: var(--brand-pink);
}

.pillar--deep .pillar__icon {
  background: rgba(98, 46, 155, .1);
  color: var(--brand-deep);
}

.pillar__intro {
  margin-top: 16px;
  font-size: .97rem;
  line-height: 1.65;
  color: var(--muted);
}

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

.pillar__list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 16px;
  font-size: 0.96 rem;
  line-height: 1.55;
  font-weight: 500;
  color: var(--ink);
}

.pillar__list li::before {
  content: "";
  flex: none;
  margin-top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(54, 83, 244, .12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233653f4' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 11px no-repeat;
}

.pillar--pink .pillar__list li::before {
  background-color: rgba(193, 53, 132, .12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c13584' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
}

.pillar--deep .pillar__list li::before {
  background-color: rgba(98, 46, 155, .12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23622e9b' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
}

.career-roadmap {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 28px;
}

.career-roadmap__line {
  position: absolute;
  top: 25px;
  left: 10%;
  right: 10%;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(124, 58, 237, .2), var(--brand-deep));
  z-index: 0;
}

.career-roadmap__stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  flex: 1;
  min-width: 0;
}

.career-roadmap__node {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: none;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(124, 58, 237, .22);
  box-shadow: 0 8px 18px rgba(98, 46, 155, .16);
  color: var(--brand-deep);
}

.career-roadmap__node svg {
  width: 23px;
  height: 23px;
}

.career-roadmap__label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .career-roadmap {
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .career-roadmap__stage {
    min-width: 88px;
  }
}

/* ------------------------------------------------------- 10. Feature grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: 22px;
}

.card {
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(54, 83, 244, .3);
  box-shadow: var(--shadow);
}

.card__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 13px;
  background: rgba(54, 83, 244, .1);
  color: var(--brand);
}

.card__icon svg {
  width: 22px;
  height: 22px;
}

.card h3 {
  margin-bottom: 9px;
  font-size: 1.06rem;
}

.card p {
  font-size: .93rem;
  color: var(--muted);
  line-height: 1.62;
}

/* ----------------------------------------------------------- 11. Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 8px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: var(--gradient);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
}

.step h3 {
  margin-bottom: 8px;
}

.step p {
  font-size: .95rem;
  color: var(--muted);
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 62px;
  right: -20px;
  height: 2px;
  border-radius: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 7px, transparent 7px 14px);
}

/* --------------------------------------------------------- 12. Premium */
.premium {
  position: relative;
  overflow: hidden;
  background: var(--ink-strong);
  color: #fff;
}

.premium::before {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  top: -320px;
  left: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54, 83, 244, .5), transparent 66%);
}

.premium__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 64px;
  align-items: center;
}

.premium h2 {
  color: #fff;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin: 26px 0 6px;
}

.price__amount {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1;
}

.price__period {
  padding-bottom: 6px;
  color: rgba(255, 255, 255, .66);
  font-size: .95rem;
}

.price__note {
  font-size: .88rem;
  color: rgba(255, 255, 255, .6);
}

.perks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.perks li {
  position: relative;
  padding-left: 27px;
  font-size: .93rem;
  color: rgba(255, 255, 255, .88);
}

.perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 10px no-repeat;
}

.addon {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .06);
}

.addon__icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--gradient-warm);
  color: #fff;
}

.addon__icon svg {
  width: 21px;
  height: 21px;
}

.addon strong {
  display: block;
  font-size: .97rem;
}

.addon span {
  font-size: .86rem;
  color: rgba(255, 255, 255, .65);
}

/* ------------------------------------------------------------ 13. FAQ */
/* Native <details>/<summary>, so the answers stay readable and keyboard-operable
   with JavaScript disabled. JS only drives the search filter. */
.accordion {
  display: grid;
  gap: 12px;
}

.accordion__item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: border-color .18s ease, box-shadow .18s ease;
}

.accordion__item[open] {
  border-color: rgba(54, 83, 244, .34);
  box-shadow: var(--shadow-sm);
}

.accordion__trigger {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 19px 22px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-strong);
  cursor: pointer;
  list-style: none;
}

.accordion__trigger::-webkit-details-marker {
  display: none;
}

.accordion__trigger::marker {
  content: "";
}

.accordion__trigger:hover {
  color: var(--brand);
}

.accordion__trigger>span {
  flex: 1;
}

.accordion__chevron {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  color: var(--muted);
  transition: transform .22s ease, color .18s ease;
}

.accordion__item[open] .accordion__chevron {
  transform: rotate(180deg);
  color: var(--brand);
}

.accordion__body {
  padding: 0 54px 22px 22px;
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.72;
}

.accordion__body>*+* {
  margin-top: 12px;
}

.accordion__body ol,
.accordion__body ul {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 6px;
}

.accordion__body strong {
  color: var(--ink-strong);
  font-weight: 600;
}

/* --------------------------------------------------------- 14. CTA band */
.cta {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
  background: var(--gradient);
  color: #fff;
  text-align: center;
}

.cta::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  top: -340px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .2), transparent 66%);
}

.cta__inner {
  position: relative;
  z-index: 1;
}

.cta h2 {
  color: #fff;
}

.cta img {
  height: 30px;
  width: auto;
  margin: 0 auto 26px;
}

.cta .btn-row {
  justify-content: center;
}

/* ---------------------------------------------------------- 15. Footer */
.site-footer {
  padding: 68px 0 30px;
  background: var(--ink-strong);
  color: rgba(255, 255, 255, .68);
  font-size: .92rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer__brand img {
  height: 24px;
  width: auto;
  margin-bottom: 18px;
}

.footer__brand p {
  font-size: .9rem;
  line-height: 1.7;
  max-width: 30ch;
}

.site-footer h4 {
  margin-bottom: 16px;
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.footer__list a {
  color: rgba(255, 255, 255, .72);
}

.footer__list a:hover {
  color: #fff;
}

.footer__list address {
  font-style: normal;
  line-height: 1.7;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 11px;
  color: rgba(255, 255, 255, .8);
  transition: background-color .16s ease, color .16s ease, border-color .16s ease;
}

.socials a:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .34);
  color: #fff;
}

.socials svg {
  width: 19px;
  height: 19px;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 26px;
  font-size: .84rem;
  color: rgba(255, 255, 255, .5);
}

/* --------------------------------------------------- 16. FAQ page bits */
.page-head {
  position: relative;
  overflow: hidden;
  padding: 72px 0 78px;
  background: var(--gradient);
  color: #fff;
  text-align: center;
}

.page-head::before {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  top: -300px;
  right: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 53, 132, .45), transparent 68%);
}

.page-head__inner {
  position: relative;
  z-index: 1;
}

.page-head h1 {
  color: #fff;
  font-size: clamp(2rem, 4.4vw, 2.9rem);
}

.search {
  position: relative;
  max-width: 520px;
  margin: 32px auto 0;
}

.search svg {
  position: absolute;
  left: 18px;
  top: 50%;
  width: 19px;
  height: 19px;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}

.search input {
  width: 100%;
  padding: 16px 18px 16px 48px;
  border: 1.5px solid transparent;
  border-radius: 14px;
  background: #fff;
  font: inherit;
  font-size: .98rem;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.search input::placeholder {
  color: var(--muted);
}

.search input:focus {
  outline: none;
  border-color: var(--brand);
}

.faq-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 46px;
  padding: 0;
  list-style: none;
}

.faq-toc a {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: .86rem;
  font-weight: 600;
  color: var(--ink);
}

.faq-toc a:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.faq-group {
  margin-bottom: 44px;
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.faq-group__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.faq-group__icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(54, 83, 244, .1);
  color: var(--brand);
}

.faq-group__icon svg {
  width: 20px;
  height: 20px;
}

.faq-group h2 {
  font-size: 1.28rem;
}

.faq-empty {
  display: none;
  padding: 54px 24px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  text-align: center;
}

.faq-empty.is-visible {
  display: block;
}

.faq-empty strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
  color: var(--ink-strong);
}

.faq-empty p {
  font-size: .94rem;
  color: var(--muted);
}

.support {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 12px;
}

.support__card {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.support__card h3 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.support__card p,
.support__card address {
  font-size: .93rem;
  font-style: normal;
  color: var(--muted);
  line-height: 1.72;
}

.support__card a {
  font-weight: 600;
}

/* ------------------------------------------------- 17. Reveal animation */
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity .62s cubic-bezier(.22, .61, .36, 1),
    transform .62s cubic-bezier(.22, .61, .36, 1);
}

/* ------------------------------------------------------ 18. Breakpoints */
@media (max-width: 1000px) {

  .hero__inner,
  .premium__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__inner .phone-cluster,
  .premium__inner .phone-cluster {
    order: 2;
  }

  .pillar {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 58px 0;
  }

  .pillar--flip .pillar__media {
    order: 0;
  }

  .pillar__media {
    order: -1;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    margin: 0;
    padding: 18px 24px 24px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(23, 30, 46, .1);
  }

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

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav__list a {
    display: block;
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .nav__list a::after {
    display: none;
  }

  .nav .btn {
    margin-top: 14px;
    justify-content: center;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .section {
    padding: 66px 0;
  }

  .hero {
    padding: 62px 0 72px;
  }

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

  .hero__stat strong {
    font-size: 1.3rem;
  }

  .hero__stat span {
    font-size: .76rem;
    line-height: 1.4;
  }

  .phone-cluster .phone--back {
    display: none;
  }

  .phone {
    max-width: 262px;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .accordion__body {
    padding-right: 24px;
  }

  .btn,
  .btn-store {
    width: 100%;
    justify-content: center;
  }

  .btn-store {
    padding-inline: 20px;
  }

  .btn-row {
    gap: 12px;
  }
}

@media (max-width: 420px) {
  .container {
    padding-inline: 18px;
  }

  .card {
    padding: 24px 22px;
  }
}

/* ------------------------------------------------------- 19. Preferences */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }

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

@media print {

  .site-header,
  .cta,
  .nav,
  .btn-row,
  .socials {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .hero,
  .page-head,
  .premium,
  .site-footer {
    background: #fff !important;
    color: #000 !important;
  }

  .hero h1,
  .page-head h1,
  .premium h2 {
    color: #000 !important;
  }

  /* main.js opens every <details> on beforeprint so all answers make it onto paper. */
}