@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Sora:wght@600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --bg-1: #eaf7ff;
  --bg-2: #d5efff;
  --bg-3: #cbe2ff;
  --bg-4: #f3ecff;
  --text-main: #17354f;
  --text-muted: #4a6883;
  --text-subtitle: #335c82;
  --link: #0f71bd;
  --link-hover: #094f8a;
  --brand-sky: #3ac6ff;
  --brand-cyan: #00d2ff;
  --brand-purple: #8c6bff;
  --brand-pink: #ff6db2;
  --brand-indigo: #5273ff;
  --surface-glass: rgba(255, 255, 255, 0.33);
  --surface-glass-strong: rgba(255, 255, 255, 0.46);
  --surface-soft: rgba(255, 255, 255, 0.72);
  --shadow-soft: 0 14px 36px rgba(18, 75, 124, 0.12);
  --shadow-lift: 0 22px 54px rgba(18, 75, 124, 0.18);
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: min(1180px, 92vw);
  --header-height: 94px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', Tahoma, sans-serif;
  color: var(--text-main);
  line-height: 1.68;
  min-height: 100vh;
  background:
    linear-gradient(120deg, var(--bg-1), var(--bg-2), var(--bg-3), var(--bg-4), var(--bg-1));
  background-size: 300% 300%;
  animation: ambientGradient 55s ease-in-out infinite;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before,
body::after,
.site-shell::before,
.site-shell::after {
  content: '';
  position: fixed;
  pointer-events: none;
  z-index: -2;
}

body::before {
  width: 68vmax;
  height: 68vmax;
  top: -24vmax;
  left: -18vmax;
  background:
    radial-gradient(circle at 30% 30%, rgba(58, 198, 255, 0.34), rgba(58, 198, 255, 0) 58%),
    radial-gradient(circle at 68% 62%, rgba(144, 123, 255, 0.28), rgba(144, 123, 255, 0) 65%);
  filter: blur(16px);
  animation: blobShiftA 44s ease-in-out infinite alternate;
}

body::after {
  width: 62vmax;
  height: 62vmax;
  right: -22vmax;
  bottom: -28vmax;
  background:
    radial-gradient(circle at 42% 38%, rgba(0, 210, 255, 0.24), rgba(0, 210, 255, 0) 60%),
    radial-gradient(circle at 65% 58%, rgba(255, 109, 178, 0.19), rgba(255, 109, 178, 0) 66%);
  filter: blur(20px);
  animation: blobShiftB 50s ease-in-out infinite alternate;
}

.site-shell::before {
  inset: 0;
  background:
    radial-gradient(70% 35% at 20% 22%, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 70%),
    radial-gradient(74% 40% at 78% 72%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 75%);
  mix-blend-mode: soft-light;
  animation: waveSweep 36s ease-in-out infinite alternate;
}

.site-shell::after {
  inset: 0;
  background-image:
    linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 35%),
    linear-gradient(235deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 38%);
  opacity: 0.66;
}

a {
  color: var(--link);
  text-decoration: none;
  transition: color 180ms ease;
}

