:root {
  --brand-green: #98bf3c;
  --brand-blue: #419ed6;
  --brand-dark: #040707;
  --brand-dark-soft: #0a1113;
  --ink: #eaf6ff;
  --ink-strong: #ffffff;
  --text: #d7e5ed;
  --text-dark: #b5c8d1;
  --copy: #dcecf3;
  --surface: rgba(10, 17, 19, 0.72);
  --surface-strong: rgba(7, 12, 14, 0.88);
  --surface-light: rgba(255, 255, 255, 0.06);
  --surface-border: rgba(255, 255, 255, 0.12);
  --surface-border-strong: rgba(255, 255, 255, 0.18);
  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 18px 44px rgba(0, 0, 0, 0.22);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1220px, calc(100% - 32px));
  --transition: 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --glow-green: 0 0 0 1px rgba(152, 191, 60, 0.24), 0 16px 48px rgba(152, 191, 60, 0.12);
  --glow-blue: 0 0 0 1px rgba(65, 158, 214, 0.24), 0 16px 48px rgba(65, 158, 214, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behaviour: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 15%, rgba(65, 158, 214, 0.18), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(152, 191, 60, 0.18), transparent 26%),
    radial-gradient(circle at 50% 90%, rgba(65, 158, 214, 0.12), transparent 24%),
    linear-gradient(180deg, #040707 0%, #081014 48%, #060b0d 100%);
  color: var(--copy);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: clip;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.45;
  z-index: 0;
  animation: drift 18s ease-in-out infinite alternate;
}

body::before {
  width: 26rem;
  height: 26rem;
  left: -8rem;
  top: 15vh;
  background: rgba(65, 158, 214, 0.22);
}

body::after {
  width: 30rem;
  height: 30rem;
  right: -10rem;
  top: 55vh;
  background: rgba(152, 191, 60, 0.18);
  animation-duration: 24s;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-chrome {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 32%, transparent 82%);
  opacity: 0.2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(65, 158, 214, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #d8eefb;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  box-shadow: var(--glow-blue);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0 0;
  transition: transform var(--transition), padding var(--transition);
}

.site-header.is-scrolled {
  padding-top: 10px;
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(12, 20, 23, 0.86), rgba(6, 11, 13, 0.8)) padding-box,
    linear-gradient(135deg, rgba(65, 158, 214, 0.34), rgba(152, 191, 60, 0.32)) border-box;
  border: 1px solid transparent;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

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

.site-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.site-nav a,
.footer-links a {
  position: relative;
  text-decoration: none;
}

.site-nav a {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 600;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.site-nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-green));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--surface-border);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: white;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background:
    linear-gradient(135deg, #4ea9df 0%, #98bf3c 100%) padding-box,
    linear-gradient(135deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.05)) border-box;
  color: #041013;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(65, 158, 214, 0.22);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.button::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.45) 38%, transparent 58%);
  transform: translateX(-130%);
  transition: transform 700ms ease;
  z-index: -1;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(65, 158, 214, 0.3);
  filter: saturate(1.05);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(130%);
}

.button-ghost,
.button-light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)) padding-box,
    linear-gradient(135deg, rgba(65, 158, 214, 0.35), rgba(152, 191, 60, 0.28)) border-box;
  border: 1px solid transparent;
  color: var(--ink-strong);
  box-shadow: none;
}

.button-light {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.84)) padding-box,
    linear-gradient(135deg, rgba(65, 158, 214, 0.24), rgba(152, 191, 60, 0.32)) border-box;
  color: #041013;
}

.hero-section {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: end;
  overflow: clip;
  padding: 38px 0 76px;
}

.hero-media,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: kenburns 24s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(105deg, rgba(4, 7, 7, 0.92) 0%, rgba(4, 7, 7, 0.7) 44%, rgba(4, 7, 7, 0.42) 72%, rgba(4, 7, 7, 0.65) 100%),
    linear-gradient(180deg, rgba(4, 7, 7, 0.24), rgba(4, 7, 7, 0.84));
}

.hero-grid {
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(180deg, transparent, black 20%, black 85%, transparent);
  opacity: 0.22;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(34px);
  opacity: 0.42;
  animation: float 12s ease-in-out infinite;
}

.hero-orb-one {
  width: 20rem;
  height: 20rem;
  right: 8%;
  top: 14%;
  background: rgba(65, 158, 214, 0.35);
}

.hero-orb-two {
  width: 16rem;
  height: 16rem;
  left: 10%;
  bottom: 12%;
  background: rgba(152, 191, 60, 0.26);
  animation-duration: 14s;
}

.hero-orb-three {
  width: 11rem;
  height: 11rem;
  left: 48%;
  top: 18%;
  background: rgba(255, 255, 255, 0.12);
  animation-duration: 10s;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 430px);
  gap: 28px;
  align-items: end;
}

.hero-copy,
.floating-card,
.feature-card,
.service-card,
.trust-panel,
.cta-panel,
.faq-list details,
.footer-layout {
  position: relative;
}

.hero-copy {
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05)) padding-box,
    linear-gradient(135deg, rgba(65, 158, 214, 0.26), rgba(255, 255, 255, 0.08), rgba(152, 191, 60, 0.24)) border-box;
  border: 1px solid transparent;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
}

.hero-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.9rem, 5vw, 5.5rem);
  line-height: 0.96;
  color: var(--ink-strong);
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.hero-intro {
  margin-bottom: 0;
  max-width: 60ch;
  color: var(--copy);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 22px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  backdrop-filter: blur(10px);
}

.hero-stack {
  display: grid;
  gap: 16px;
  align-self: stretch;
}

