:root {
  --bg: #061116;
  --bg-2: #081c24;
  --panel: rgba(12, 34, 43, 0.78);
  --panel-strong: rgba(13, 45, 56, 0.94);
  --text: #f4fbff;
  --muted: #aac2ca;
  --cyan: #18d4d5;
  --green: #20d06f;
  --yellow: #ffd84a;
  --border: rgba(143, 242, 255, 0.18);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 8%, rgba(24, 212, 213, 0.16), transparent 28rem),
    radial-gradient(circle at 85% 18%, rgba(32, 208, 111, 0.12), transparent 30rem),
    linear-gradient(135deg, var(--bg), #071820 42%, #051014);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3 { margin: 0 0 1rem; line-height: 1.08; letter-spacing: 0; color: var(--text); overflow-wrap: anywhere; }
h1 { font-size: clamp(2.25rem, 12vw, 4.9rem); max-width: 980px; }
h1 span { display: inline; }
h2 { font-size: clamp(1.75rem, 7vw, 3.1rem); }
h3 { font-size: 1.15rem; }
ul { margin: 0; padding: 0; }
li { list-style: none; }

.container { width: min(calc(100% - 32px), var(--max)); margin-inline: auto; }
.section { padding: 72px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, rgba(8, 28, 36, 0.8), rgba(6, 17, 22, 0.25)); border-block: 1px solid var(--border); }
.section-head { max-width: 820px; margin-bottom: 28px; }
.section-head p { font-size: 1.05rem; }
.eyebrow { color: var(--cyan); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; margin-bottom: .8rem; }
.lead { font-size: clamp(1.05rem, 4.5vw, 1.35rem); max-width: 760px; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 100; background: var(--cyan); color: #031013; padding: 10px 14px; border-radius: var(--radius); font-weight: 800; }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 16, 21, 0.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.15rem; white-space: nowrap; }
.site-header .brand img { width: 132px; height: auto; object-fit: contain; border-radius: 8px; filter: drop-shadow(0 0 18px rgba(24, 212, 213, 0.28)); }
.site-header .brand span { display: none; }
.brand strong { color: var(--green); }
.nav-toggle { width: 46px; height: 46px; display: inline-grid; place-content: center; gap: 5px; border: 1px solid var(--border); border-radius: var(--radius); background: rgba(255, 255, 255, 0.04); color: var(--text); }
.nav-toggle span:not(.sr-only) { width: 20px; height: 2px; background: currentColor; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.nav-menu {
  position: absolute;
  inset: 78px 16px auto;
  display: grid;
  gap: 8px;
  padding: 14px;
  background: rgba(7, 24, 31, .98);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform-origin: top right;
  transform: scale(.98);
  opacity: 0;
  visibility: hidden;
}
.nav-menu.is-open { opacity: 1; visibility: visible; transform: scale(1); }
.nav-menu a { padding: 10px 12px; color: var(--muted); border-radius: 8px; font-weight: 750; }
.nav-menu a:hover, .nav-menu a:focus-visible, .nav-menu [aria-current="page"] { color: var(--text); background: rgba(24, 212, 213, 0.1); }
.nav-menu .btn { color: #031013; }
.nav-menu .btn:hover, .nav-menu .btn:focus-visible { color: #031013; background: linear-gradient(135deg, var(--cyan), var(--green)); }

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid rgba(24, 212, 213, 0.48);
  background: linear-gradient(135deg, var(--cyan), var(--green));
  color: #031013;
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(24, 212, 213, 0.18);
}
.btn:hover { filter: brightness(1.08); transform: translateY(-1px); box-shadow: 0 18px 42px rgba(24, 212, 213, 0.24); }
.btn-ghost { background: rgba(255,255,255,.04); color: var(--text); box-shadow: none; }
.btn-ghost:hover { background: rgba(24, 212, 213, 0.08); box-shadow: none; }
.btn-small { min-height: 42px; padding: 9px 15px; font-size: .9rem; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 20px; }
.actions .btn { width: 100%; }

.hero { padding-top: 42px; padding-bottom: 68px; overflow: hidden; }
.hero-grid { display: grid; gap: 32px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 {
  max-width: 720px;
  font-size: clamp(2.45rem, 6.2vw, 4.25rem);
  line-height: 1.02;
}
.hero .lead { max-width: 690px; font-size: clamp(1.03rem, 2vw, 1.22rem); }
.hero-media { position: relative; min-height: 330px; isolation: isolate; }
.hero-zoom {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  cursor: zoom-in;
}
.hero-zoom::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(143, 242, 255, .2);
}
.zoom-label {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 3;
  padding: 6px 9px;
  border: 1px solid rgba(143, 242, 255, .24);
  border-radius: 999px;
  background: rgba(5, 16, 21, .72);
  color: var(--text);
  font-size: .75rem;
  font-weight: 850;
  opacity: 0;
  transform: translateY(-3px);
}
.hero-zoom:hover .zoom-label,
.hero-zoom:focus-visible .zoom-label { opacity: 1; transform: translateY(0); }
.hero-zoom:hover img { filter: brightness(1.05); }
.hero-main, .hero-float, .price-hero-img, .stacked-shots img {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #09222b;
  box-shadow: var(--shadow), 0 0 44px rgba(24, 212, 213, 0.08);
  object-fit: cover;
}
.hero-main-wrap {
  width: 92%;
  z-index: 1;
}
.hero-main { width: 100%; aspect-ratio: 1.34; object-position: center center; }
.hero-float-wrap {
  width: min(50%, 330px);
  position: absolute;
  right: 0;
  bottom: 4px;
  z-index: 2;
}
.hero-float {
  width: 100%;
  aspect-ratio: 1.35;
  object-position: center center;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5), 0 0 34px rgba(32, 208, 111, 0.12);
}
.mini-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 18px; max-width: 560px; }
.mini-cards span, .benefit-grid li, .check-list li, .minus-list li {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--text);
}
.mini-cards span { display: flex; align-items: center; gap: 9px; min-height: 44px; font-size: .94rem; font-weight: 760; }
.mini-cards span::before { content: attr(data-icon); display: inline-grid; place-items: center; flex: 0 0 22px; width: 22px; height: 22px; border-radius: 7px; background: rgba(24, 212, 213, 0.12); color: var(--cyan); font-size: .78rem; font-weight: 900; box-shadow: inset 0 0 0 1px rgba(143, 242, 255, 0.16); }
.benefit-grid li::before, .check-list li::before { content: ""; display: inline-block; width: 8px; height: 8px; margin-right: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 20px var(--green); }