a:hover {
  color: var(--link-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.narrow {
  width: min(840px, 92vw);
}

.section {
  padding: clamp(68px, 10vw, 118px) 0;
  position: relative;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-weight: 700;
  color: #2c6da4;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  line-height: 1.15;
}

h1,
h2 {
  background: linear-gradient(110deg, #0e3f67, #0f71bd 34%, #5a69d6 65%, #d759a3 96%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h1 {
  font-size: clamp(2rem, 3.8vw, 4.35rem);
  letter-spacing: -0.018em;
}

h2 {
  font-size: clamp(1.6rem, 2.8vw, 3rem);
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.08rem, 1.5vw, 1.34rem);
  color: var(--text-subtitle);
}

p {
  margin: 0;
  color: var(--text-muted);
}

.glass-card {
  background: linear-gradient(146deg, var(--surface-glass-strong), var(--surface-glass));
  border: none;
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px) saturate(138%);
}

.button {
  --button-bg: linear-gradient(130deg, rgba(255, 255, 255, 0.9), rgba(241, 252, 255, 0.9));
  --button-fg: #0f3558;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  background: var(--button-bg);
  color: var(--button-fg);
  padding: 0.8rem 1.38rem;
  min-height: 46px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 26px rgba(26, 90, 144, 0.2);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
  will-change: transform;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 16px 34px rgba(26, 90, 144, 0.25);
  filter: brightness(1.03);
}

.button:focus-visible {
  outline: 3px solid rgba(58, 198, 255, 0.28);
  outline-offset: 2px;
}

.button-primary {
  --button-bg: linear-gradient(120deg, var(--brand-cyan), var(--brand-indigo) 55%, var(--brand-purple));
  --button-fg: #f8fdff;
}

.button-secondary {
  --button-bg: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(242, 241, 255, 0.9));
  --button-fg: #1b4f7c;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  z-index: 140;
  background: linear-gradient(90deg, var(--brand-sky), var(--brand-cyan), var(--brand-purple), var(--brand-pink));
  box-shadow: 0 4px 12px rgba(0, 174, 255, 0.32);
}

.site-header {
  position: fixed;
  inset: 16px 0 auto;
  z-index: 120;
  transition: transform 280ms ease;
}

.header-inner {
  min-height: var(--header-height);
  border-radius: 999px;
  border: none;
  background: rgba(245, 253, 255, 0.4);
  backdrop-filter: blur(22px) saturate(165%);
  box-shadow: 0 14px 34px rgba(20, 78, 126, 0.16);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: min-height 260ms ease, background-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.site-header.scrolled .header-inner {
  min-height: 78px;
  background: rgba(245, 253, 255, 0.52);
  box-shadow: 0 18px 36px rgba(16, 74, 113, 0.2);
  transform: scale(0.985);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: fit-content;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 0;
  object-fit: contain;
  animation: logoFloat 6.5s ease-in-out infinite;
  filter: none;
}

.brand-text {
  display: inline-grid;
  line-height: 1.2;
}

.brand-text strong {
  font-family: 'Sora', 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  display: inline-block;
  font-size: 1.26rem;
  font-weight: 800;
  letter-spacing: 0.008em;
  background: linear-gradient(96deg, var(--brand-sky), var(--brand-cyan), var(--brand-purple), var(--brand-pink));
  background-size: 180% 180%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.28), 0 0 8px rgba(58, 198, 255, 0.2);
  animation: brandShift 10s ease-in-out infinite;
}

