:root {
  color-scheme: light;
  --orange: #ff8a1f;
  --orange-strong: #f25a2e;
  --yellow: #ffd83d;
  --yellow-soft: #fff7d8;
  --ink: #102132;
  --ink-soft: #34465a;
  --muted: #6d7b8d;
  --line: rgba(16, 33, 50, 0.11);
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --warm-bg: #fff9ef;
  --shadow: 0 22px 70px rgba(16, 33, 50, 0.12);
  --shadow-soft: 0 14px 40px rgba(16, 33, 50, 0.09);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  transition: transform .2s ease;
}

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

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

.section-pad {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 30px rgba(16, 33, 50, 0.08);
}

.navbar {
  width: min(100% - 40px, var(--container));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand img {
  width: 48px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(242, 90, 46, .18));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 36px rgba(16, 33, 50, 0.05);
}

.menu a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 850;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.menu a:hover,
.menu a:focus-visible {
  background: var(--yellow-soft);
  color: #a5420f;
  transform: translateY(-1px);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-strong));
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(242, 90, 46, .28);
  transition: transform .2s ease, box-shadow .2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(242, 90, 46, .36);
}

.nav-cta svg,
.store-btn svg,
.btn svg,
.hero-badges svg,
.check-list svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  padding-top: 82px;
  background:
    radial-gradient(circle at top left, rgba(255, 216, 61, .24), transparent 38%),
    linear-gradient(180deg, #fffaf0 0%, #fff 62%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 33, 50, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 33, 50, .04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 78%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  opacity: .72;
  pointer-events: none;
}

.hero-glow-one {
  width: 340px;
  height: 340px;
  top: 90px;
  right: 8%;
  background: rgba(255, 138, 31, .20);
}

.hero-glow-two {
  width: 420px;
  height: 420px;
  left: -210px;
  bottom: -110px;
  background: rgba(255, 216, 61, .24);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, .96fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #bc4c14;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow), var(--orange-strong));
  box-shadow: 0 0 0 6px rgba(255, 138, 31, .13);
}

.eyebrow.light {
  color: #fff;
}

.eyebrow.light::before {
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, .18);
}

.hero h1,
.section-copy h2,
.section-heading h2,
.cta-banner h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: .98;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(44px, 6vw, 78px);
}

.hero p,
.section-copy p,
.section-heading p,
.cta-banner p {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}

.hero p {
  max-width: 650px;
}

.hero-actions,
.cta-actions,
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 950;
  letter-spacing: -0.01em;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-strong));
  color: #fff;
  box-shadow: 0 18px 36px rgba(242, 90, 46, .26);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 22px 46px rgba(242, 90, 46, .35);
}

.btn-ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(16, 33, 50, .08);
}

.btn-white {
  background: #fff;
  color: #bd4514;
  box-shadow: 0 18px 36px rgba(85, 30, 4, .18);
}

.btn-outline-light {
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.08);
  color: #fff;
}

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

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 138, 31, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: #8f3a12;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(16, 33, 50, .05);
}

.hero-visual {
  position: relative;
}

.visual-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 138, 31, .22);
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(255,255,255,.95), rgba(255,247,216,.82));
  box-shadow: var(--shadow);
}

.visual-card::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  top: -110px;
  right: -90px;
  background: radial-gradient(circle, rgba(255, 138, 31, .36), transparent 68%);
  pointer-events: none;
}

.visual-topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(16, 33, 50, .08);
  background: rgba(255, 255, 255, .56);
  backdrop-filter: blur(14px);
}

.visual-topbar div {
  display: flex;
  gap: 7px;
}

.visual-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
}

.visual-topbar strong {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 950;
}

.visual-main-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
}

.visual-floating {
  position: absolute;
  z-index: 3;
  width: min(260px, 54%);
  padding: 16px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 20px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 44px rgba(16, 33, 50, .16);
  backdrop-filter: blur(14px);
}

.visual-floating strong,
.visual-floating small {
  display: block;
}

.visual-floating strong {
  font-size: 18px;
  letter-spacing: -0.04em;
}

.visual-floating small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.visual-floating-one {
  left: 22px;
  bottom: 28px;
}