.hero-card-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.floating-card {
  --pointer-x: 50%;
  --pointer-y: 50%;
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(11, 18, 21, 0.86), rgba(8, 13, 15, 0.9));
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.floating-card::after,
.feature-card::after,
.service-card::after,
.trust-panel::after,
.cta-panel::after,
.faq-list details::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(65, 158, 214, 0.35), rgba(255, 255, 255, 0), rgba(152, 191, 60, 0.35));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0.7;
}

.floating-card:hover,
.floating-card:focus-within,
.feature-card:hover,
.service-card:hover,
.trust-panel:hover,
.faq-list details:hover {
  transform: translateY(-6px);
  border-color: var(--surface-border-strong);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
}

.floating-card-main {
  min-height: 240px;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  align-items: center;
}

.floating-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.floating-card-icon img {
  width: 100%;
  max-width: 120px;
  filter: drop-shadow(0 14px 28px rgba(65, 158, 214, 0.16));
}

.card-kicker {
  margin-bottom: 6px;
  color: #abd5ef;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
}

.floating-card h2,
.service-card h2 {
  color: var(--ink-strong);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.floating-card p:last-child,
.feature-card p,
.service-card p,
.trust-panel strong,
.cta-panel p,
.faq-list p,
.section-copy p,
.footer-brand p,
.footer-bottom p,
.service-area-list {
  color: var(--text-dark);
}

.mini-card-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  opacity: 0.75;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 28px;
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.cta-panel h2 {
  margin: 16px 0 0;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.04;
  color: var(--ink-strong);
}

.trust-panel {
  padding: 20px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(11, 18, 21, 0.86), rgba(8, 13, 15, 0.92));
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 14px;
}

.trust-panel article {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-label {
  display: inline-flex;
  margin-bottom: 8px;
  color: #d8eefb;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.cta-section {
  padding-top: 0;
}

.cta-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 32px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(152, 191, 60, 0.16), transparent 34%),
    radial-gradient(circle at bottom left, rgba(65, 158, 214, 0.16), transparent 40%),
    linear-gradient(180deg, rgba(12, 19, 22, 0.9), rgba(7, 12, 14, 0.94));
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.08) 38%, transparent 62%);
  transform: translateX(-120%);
  animation: sweep 9s linear infinite;
  pointer-events: none;
}

.section-heading {
  max-width: 72ch;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin-bottom: 14px;
}

.feature-grid,
.services-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.service-card,
.faq-list details,
.footer-layout {
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(11, 18, 21, 0.82), rgba(8, 13, 15, 0.92));
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.feature-card h3 {
  color: var(--ink-strong);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

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

.service-card:last-child {
  grid-column: 1 / -1;
}

.service-card {
  min-height: 100%;
}

.service-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin-bottom: 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)) padding-box,
    linear-gradient(135deg, rgba(65, 158, 214, 0.28), rgba(152, 191, 60, 0.3)) border-box;
  border: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-icon-wrap img {
  width: 54px;
  height: 54px;
}

.service-icon-text {
  color: var(--ink-strong);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}

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

.faq-list details {
  overflow: hidden;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.faq-list summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  color: var(--ink-strong);
  font-weight: 800;
  padding-right: 34px;
}

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

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-green));
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition);
}

.faq-list summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-list summary::before {
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  opacity: 0;
  transform: translateY(-50%) rotate(0deg);
}

.faq-list details p {
  margin: 14px 0 0;
}

.site-footer {
  padding: 0 0 42px;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 0.8fr));
  gap: 24px;
  align-items: start;
}

.footer-brand img {
  width: 170px;
  margin-bottom: 16px;
}

.footer-links h2 {
  margin-bottom: 14px;
  color: var(--ink-strong);
  font-size: 1.1rem;
}

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

.footer-links a {
  width: fit-content;
  color: var(--text-dark);
}

.service-area-block {
  margin-top: 18px;
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-area-label {
  margin-bottom: 8px;
  color: var(--ink-strong);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.footer-bottom {
  padding-top: 20px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(40px, -24px, 0) scale(1.08);
  }
}

@keyframes float {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -18px, 0) scale(1.04);
  }
}

@keyframes kenburns {
  0% {
    transform: scale(1.08) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.16) translate3d(-1.2%, -0.8%, 0);
  }
}

@keyframes sweep {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@media (max-width: 1120px) {
  .hero-layout,
  .split-layout,
  .faq-layout,
  .footer-layout {
    grid-template-columns: 1fr;
  }

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

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

  .hero-copy h1 {
    max-width: 14ch;
  }
}

@media (max-width: 920px) {
  .site-header {
    padding-top: 10px;
  }

  .header-shell {
    grid-template-columns: auto auto;
    border-radius: 26px;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav,
  .header-actions {
    grid-column: 1 / -1;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    padding-top: 8px;
  }

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

  .site-nav a {
    width: 100%;
    text-align: left;
  }

  .header-actions {
    display: flex;
    flex-wrap: wrap;
    padding-top: 6px;
  }

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

  .hero-card-row,
  .feature-grid,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(1220px, calc(100% - 24px));
  }

  .header-shell,
  .hero-copy,
  .floating-card,
  .feature-card,
  .service-card,
  .faq-list details,
  .footer-layout,
  .cta-panel,
  .trust-panel {
    border-radius: 20px;
  }

  .button {
    width: 100%;
  }

  .header-actions {
    width: 100%;
  }

  .header-actions .button {
    flex: 1 1 100%;
  }

  .hero-copy {
    padding: 24px;
  }

  .hero-copy h1,
  .section-copy h2,
  .section-heading h2,
  .cta-panel h2 {
    font-size: clamp(2rem, 11vw, 3.25rem);
  }

  .hero-actions,
  .hero-tags {
    flex-direction: column;
  }

  .floating-card-main {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 1ms !important;
    transition-delay: 0ms !important;
    scroll-behaviour: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