.brand-text span {
  font-size: 0.64rem;
  color: #587592;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav > a:not(.button) {
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  color: #27577b;
  font-weight: 600;
  font-size: 0.93rem;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav > a:not(.button):hover,
.site-nav > a:not(.button).is-active {
  background: rgba(255, 255, 255, 0.55);
  color: #0b3d64;
}

.site-nav .nav-cta {
  margin-left: 8px;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: none;
  background: rgba(248, 253, 255, 0.68);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(24, 87, 134, 0.16);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: #164f7a;
  border-radius: 2px;
}

main {
  padding-top: calc(var(--header-height) + 56px);
}

.hero {
  min-height: calc(100vh - 10px);
  display: flex;
  align-items: center;
  padding-top: clamp(26px, 7vh, 64px);
}

.hero.section {
  padding-top: clamp(14px, 2.4vw, 26px);
  padding-bottom: clamp(40px, 8vw, 82px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.hero-text {
  max-width: 66ch;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.hero-highlights li {
  position: relative;
  padding-left: 28px;
  color: #2a5f85;
  font-weight: 500;
}

.hero-highlights li::before {
  content: '';
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  left: 0;
  top: 0.5em;
  background: linear-gradient(140deg, #18c2ff, #5cffdd);
  box-shadow: 0 0 0 6px rgba(24, 194, 255, 0.14);
}

.hero-card {
  position: relative;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 3vw, 30px);
  border-radius: 30px;
  border: none;
}

.hero-art {
  position: relative;
  height: clamp(220px, 34vw, 360px);
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 26%, rgba(58, 198, 255, 0.36), rgba(58, 198, 255, 0) 58%),
    radial-gradient(circle at 80% 24%, rgba(146, 104, 255, 0.3), rgba(146, 104, 255, 0) 62%),
    radial-gradient(circle at 64% 80%, rgba(255, 109, 178, 0.24), rgba(255, 109, 178, 0) 62%),
    rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 8px 24px rgba(255, 255, 255, 0.42);
}

.mesh-glow,
.glass-shape,
.floating-card {
  position: absolute;
}

.mesh-glow {
  border-radius: 50%;
  filter: blur(10px);
  animation: meshPulse 11s ease-in-out infinite;
}

.mesh-a {
  width: 42%;
  height: 52%;
  left: 8%;
  top: 12%;
  background: radial-gradient(circle at center, rgba(24, 194, 255, 0.5), rgba(24, 194, 255, 0));
}

.mesh-b {
  width: 50%;
  height: 58%;
  right: 4%;
  bottom: 8%;
  background: radial-gradient(circle at center, rgba(148, 98, 255, 0.44), rgba(148, 98, 255, 0));
  animation-delay: 1.8s;
}

.glass-shape {
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.18));
  box-shadow: 0 12px 22px rgba(28, 89, 138, 0.16);
  backdrop-filter: blur(8px);
  animation: shapeFloat 9s ease-in-out infinite;
}

.shape-a {
  width: 32%;
  height: 30%;
  left: 14%;
  top: 24%;
  transform: rotate(-12deg);
}

.shape-b {
  width: 38%;
  height: 26%;
  right: 12%;
  top: 32%;
  transform: rotate(10deg);
  animation-delay: 1.2s;
}

.shape-c {
  width: 28%;
  height: 22%;
  right: 24%;
  bottom: 14%;
  transform: rotate(-8deg);
  animation-delay: 2s;
}

.floating-card {
  border-radius: 16px;
  background: linear-gradient(128deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.4));
  box-shadow: 0 16px 28px rgba(21, 79, 122, 0.2);
  backdrop-filter: blur(7px);
  animation: cardDrift 7.5s ease-in-out infinite;
}

.floating-card::before,
.floating-card::after {
  content: '';
  position: absolute;
  left: 14%;
  right: 14%;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(64, 180, 255, 0.38), rgba(150, 109, 255, 0.38));
}

.floating-card::before {
  top: 30%;
  height: 8px;
}

.floating-card::after {
  top: 52%;
  height: 8px;
  opacity: 0.72;
}

.card-a {
  width: 28%;
  height: 24%;
  left: 10%;
  bottom: 14%;
}

.card-b {
  width: 26%;
  height: 22%;
  right: 10%;
  top: 16%;
  animation-delay: 1.4s;
}

.hero-metrics {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero-metrics article {
  background: rgba(255, 255, 255, 0.56);
  border: none;
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: 0 10px 24px rgba(31, 94, 142, 0.13);
}

.hero-metrics strong {
  display: block;
  color: #194f79;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.hero-metrics span {
  font-size: 0.88rem;
  color: #446782;
}

.orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.orb-one {
  width: 220px;
  height: 220px;
  right: -56px;
  top: -44px;
  background: radial-gradient(circle at center, rgba(80, 215, 255, 0.58), rgba(80, 215, 255, 0));
  filter: blur(6px);
}

.orb-two {
  width: 190px;
  height: 190px;
  left: -64px;
  bottom: -64px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.steps-grid,
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.step-card,
.feature-card,
.faq-item,
.contact-card,
.cta-card {
  padding: clamp(18px, 2.3vw, 26px);
  transition: transform 260ms ease, box-shadow 260ms ease, background-color 260ms ease;
}

.step-card:hover,
.feature-card:hover,
.faq-item:hover,
.contact-card:hover,
.cta-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  background: linear-gradient(146deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.34));
}