.split { display: grid; gap: 28px; align-items: center; }
.text-stack { max-width: 720px; }
.feature-grid, .screens-grid, .benefit-grid, .two-lists { display: grid; gap: 14px; }
.feature-card, .screen-card, .price-card, .two-lists article, .cta-box {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.03));
  box-shadow: 0 16px 42px rgba(0,0,0,.2);
}
.feature-card { padding: 18px; }
.feature-card p { margin-bottom: 0; }
.icon { display: inline-grid; place-items: center; width: 38px; height: 38px; margin-bottom: 16px; border-radius: 8px; background: rgba(24, 212, 213, .14); color: var(--cyan); font-weight: 900; }
.screen-card { overflow: hidden; }
.screen-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--border);
  background: #eef6fa;
  cursor: zoom-in;
}
.screen-open img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  background: #eef6fa;
}
.screen-open:hover img { filter: brightness(1.04); }
.hero-zoom.screen-open {
  border: 0;
  background: transparent;
  border-bottom: 0;
}
.hero-zoom.screen-open img {
  background: #09222b;
  object-fit: cover;
  object-position: center center;
}
.hero-zoom.screen-open:hover img { filter: brightness(1.05); }
.screen-card div { padding: 16px; }
.screen-card p { margin-bottom: 0; }