.visual-floating-two {
  right: 22px;
  bottom: 96px;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -36px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.trust-grid div {
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #fffaf0);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.trust-grid span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.split-grid,
.formation-grid,
.app-grid,
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 64px;
}

.section-copy h2,
.section-heading h2,
.cta-banner h2 {
  font-size: clamp(34px, 4.6vw, 56px);
}

.section-copy p {
  max-width: 670px;
}

.about-panel,
.formation-card,
.resource-card {
  position: relative;
}

.about-panel img,
.formation-card img,
.resource-card img {
  width: 100%;
  object-fit: cover;
}

.about-panel img {
  height: 520px;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.quote-card {
  position: absolute;
  right: 28px;
  bottom: -28px;
  width: min(360px, calc(100% - 56px));
  padding: 24px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 24px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.quote-card svg {
  width: 28px;
  height: 28px;
  fill: var(--orange-strong);
}

.quote-card p {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.5;
}

.muted {
  background: linear-gradient(180deg, var(--surface-soft), #fff);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading .eyebrow {
  justify-content: center;
}

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

.feature-card,
.resource-card {
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(16, 33, 50, .06);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.feature-card:hover,
.resource-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 138, 31, .26);
  box-shadow: 0 24px 50px rgba(16, 33, 50, .12);
}

.icon-bubble {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--yellow-soft), #fff0da);
  color: var(--orange-strong);
}

.icon-bubble svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.feature-card h3,
.resource-card h3,
.phone-shell h3 {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.feature-card p,
.resource-card p,
.phone-shell p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.formation {
  background:
    radial-gradient(circle at bottom right, rgba(255, 138, 31, .14), transparent 35%),
    #fff;
}

.formation-grid {
  grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
}

.formation-card img {
  height: 560px;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.formation-highlight {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.54);
  border-radius: 22px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 20px 42px rgba(16, 33, 50, .18);
  backdrop-filter: blur(14px);
}

.formation-highlight strong,
.formation-highlight span {
  display: block;
}

.formation-highlight strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.formation-highlight span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 32px;
}

.check-list div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .8);
  color: var(--ink-soft);
  font-weight: 850;
}

.check-list svg {
  margin-top: 2px;
  color: var(--orange-strong);
}

.app-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,.18), transparent 25%),
    linear-gradient(135deg, #ff9d23 0%, #f76b25 42%, #d94d23 100%);
  color: #fff;
}

.app-section .section-copy h2,
.app-section .section-copy p {
  color: #fff;
}

.app-section .section-copy p {
  color: rgba(255,255,255,.86);
}

.store-buttons {
  gap: 12px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 18px;
  background: rgba(255,255,255,.15);
  color: #fff;
  box-shadow: 0 18px 36px rgba(83, 29, 3, .18);
  backdrop-filter: blur(12px);
  transition: transform .2s ease, background .2s ease;
}

.store-btn:hover,
.store-btn:focus-visible {
  transform: translateY(-3px);
  background: rgba(255,255,255,.22);
}

.store-btn svg {
  width: 30px;
  height: 30px;
}

.store-btn small,
.store-btn span {
  display: block;
}

.store-btn small {
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  opacity: .82;
}

.store-btn span {
  font-size: 17px;
  font-weight: 950;
  line-height: 1.15;
}

.phone-card {
  display: flex;
  justify-content: center;
}

.phone-shell {
  position: relative;
  width: min(360px, 100%);
  padding: 54px 28px 34px;
  border: 10px solid rgba(255,255,255,.28);
  border-radius: 46px;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  text-align: center;
  box-shadow: 0 36px 80px rgba(85, 30, 4, .26);
}

.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 94px;
  height: 8px;
  border-radius: 99px;
  background: rgba(16, 33, 50, .15);
  transform: translateX(-50%);
}

.phone-shell img {
  width: 118px;
  margin: 0 auto;
  filter: drop-shadow(0 18px 24px rgba(242, 90, 46, .18));
}

.phone-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.phone-list span {
  padding: 12px;
  border-radius: 14px;
  background: #fff7e9;
  color: #9a3c12;
  font-size: 14px;
  font-weight: 900;
}

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

.resource-card {
  padding: 12px 12px 26px;
}

.resource-card img {
  height: 220px;
  border-radius: 22px;
}

.resource-card h3,
.resource-card p {
  padding-inline: 14px;
}