.icon-badge {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(148deg, rgba(58, 198, 255, 0.22), rgba(255, 255, 255, 0.86));
  border: none;
  color: #0a6da6;
  box-shadow: 0 10px 20px rgba(35, 109, 163, 0.14);
}

.icon-badge svg {
  width: 24px;
  height: 24px;
  animation: iconWobble 5.5s ease-in-out infinite;
}

.step-card p,
.feature-card p,
.contact-card p {
  margin-top: 10px;
}

.faq-layout {
  display: grid;
  gap: 18px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: var(--radius-md);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: #1f5a87;
  padding-right: 28px;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  color: #2d7cb4;
  font-size: 1.2rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item p {
  margin-top: 10px;
}

.cta-section .cta-card {
  text-align: center;
  padding: clamp(26px, 4vw, 44px);
  display: grid;
  gap: 16px;
  justify-items: center;
}

.page-hero {
  padding-top: clamp(40px, 9vw, 86px);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-card {
  display: grid;
  gap: 14px;
  align-content: start;
}

.legal-main .page-hero {
  padding-bottom: 24px;
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-content h2 {
  font-size: clamp(1.16rem, 1.8vw, 1.52rem);
  margin-top: 6px;
}

.legal-content a {
  color: var(--link);
  font-weight: 700;
}

.site-footer {
  margin-top: clamp(40px, 6vw, 72px);
  border-top: none;
  background: rgba(241, 251, 255, 0.16);
  backdrop-filter: blur(5px);
  padding-top: 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 22px;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-copy {
  max-width: 52ch;
}

.site-footer h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.site-footer a {
  color: #1f567f;
}

.site-footer a:hover {
  color: #083c61;
}

.footer-bottom {
  margin-top: 24px;
  border-top: none;
  padding: 14px 0 20px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #466a86;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 14px;
  background: rgba(249, 253, 255, 0.74);
  backdrop-filter: blur(12px);
  color: #0c456e;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 200ms ease, transform 200ms ease;
  box-shadow: 0 12px 28px rgba(22, 84, 129, 0.16);
  z-index: 110;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal-delay {
  transition-delay: 110ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

.reveal-delay-3 {
  transition-delay: 260ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal,
.hero .reveal.is-visible,
.page-hero .reveal,
.page-hero .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes ambientGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes blobShiftA {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(3vw, 2.5vh, 0) scale(1.08);
  }
}

@keyframes blobShiftB {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-3.2vw, -2.8vh, 0) scale(1.07);
  }
}

@keyframes waveSweep {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.75;
  }
  100% {
    transform: translateY(-1.6vh) scale(1.02);
    opacity: 0.88;
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@keyframes brandShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes iconWobble {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-2px) rotate(2deg);
  }
}

@keyframes meshPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.78;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.56;
  }
}

@keyframes shapeFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-8deg);
  }
  50% {
    transform: translateY(-8px) rotate(-5deg);
  }
}

@keyframes cardDrift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@media (max-width: 1080px) {
  .header-inner {
    border-radius: 24px;
    min-height: 82px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(330px, calc(100vw - 34px));
    background: rgba(245, 252, 255, 0.82);
    border: none;
    border-radius: 22px;
    padding: 12px;
    box-shadow: 0 18px 34px rgba(22, 84, 128, 0.2);
    backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: stretch;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    margin-top: 6px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .hero-grid,
  .steps-grid,
  .features-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 82px;
  }

  .site-header {
    inset: 10px 0 auto;
  }

  .header-inner {
    padding: 8px 10px;
    min-height: 74px;
  }

  .site-header.scrolled .header-inner {
    min-height: 70px;
  }

  .brand img {
    width: 42px;
    height: 42px;
    border-radius: 0;
  }

  .brand-text strong {
    font-size: 1.06rem;
  }

  .brand-text span {
    font-size: 0.58rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section {
    padding: clamp(56px, 10vw, 80px) 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}