.phone-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(82vw, 330px);
  gap: 16px;
  overflow-x: auto;
  padding: 4px 2px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--cyan) rgba(255,255,255,.08);
}
.phone-carousel figure {
  margin: 0;
  scroll-snap-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
  padding: 10px;
}
.phone-carousel img { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; object-position: top center; border-radius: 8px; }
.phone-carousel figcaption { padding: 10px 4px 0; color: var(--text); font-weight: 800; }

.gamification-points { display: grid; gap: 10px; margin-top: 22px; max-width: 560px; }
.gamification-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(24, 212, 213, .08), rgba(32, 208, 111, .045));
  color: var(--text);
  font-weight: 800;
}
.gamification-points li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: rgba(32, 208, 111, .14);
  color: var(--green);
  box-shadow: inset 0 0 0 1px rgba(32, 208, 111, .34), 0 0 22px rgba(32, 208, 111, .14);
}
.stacked-shots { display: grid; gap: 12px; align-self: center; }
.stacked-shots img {
  width: 100%;
  aspect-ratio: 1.58;
  object-position: top center;
  border-color: rgba(143, 242, 255, 0.24);
  box-shadow: var(--shadow), 0 0 36px rgba(24, 212, 213, .08);
}
.stacked-shots img:first-child { aspect-ratio: 1.72; }
.stacked-shots img:hover { transform: translateY(-2px); filter: brightness(1.04); }
.benefit-grid { padding: 2px; }
.benefit-grid li { font-weight: 750; background: linear-gradient(135deg, rgba(255,255,255,.052), rgba(24,212,213,.035)); }
.pricing-preview { display: grid; gap: 28px; align-items: center; }
.price-card { padding: 20px; }
.price-card-featured {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-color: rgba(24, 212, 213, .38);
  background:
    radial-gradient(circle at 82% 8%, rgba(32, 208, 111, .16), transparent 18rem),
    linear-gradient(150deg, rgba(12, 40, 48, .96), rgba(7, 23, 30, .88));
  box-shadow: var(--shadow), 0 0 52px rgba(24, 212, 213, .12);
}
.price-card-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(24, 212, 213, .18), transparent 35%, rgba(32, 208, 111, .1));
  opacity: .55;
}
.price-card-featured > * { position: relative; z-index: 1; }
.price-hero-card, .price-hero-card * { min-width: 0; }
.plan-label { color: var(--text); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; }
.price-main { display: grid; gap: 4px; padding: 10px 0 14px; border-bottom: 1px solid var(--border); }
.price-main > span, .price-secondary > span { color: var(--muted); font-weight: 800; }
.price-main strong {
  display: flex;
  flex-wrap: wrap;
  gap: 0 .22em;
  color: var(--text);
  font-size: clamp(2.15rem, 7vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
}
.price-amount, .price-period { color: inherit; }
.price-period { white-space: nowrap; }
.price-secondary {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.price-secondary strong { color: var(--text); font-size: 1.18rem; text-align: right; }
.price-row { display: flex; justify-content: space-between; gap: 14px; padding: 14px 0; border-top: 1px solid var(--border); color: var(--muted); }
.price-row strong { color: var(--text); text-align: right; }
.highlight { color: var(--yellow); font-weight: 850; }
.price-card ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 12px; margin: 18px 0; color: var(--muted); }
.price-card li::before { content: "+ "; color: var(--green); font-weight: 900; }
.note { font-size: .92rem; margin-top: 14px; }

.faq-list { display: grid; gap: 10px; }
details { border: 1px solid var(--border); border-radius: var(--radius); background: rgba(255,255,255,.045); overflow: hidden; }
summary { cursor: pointer; padding: 16px; font-weight: 850; color: var(--text); }
summary::marker { color: var(--cyan); }
details p { padding: 0 16px 16px; margin: 0; }
.final-cta { padding-top: 40px; }
.cta-box { padding: 26px; text-align: center; background: linear-gradient(135deg, rgba(24, 212, 213, .14), rgba(32, 208, 111, .11)); }
.cta-box .actions { justify-content: center; }

.site-footer { padding: 46px 0; border-top: 1px solid var(--border); background: #041014; }
.footer-grid { display: grid; gap: 24px; }
.footer-grid h2 { font-size: 1rem; margin-bottom: .75rem; }
.footer-grid a { display: block; width: fit-content; color: var(--muted); margin-bottom: 8px; }
.footer-grid a:hover { color: var(--cyan); }
.footer-brand { color: var(--text) !important; margin-bottom: 14px !important; }
.footer-brand img { width: 160px; height: auto; }
.footer-brand span { display: none; }

.image-modal {
  width: min(96vw, 1280px);
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel-strong);
  color: var(--text);
  box-shadow: var(--shadow);
}
.image-modal::backdrop { background: rgba(0, 0, 0, 0.72); backdrop-filter: blur(4px); }
.modal-panel { display: grid; gap: 0; }
.modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
.modal-top h2 { margin: 0; font-size: 1.05rem; }
.modal-close {
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}
.modal-img {
  width: 100%;
  max-height: min(82vh, 820px);
  object-fit: contain;
  background: #eef6fa;
}

.price-hero { padding-top: 36px; padding-bottom: 46px; }
.price-hero-grid { display: grid; gap: 24px; align-items: center; }
.price-hero-copy { max-width: 720px; }
.price-hero h1 {
  max-width: 760px;
  font-size: clamp(2.25rem, 7vw, 4.15rem);
  line-height: 1.04;
}
.price-hero .lead { max-width: 660px; font-size: clamp(1.02rem, 2vw, 1.18rem); }
.price-hero .actions { margin-bottom: 0; }
.price-hero-card { width: 100%; }
.price-card-actions { margin-top: 18px; margin-bottom: 0; }
.price-hero-img { width: 100%; aspect-ratio: 1.45; object-position: top center; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 760px; }
caption { text-align: left; padding: 0 0 14px; font-weight: 900; color: var(--text); font-size: 1.2rem; }
th, td { padding: 16px; border: 1px solid var(--border); text-align: left; vertical-align: top; }
th { color: var(--text); background: rgba(24, 212, 213, .12); }
td { color: var(--muted); background: rgba(255,255,255,.035); }
td strong { color: var(--text); }
.centered { text-align: center; margin-top: 18px; }
.two-lists article { padding: 20px; }
.check-list, .minus-list { display: grid; gap: 10px; }
.minus-list li::before { content: ""; display: inline-block; width: 8px; height: 8px; margin-right: 9px; border-radius: 50%; background: var(--yellow); }

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

@media (max-width: 700px) {
  .site-header { background: rgba(5, 16, 21, 0.94); }
  .nav { min-height: 74px; }
  h1 { font-size: clamp(1.8rem, 8vw, 2.2rem); }
  .lead { font-size: 1.05rem; }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .site-header .brand img { width: 116px; }
  .nav-menu { inset: 74px 14px auto; }
  .hero { padding-top: 34px; padding-bottom: 54px; }
  .hero h1 { font-size: clamp(1.9rem, 8.2vw, 2.35rem); line-height: 1.04; }
  .hero h1 span { display: block; }
  .hero .lead { font-size: 1.02rem; max-width: 100%; }
  .hero-copy, .price-hero .split > div:first-child { min-width: 0; }
  .eyebrow { font-size: .68rem; line-height: 1.35; overflow-wrap: anywhere; }
  .mini-cards { grid-template-columns: 1fr; gap: 8px; }
  .mini-cards span { min-height: 42px; padding: 9px 10px; font-size: .88rem; overflow-wrap: anywhere; }
  .hero-media { display: grid; gap: 12px; min-height: 0; }
  .hero-main-wrap,
  .hero-float-wrap { position: relative; width: 100%; inset: auto; justify-self: stretch; }
  .hero-main { aspect-ratio: 1.24; object-fit: cover; background: #09222b; }
  .hero-float { aspect-ratio: 1.42; object-fit: cover; background: #09222b; }
  .zoom-label { opacity: 1; transform: none; }
  .price-table, .price-table thead, .price-table tbody, .price-table tr, .price-table th, .price-table td { display: block; min-width: 0; }
  .price-table thead { display: none; }
  .price-table tr { margin-bottom: 14px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
  .price-table td { border: 0; border-bottom: 1px solid var(--border); }
  .price-table td::before { content: attr(data-label); display: block; color: var(--cyan); font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
  .price-table td:last-child { border-bottom: 0; }
  .gamification-points { margin-top: 18px; }
  .gamification-points li { align-items: flex-start; min-height: auto; }
  .price-card-featured { padding: 22px; }
  .price-main strong { display: grid; gap: 4px; font-size: clamp(1.75rem, 7.4vw, 2.25rem); overflow-wrap: anywhere; }
  .price-secondary { align-items: flex-start; flex-direction: column; gap: 4px; }
  .price-secondary strong { text-align: left; }
  .highlight { overflow-wrap: anywhere; word-break: break-word; font-size: .92rem; line-height: 1.45; }
  .price-card ul { grid-template-columns: 1fr; }
  .price-hero { padding-top: 34px; padding-bottom: 44px; }
  .price-hero h1 { font-size: clamp(2rem, 9vw, 2.65rem); }
  .price-hero .actions { gap: 10px; }
}

@media (max-width: 480px) {
  .mini-cards { grid-template-columns: 1fr; }
}

@media (min-width: 701px) {
  .actions .btn { width: auto; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .screens-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .screen-card.wide { grid-column: 1 / -1; }
  .benefit-grid, .two-lists { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-preview { grid-template-columns: minmax(0, .86fr) minmax(360px, .7fr); }
  .price-card-actions .btn { flex: 1 1 auto; }
}

@media (min-width: 960px) {
  .section { padding: 96px 0; }
  .nav-toggle { display: none; }
  .nav-menu {
    position: static;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-menu { gap: 7px; }
  .nav-menu a { font-size: .88rem; padding: 9px 10px; }
  .nav-menu .btn-small { margin-left: 4px; padding-inline: 16px; }
  .hero-grid, .split { grid-template-columns: minmax(0, .94fr) minmax(0, .88fr); }
  .price-hero-grid { grid-template-columns: minmax(0, .92fr) minmax(420px, .78fr); }
  .price-hero-card { padding: 22px 26px; }
  .price-hero-card .price-main { padding-bottom: 12px; }
  .price-hero-card .price-main strong { font-size: clamp(2.35rem, 3.7vw, 3.1rem); }
  .price-hero-card .price-secondary { padding: 12px 0; }
  .price-hero-card ul { margin: 14px 0; gap: 7px 12px; }
  .price-hero-card ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero { padding-top: 58px; }
  .hero-media { min-height: 410px; }
  .hero-main-wrap { width: 88%; transform: translateY(-4px); }
  .hero-float-wrap { width: min(46%, 310px); right: 2%; bottom: 18px; }
  .feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .screens-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .screen-card { grid-column: span 3; }
  .screen-card.wide { grid-column: span 6; }
  .media-split { grid-template-columns: minmax(0, .85fr) minmax(0, 1fr); gap: 48px; }
  .footer-grid { grid-template-columns: 1.35fr .7fr .7fr; }
  .phone-carousel { grid-auto-columns: minmax(210px, 1fr); overflow-x: visible; grid-auto-flow: initial; grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

@media (min-width: 1400px) {
  :root { --max: 1320px; }
  .hero { padding-top: 74px; padding-bottom: 92px; }
  .hero-media { min-height: 500px; }
  .hero-main-wrap { width: 90%; }
  .hero-float-wrap { width: min(45%, 360px); bottom: 24px; }
  .hero h1 { font-size: clamp(3.2rem, 4.8vw, 4.8rem); }
}

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