.ai-ready {
  background:
    radial-gradient(circle at top left, rgba(255, 216, 61, .18), transparent 32%),
    linear-gradient(180deg, #fff, #fffaf0);
}

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

.answer-card {
  padding: 28px;
  border: 1px solid rgba(255, 138, 31, .18);
  border-radius: 28px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 44px rgba(16, 33, 50, .07);
}

.answer-card span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--yellow-soft);
  color: #a5420f;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.answer-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.answer-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.faq-section {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: 54px;
  align-items: start;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface-soft);
  box-shadow: 0 10px 28px rgba(16, 33, 50, .05);
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  list-style: none;
  padding: 20px 56px 20px 22px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 950;
  cursor: pointer;
}

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

.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--orange-strong);
  transform: translateY(-50%);
  font-weight: 950;
}

.faq-list details[open] summary::after {
  content: '–';
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-weight: 650;
}

.cta-banner {
  padding: 82px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.24), transparent 30%),
    linear-gradient(135deg, #13263a, #102132 55%, #27180c);
  color: #fff;
}

.cta-banner h2,
.cta-banner p {
  color: #fff;
}

.cta-banner p {
  color: rgba(255,255,255,.78);
}

.cta-grid {
  grid-template-columns: minmax(0, 1fr) auto;
}

.cta-actions {
  justify-content: flex-end;
}

.footer {
  background: #fffaf0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) repeat(2, minmax(170px, 220px));
  gap: 48px;
  padding: 64px 0;
}

.footer-brand p {
  max-width: 420px;
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h3 {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--ink-soft);
  font-weight: 800;
  transition: color .2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--orange-strong);
}

.footer-bottom {
  border-top: 1px solid rgba(16, 33, 50, .08);
  background: #fff;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.footer-bottom a {
  color: var(--orange-strong);
  font-weight: 950;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange), var(--orange-strong));
  color: #fff;
  box-shadow: 0 16px 34px rgba(242, 90, 46, .32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

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

.delay-1 {
  transition-delay: .08s;
}

.delay-2 {
  transition-delay: .16s;
}

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

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

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

@media (max-width: 1080px) {
  .navbar {
    min-height: 76px;
  }

  .menu-toggle {
    display: flex;
  }

  .menu {
    position: fixed;
    inset: 76px 18px auto;
    display: none;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--shadow-soft);
  }

  .menu.is-open {
    display: grid;
  }

  .menu a {
    padding: 14px;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .formation-grid,
  .app-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .split-grid,
  .formation-grid,
  .app-grid {
    gap: 44px;
  }

  .hero {
    min-height: auto;
    padding-top: 62px;
  }

  .hero h1 {
    max-width: 900px;
  }

  .visual-main-img,
  .about-panel img,
  .formation-card img {
    height: 440px;
  }

  .trust-grid,
  .cards-grid,
  .resources-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-grid {
    gap: 28px;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

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

  .section-pad {
    padding: 68px 0;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 11px;
  }

  .hero {
    padding-top: 46px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .hero p,
  .section-copy p,
  .section-heading p,
  .cta-banner p {
    font-size: 16px;
  }

  .hero-actions,
  .cta-actions,
  .store-buttons {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-badges {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-badges span {
    justify-content: center;
  }

  .visual-card {
    border-radius: 26px;
  }

  .visual-main-img,
  .about-panel img,
  .formation-card img {
    height: 360px;
  }

  .visual-floating {
    position: static;
    width: auto;
    margin: 12px 16px;
  }

  .visual-floating-two {
    margin-bottom: 18px;
  }

  .trust-strip {
    margin-top: -22px;
  }

  .trust-grid,
  .cards-grid,
  .answer-grid,
  .faq-grid,
  .resources-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    border-radius: 22px;
  }

  .quote-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: -44px 18px 0;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading .eyebrow {
    justify-content: flex-start;
  }

  .feature-card,
  .resource-card,
  .answer-card,
  .faq-list details {
    border-radius: 22px;
  }

  .app-grid {
    text-align: left;
  }

  .phone-shell {
    width: 100%;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .brand span {
    display: none;
  }

  .hero h1 {
    letter-spacing: -0.055em;
  }

  .section-copy h2,
  .section-heading h2,
  .cta-banner h2 {
    font-size: 32px;
  }
}
