/* TankFlows — global digital commerce, shaped with color and motion. */
:root {
  --navy-950: #071522;
  --navy-900: #0b2034;
  --navy-800: #102a43;
  --navy-700: #173f61;
  --blue: #2c7be5;
  --gold: #f6c453;
  --gold-soft: #ffe6a0;
  --orange: #e86a33;
  --purple: #6b46c1;
  --cream: #fff9eb;
  --paper: #f8f2e4;
  --ink: #102a43;
  --muted: #597083;
  --line: rgba(16, 42, 67, 0.13);
  --white-line: rgba(255, 255, 255, 0.13);
  --shadow: 0 24px 70px rgba(4, 19, 32, 0.16);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  color: var(--navy-950);
  background: var(--gold);
  border-radius: 999px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.announcement {
  position: relative;
  z-index: 12;
  padding: 9px 20px;
  color: #fff4cf;
  background: var(--navy-950);
  border-bottom: 1px solid rgba(246, 196, 83, 0.24);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 38px;
  right: 0;
  left: 0;
}

.nav-shell {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 15px 0 22px;
  color: white;
  background: rgba(7, 21, 34, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  box-shadow: 0 18px 52px rgba(1, 9, 17, 0.22);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-size: 1.24rem;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  overflow: hidden;
  color: var(--navy-950);
  background:
    radial-gradient(circle at 28% 32%, #fff4c7 0 8%, transparent 9%),
    conic-gradient(from 210deg, var(--gold), var(--orange), var(--purple), var(--blue), var(--gold));
  border-radius: 50% 46% 52% 44%;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.38), 0 0 26px rgba(246, 196, 83, 0.3);
  transform: rotate(-8deg);
}

.brand-mark::after {
  width: 15px;
  height: 15px;
  content: "";
  border: 3px solid var(--navy-950);
  border-right-color: transparent;
  border-radius: 50%;
}

.brand small {
  display: block;
  margin-top: -3px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: 3px;
}

.nav-links a,
.nav-login {
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.nav-login:hover {
  color: white;
  background: rgba(255, 255, 255, 0.09);
}

.nav-login-disabled,
.nav-login-disabled:hover,
.nav-login-disabled:disabled {
  color: rgba(189, 199, 209, 0.38);
  background: transparent;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.72;
}

.nav-actions {
  gap: 9px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--white-line);
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  content: "";
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(4px);
}

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

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

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  color: white;
  background: var(--orange);
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 13px 30px rgba(232, 106, 51, 0.21);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  background: #f27842;
  box-shadow: 0 16px 38px rgba(232, 106, 51, 0.3);
  transform: translateY(-2px);
}

.btn-gold {
  color: var(--navy-950);
  background: var(--gold);
  box-shadow: 0 13px 34px rgba(246, 196, 83, 0.22);
}

.btn-gold:hover {
  background: #ffd66b;
}

.btn-outline {
  color: white;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.btn-dark {
  color: white;
  background: var(--navy-800);
  box-shadow: 0 13px 34px rgba(16, 42, 67, 0.18);
}

.btn-dark:hover {
  background: var(--navy-700);
}

.btn-sm {
  min-height: 42px;
  padding: 9px 17px;
  font-size: 0.8rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-800);
  font-weight: 850;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 78% 35%, rgba(107, 70, 193, 0.42), transparent 23%),
    radial-gradient(circle at 18% 30%, rgba(44, 123, 229, 0.24), transparent 27%),
    linear-gradient(142deg, var(--navy-950) 4%, var(--navy-800) 62%, #261b55 112%);
}

.hero::before,
.page-hero::before {
  position: absolute;
  inset: -20%;
  content: "";
  opacity: 0.68;
  background:
    repeating-radial-gradient(ellipse at 78% 18%, transparent 0 18px, rgba(246, 196, 83, 0.08) 20px 22px, transparent 24px 35px),
    repeating-radial-gradient(ellipse at 4% 70%, transparent 0 24px, rgba(44, 123, 229, 0.1) 26px 29px, transparent 31px 43px);
  transform: rotate(-7deg);
  pointer-events: none;
}

.hero::after,
.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.33;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.85) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(246, 196, 83, 0.8) 0 1px, transparent 1.5px);
  background-position: 0 0, 38px 46px;
  background-size: 88px 88px, 126px 126px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  pointer-events: none;
}

.hero .container,
.page-hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  min-height: 820px;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: 40px;
  padding-top: 145px;
  padding-bottom: 88px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--orange);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 10px;
}

.hero .eyebrow,
.page-hero .eyebrow,
.dark-section .eyebrow,
.cta-band .eyebrow {
  color: var(--gold);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 790px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6.6vw, 6.2rem);
  font-weight: 500;
  letter-spacing: -0.067em;
  line-height: 0.96;
}

.hero h1 em {
  color: var(--gold);
  font-weight: 500;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 1.07rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.trust-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.76rem;
  font-weight: 650;
}

.trust-dots {
  display: flex;
}

.trust-dots span {
  display: grid;
  width: 28px;
  height: 28px;
  margin-left: -6px;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold-soft);
  border: 2px solid var(--navy-800);
  border-radius: 50%;
  font-size: 0.58rem;
  font-weight: 900;
}

.trust-dots span:first-child {
  margin-left: 0;
  background: #b7def4;
}

.trust-dots span:last-child {
  background: #d8c8ff;
}

.hero-art {
  position: relative;
  min-height: 540px;
  perspective: 1000px;
}

.globe {
  position: absolute;
  top: 42px;
  right: 2%;
  width: min(450px, 100%);
  aspect-ratio: 1;
  overflow: hidden;
  background:
    repeating-radial-gradient(ellipse at center, transparent 0 46px, rgba(246, 196, 83, 0.17) 47px 49px, transparent 50px 74px),
    repeating-linear-gradient(92deg, transparent 0 38px, rgba(255, 255, 255, 0.1) 40px 42px, transparent 44px 64px),
    radial-gradient(circle at 34% 28%, rgba(246, 196, 83, 0.64), rgba(232, 106, 51, 0.2) 20%, rgba(44, 123, 229, 0.22) 48%, rgba(7, 21, 34, 0.66) 70%);
  border: 1px solid rgba(246, 196, 83, 0.36);
  border-radius: 48% 52% 46% 54%;
  box-shadow: 0 0 90px rgba(107, 70, 193, 0.25), inset -40px -30px 80px rgba(0, 0, 0, 0.36);
  transform: rotate(-6deg);
  animation: globe-float 8s ease-in-out infinite;
}

.globe::before,
.globe::after {
  position: absolute;
  content: "";
  border: 2px solid rgba(246, 196, 83, 0.32);
  border-radius: 50%;
}

.globe::before {
  inset: 10% 31%;
}

.globe::after {
  inset: 34% 2%;
}

.orbit {
  position: absolute;
  z-index: 1;
  top: 84px;
  right: -12px;
  width: 480px;
  height: 385px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  transform: rotate(27deg);
}

.orbit::after {
  position: absolute;
  top: 50%;
  left: -5px;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 22px var(--gold);
}

.phone {
  position: absolute;
  z-index: 4;
  right: 104px;
  bottom: 8px;
  width: 210px;
  height: 420px;
  padding: 12px;
  color: white;
  background: #07121d;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: 38px;
  box-shadow: 0 36px 76px rgba(0, 0, 0, 0.42);
  transform: rotate(5deg);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 42px 17px 20px;
  background:
    radial-gradient(circle at 80% 12%, rgba(246, 196, 83, 0.42), transparent 28%),
    linear-gradient(160deg, #163f63, #22184b 64%, #0b2034);
  border-radius: 28px;
}

.phone-screen::before {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 64px;
  height: 17px;
  content: "";
  background: #050b11;
  border-radius: 20px;
  transform: translateX(-50%);
}

.phone-screen small {
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phone-screen h3 {
  margin: 7px 0 22px;
  font-family: Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.05;
}

.signal-ring {
  display: grid;
  width: 105px;
  height: 105px;
  margin: 10px auto 28px;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold);
  border: 11px solid rgba(246, 196, 83, 0.19);
  outline: 1px solid rgba(246, 196, 83, 0.44);
  outline-offset: 11px;
  border-radius: 50%;
  font-size: 1.7rem;
  font-weight: 950;
}

.phone-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  font-size: 0.62rem;
  font-weight: 800;
}

.phone-stat b {
  color: white;
}

.float-card {
  position: absolute;
  z-index: 5;
  padding: 15px 17px;
  color: var(--navy-950);
  background: rgba(255, 249, 235, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  animation: card-float 6s ease-in-out infinite;
}

.float-card strong,
.float-card small {
  display: block;
}

.float-card strong {
  font-size: 0.8rem;
}

.float-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.62rem;
}

.float-card b {
  display: inline-grid;
  width: 30px;
  height: 30px;
  margin-bottom: 8px;
  place-items: center;
  color: white;
  background: var(--purple);
  border-radius: 9px;
  font-size: 0.64rem;
}

.card-one {
  top: 90px;
  left: -6px;
}

.card-two {
  right: -5px;
  bottom: 92px;
  animation-delay: -2.1s;
}

.card-two b {
  background: var(--orange);
}

@keyframes globe-float {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-10px); }
}

@keyframes card-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

.metrics {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: white;
}

.metric {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.metric:last-child {
  border: 0;
}

.metric b {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
}

.metric span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.4;
}

.section {
  padding: 112px 0;
}

.section-sm {
  padding: 78px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 50px;
}

.section-head > div {
  max-width: 710px;
}

.section h2,
.section-sm h2,
.cta-band h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4vw, 4.35rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-head p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.cream-section {
  position: relative;
  background:
    linear-gradient(rgba(255, 249, 235, 0.88), rgba(255, 249, 235, 0.88)),
    repeating-linear-gradient(100deg, transparent 0 24px, rgba(232, 106, 51, 0.05) 25px 27px, transparent 28px 46px);
}

.paper-section {
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.dark-section {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 8% 100%, rgba(44, 123, 229, 0.22), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(107, 70, 193, 0.34), transparent 32%),
    var(--navy-950);
}

.dark-section::after {
  position: absolute;
  right: -16%;
  bottom: -68%;
  width: 690px;
  height: 690px;
  content: "";
  border: 74px solid rgba(246, 196, 83, 0.06);
  border-radius: 48% 52% 47% 53%;
  transform: rotate(24deg);
}

.dark-section .container {
  position: relative;
  z-index: 2;
}

.dark-section .section-head p:not(.eyebrow),
.dark-section .muted {
  color: rgba(255, 255, 255, 0.63);
}

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

.product-card {
  position: relative;
  display: flex;
  min-height: 310px;
  grid-column: span 4;
  flex-direction: column;
  overflow: hidden;
  padding: 30px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 42, 67, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(16, 42, 67, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card:nth-child(4),
.product-card:nth-child(5) {
  grid-column: span 6;
}

.product-card::after {
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  content: "";
  background: radial-gradient(circle, rgba(246, 196, 83, 0.24), transparent 68%);
  border-radius: 50%;
}

.product-card:hover {
  border-color: rgba(232, 106, 51, 0.3);
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.product-icon,
.feature-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: white;
  background: var(--purple);
  border-radius: 17px 15px 20px 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
  font-weight: 950;
  letter-spacing: -0.04em;
  transform: rotate(-4deg);
}

.product-card:nth-child(2) .product-icon { background: var(--blue); }
.product-card:nth-child(3) .product-icon { background: var(--orange); }
.product-card:nth-child(4) .product-icon { color: var(--navy-950); background: var(--gold); }
.product-card:nth-child(5) .product-icon { background: var(--navy-700); }

.product-card h3 {
  margin: 24px 0 10px;
  font-family: Georgia, serif;
  font-size: 1.62rem;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.product-card p {
  max-width: 440px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-card .text-link {
  position: relative;
  z-index: 2;
  margin-top: auto;
  align-self: flex-start;
  font-size: 0.82rem;
}

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

.feature {
  padding: 27px 23px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--white-line);
  border-radius: 20px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  color: var(--navy-950);
  background: var(--gold);
  border-radius: 14px;
  font-size: 1.05rem;
}

.feature h3 {
  margin: 20px 0 8px;
  font-family: Georgia, serif;
  font-size: 1.28rem;
  font-weight: 500;
}

.feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.art-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background:
    repeating-radial-gradient(ellipse at 50% 42%, transparent 0 28px, rgba(246, 196, 83, 0.32) 30px 33px, transparent 35px 46px),
    radial-gradient(circle at 48% 44%, var(--gold) 0 8%, var(--orange) 9% 19%, var(--purple) 20% 41%, var(--navy-800) 42% 70%);
  border-radius: 45% 55% 48% 52% / 56% 44% 56% 44%;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.art-panel::before,
.art-panel::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.art-panel::before {
  inset: 16% 20%;
  border: 3px solid rgba(255, 255, 255, 0.36);
  box-shadow: 0 0 0 24px rgba(255, 255, 255, 0.05), 0 0 0 53px rgba(246, 196, 83, 0.06);
}

.art-panel::after {
  top: 18%;
  right: 24%;
  width: 19px;
  height: 19px;
  background: white;
  box-shadow: -134px 133px 0 var(--gold), 81px 188px 0 #c8b7ff, -87px 284px 0 #9ddaff;
}

.about-copy h2 {
  margin-bottom: 25px;
}

.about-copy > p:not(.eyebrow) {
  margin: 0 0 18px;
  color: var(--muted);
}

.principle-list {
  display: grid;
  gap: 12px;
  margin: 30px 0;
}

.principle {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 0.88rem;
  font-weight: 800;
}

.principle::before {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  color: white;
  background: var(--purple);
  border-radius: 50%;
  content: "✓";
  font-size: 0.72rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  counter-reset: steps;
}

.step {
  position: relative;
  padding: 0 46px 0 0;
  counter-increment: steps;
}

.step:not(:last-child)::after {
  position: absolute;
  top: 25px;
  right: 18px;
  width: 48px;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.2);
}

.step-num {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1.15rem;
}

.step-num::before {
  content: "0" counter(steps);
}

.step h3 {
  margin: 22px 0 8px;
  font-family: Georgia, serif;
  font-size: 1.42rem;
  font-weight: 500;
}

.step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}

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

.faq-item {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.faq-item summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 1.17rem;
  font-weight: 600;
  list-style: none;
}

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

.faq-item summary::after {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  color: white;
  background: var(--navy-800);
  border-radius: 50%;
  content: "+";
  font-family: Inter, sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "−";
  background: var(--orange);
}

.faq-answer {
  max-width: 780px;
  padding: 0 68px 24px 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-answer p {
  margin: 0;
}

.cta-wrap {
  padding: 0 0 112px;
  background: var(--cream);
}

.cta-band {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(45px, 7vw, 75px);
  color: white;
  background:
    radial-gradient(circle at 85% 30%, rgba(246, 196, 83, 0.24), transparent 26%),
    linear-gradient(122deg, var(--purple), var(--navy-800) 68%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.cta-band::after {
  position: absolute;
  right: -70px;
  bottom: -130px;
  width: 330px;
  height: 330px;
  content: "";
  border: 42px solid rgba(246, 196, 83, 0.11);
  border-radius: 50%;
}

.cta-band > * {
  position: relative;
  z-index: 2;
}

.cta-band h2 {
  max-width: 700px;
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.cta-band p:not(.eyebrow) {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.67);
}

.page-hero .container {
  display: flex;
  min-height: 515px;
  flex-direction: column;
  justify-content: end;
  padding-top: 180px;
  padding-bottom: 78px;
}

.page-hero h1 {
  max-width: 930px;
  font-size: clamp(3.2rem, 7vw, 6rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.03rem;
}

.breadcrumb {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.75rem;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
}

.category-showcase {
  display: grid;
  gap: 24px;
}

.category-row {
  display: grid;
  min-height: 310px;
  grid-template-columns: 0.78fr 1.22fr;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(16, 42, 67, 0.07);
}

.category-row:nth-child(even) {
  grid-template-columns: 1.22fr 0.78fr;
}

.category-row:nth-child(even) .category-visual {
  order: 2;
}

.category-visual {
  position: relative;
  display: grid;
  min-height: 290px;
  place-items: center;
  overflow: hidden;
  color: white;
  background:
    repeating-radial-gradient(ellipse at center, transparent 0 24px, rgba(255, 255, 255, 0.12) 26px 29px, transparent 31px 42px),
    linear-gradient(145deg, var(--purple), var(--navy-800));
}

.category-row:nth-child(2) .category-visual { background-color: var(--blue); background-image: repeating-radial-gradient(ellipse at center, transparent 0 24px, rgba(255,255,255,.13) 26px 28px, transparent 30px 44px), linear-gradient(145deg, var(--blue), var(--navy-800)); }
.category-row:nth-child(3) .category-visual { background-color: var(--orange); background-image: repeating-radial-gradient(ellipse at center, transparent 0 24px, rgba(255,255,255,.13) 26px 28px, transparent 30px 44px), linear-gradient(145deg, var(--orange), #74335c); }
.category-row:nth-child(4) .category-visual { color: var(--navy-950); background-color: var(--gold); background-image: repeating-radial-gradient(ellipse at center, transparent 0 24px, rgba(16,42,67,.1) 26px 28px, transparent 30px 44px), linear-gradient(145deg, var(--gold), var(--orange)); }
.category-row:nth-child(5) .category-visual { background-color: var(--navy-700); background-image: repeating-radial-gradient(ellipse at center, transparent 0 24px, rgba(255,255,255,.11) 26px 28px, transparent 30px 44px), linear-gradient(145deg, var(--navy-700), var(--purple)); }

.category-glyph {
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 35% 50% 38% 47%;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
  font-family: Georgia, serif;
  font-size: 2.1rem;
  transform: rotate(-7deg);
}

.category-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 70px);
}

.category-content .tag,
.tag {
  align-self: flex-start;
  padding: 6px 10px;
  color: var(--purple);
  background: rgba(107, 70, 193, 0.08);
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.category-content h2 {
  margin: 16px 0 12px;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.category-content p {
  margin: 0 0 23px;
  color: var(--muted);
}

.company-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
}

.company-card,
.value-card,
.contact-card,
.settings-card,
.legal-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(16, 42, 67, 0.06);
}

.company-card {
  padding: clamp(34px, 6vw, 64px);
}

.company-card h2 {
  margin-bottom: 24px;
}

.company-card p {
  color: var(--muted);
}

.brand-poster {
  position: relative;
  display: flex;
  min-height: 460px;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: 45px;
  color: white;
  background:
    repeating-radial-gradient(ellipse at 70% 20%, transparent 0 23px, rgba(246, 196, 83, 0.12) 25px 28px, transparent 30px 45px),
    linear-gradient(145deg, var(--navy-800), var(--purple));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.brand-poster::before {
  position: absolute;
  top: 46px;
  right: 50px;
  width: 180px;
  height: 180px;
  content: "";
  background: var(--gold);
  border: 28px solid rgba(255, 255, 255, 0.18);
  border-radius: 48% 52% 44% 56%;
  box-shadow: 0 0 0 26px rgba(232, 106, 51, 0.13);
}

.brand-poster > * {
  position: relative;
  z-index: 2;
}

.brand-poster small {
  color: var(--gold);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.brand-poster strong {
  max-width: 390px;
  margin-top: 10px;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

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

.value-card {
  padding: 30px;
}

.value-card .number {
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 1.05rem;
}

.value-card h3 {
  margin: 50px 0 9px;
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: 500;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
}

.contact-card {
  padding: clamp(30px, 5vw, 48px);
}

.contact-card-dark {
  color: white;
  background:
    radial-gradient(circle at 80% 18%, rgba(246, 196, 83, 0.2), transparent 25%),
    var(--navy-900);
}

.contact-card h2 {
  font-size: clamp(2rem, 3.5vw, 3.3rem);
}

.contact-card p {
  color: var(--muted);
}

.contact-card-dark p {
  color: rgba(255, 255, 255, 0.63);
}

.contact-detail {
  display: block;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-detail small,
.contact-detail strong {
  display: block;
}

.contact-detail small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail strong,
.contact-detail a {
  margin-top: 5px;
  color: white;
  font-size: 0.94rem;
  text-decoration: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field-label {
  color: var(--navy-800);
  font-size: 0.75rem;
  font-weight: 850;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(16, 42, 67, 0.16);
  border-radius: 12px;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.11);
}

.form-note,
.status-message {
  color: var(--muted);
  font-size: 0.76rem;
}

.status-message {
  display: none;
  margin-top: 16px;
  padding: 11px 13px;
  color: #22593c;
  background: #e5f7ec;
  border-radius: 10px;
  font-weight: 700;
}

.status-message.is-visible {
  display: block;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: start;
  gap: 34px;
}

.legal-toc {
  position: sticky;
  top: 24px;
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.legal-toc strong {
  display: block;
  margin-bottom: 13px;
  font-family: Georgia, serif;
  font-size: 1.05rem;
}

.legal-toc a {
  display: block;
  padding: 5px 0;
  color: var(--muted);
  font-size: 0.77rem;
  text-decoration: none;
}

.legal-toc a:hover {
  color: var(--orange);
}

.legal-card {
  padding: clamp(30px, 6vw, 70px);
}

.legal-card .updated {
  display: inline-block;
  margin-bottom: 34px;
  padding: 6px 11px;
  color: var(--purple);
  background: rgba(107, 70, 193, 0.08);
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 850;
}

.legal-card section + section {
  margin-top: 42px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.legal-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.legal-card h3 {
  margin: 24px 0 8px;
  font-family: Georgia, serif;
  font-size: 1.2rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-card li + li {
  margin-top: 8px;
}

.settings-card {
  padding: clamp(30px, 6vw, 58px);
}

.settings-card > p {
  color: var(--muted);
}

.cookie-option {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.cookie-option:last-of-type {
  border-bottom: 0;
}

.cookie-option h3 {
  margin: 0 0 5px;
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.cookie-option p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}

.switch input {
  width: 1px;
  height: 1px;
  opacity: 0;
}

.switch span {
  position: absolute;
  inset: 0;
  background: #c8d1d8;
  border-radius: 999px;
  cursor: pointer;
  transition: background 160ms ease;
}

.switch span::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  content: "";
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.18);
  transition: transform 160ms ease;
}

.switch input:checked + span {
  background: var(--purple);
}

.switch input:checked + span::after {
  transform: translateX(22px);
}

.switch input:disabled + span {
  cursor: not-allowed;
  opacity: 0.64;
}

.settings-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 30px;
}

.cookie-banner {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  display: none;
  width: min(calc(100% - 44px), 470px);
  padding: 24px;
  color: white;
  background: rgba(7, 21, 34, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 21px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.cookie-banner.is-visible {
  display: block;
  animation: banner-in 260ms ease both;
}

.cookie-banner strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.cookie-banner p {
  margin: 8px 0 18px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.78rem;
}

.cookie-banner p a {
  color: var(--gold);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@keyframes banner-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.site-footer {
  color: white;
  background: var(--navy-950);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr 1fr;
  gap: 50px;
  padding: 78px 0 55px;
}

.footer-brand p {
  max-width: 310px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
}

.footer-brand p .company-link,
.footer-bottom .company-link {
  color: rgba(255, 255, 255, 0.68);
  text-decoration-color: rgba(246, 196, 83, 0.38);
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.footer-brand p .company-link:hover,
.footer-bottom .company-link:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}


.footer-col h2 {
  margin: 0 0 17px;
  color: var(--gold);
  font-family: Inter, sans-serif;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  display: block;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.79rem;
  text-decoration: none;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 28px;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.7rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px;
  color: white;
  background:
    radial-gradient(circle at 50% 35%, rgba(107, 70, 193, 0.4), transparent 26%),
    var(--navy-950);
  text-align: center;
}

.not-found strong {
  display: block;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: clamp(5rem, 15vw, 11rem);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.not-found h1 {
  margin: 25px 0 10px;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 500;
}

.not-found p {
  max-width: 500px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 1020px) {
  .nav-toggle { display: grid; }
  .nav-menu {
    position: fixed;
    top: 126px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 18px;
    background: rgba(7, 21, 34, 0.98);
    border: 1px solid var(--white-line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .nav-menu.is-open { display: block; }
  .nav-links { align-items: stretch; flex-direction: column; }
  .nav-links a { padding: 13px 14px; }
  .nav-actions .nav-login { display: none; }
  .hero-grid { grid-template-columns: 1fr 0.86fr; }
  .hero h1 { font-size: clamp(3.2rem, 7.5vw, 5.2rem); }
  .phone { right: 34px; }
  .card-one { left: -22px; }
  .card-two { right: -18px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1.2fr 0.8fr 0.8fr; }
  .footer-col:last-child { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .section { padding: 86px 0; }
  .site-header { top: 39px; }
  .nav-shell { min-height: 66px; }
  .nav-actions .btn { display: none; }
  .hero-grid { display: block; min-height: auto; padding-top: 190px; }
  .hero-copy { position: relative; z-index: 7; }
  .hero-art { min-height: 500px; margin-top: 35px; }
  .globe { right: 50%; width: 420px; transform: translateX(50%) rotate(-6deg); }
  @keyframes globe-float {
    0%, 100% { transform: translateX(50%) rotate(-6deg) translateY(0); }
    50% { transform: translateX(50%) rotate(-4deg) translateY(-10px); }
  }
  .orbit { right: 50%; transform: translateX(50%) rotate(27deg); }
  .phone { right: 50%; width: 190px; height: 380px; transform: translateX(52%) rotate(5deg); }
  .card-one { left: 4%; }
  .card-two { right: 2%; }
  .metric { padding: 22px 16px; }
  .metric b { font-size: 1.55rem; }
  .product-card,
  .product-card:nth-child(4),
  .product-card:nth-child(5) { grid-column: span 6; }
  .product-card:last-child { grid-column: 1 / -1; }
  .split,
  .company-grid,
  .contact-layout { grid-template-columns: 1fr; }
  .art-panel { min-height: 400px; }
  .steps { gap: 32px; }
  .step { padding-right: 25px; }
  .step:not(:last-child)::after { display: none; }
  .category-row,
  .category-row:nth-child(even) { grid-template-columns: 0.7fr 1.3fr; }
  .category-row:nth-child(even) .category-visual { order: initial; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
}

@media (max-width: 620px) {
  .container,
  .narrow { width: min(calc(100% - 28px), var(--max)); }
  .announcement { padding-inline: 10px; font-size: 0.61rem; letter-spacing: 0.09em; }
  .site-header { top: 35px; }
  .nav-shell { padding: 0 11px 0 15px; border-radius: 17px; }
  .brand { font-size: 1.08rem; }
  .brand small { display: none; }
  .brand-mark { width: 34px; height: 34px; }
  .nav-menu { top: 111px; right: 14px; left: 14px; }
  .hero-grid { padding-top: 160px; padding-bottom: 60px; }
  .hero h1 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
  .hero-copy > p:not(.eyebrow) { font-size: 0.96rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .trust-note { align-items: flex-start; flex-direction: column; }
  .hero-art { min-height: 430px; }
  .globe { width: 350px; }
  .orbit { top: 86px; width: 360px; height: 295px; }
  .phone { right: 50%; bottom: -5px; width: 168px; height: 340px; }
  .phone-screen { padding-inline: 13px; }
  .phone-screen h3 { font-size: 1.35rem; }
  .signal-ring { width: 82px; height: 82px; font-size: 1.25rem; }
  .float-card { padding: 12px; }
  .card-one { top: 42px; left: 0; }
  .card-two { right: 0; bottom: 38px; }
  .metric-grid { grid-template-columns: 1fr; padding: 10px 0; }
  .metric { padding: 14px 8px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .metric:last-child { border-bottom: 0; }
  .section-head { align-items: flex-start; flex-direction: column; margin-bottom: 36px; }
  .section h2,
  .section-sm h2 { font-size: clamp(2.1rem, 11vw, 3.1rem); }
  .product-grid { display: grid; grid-template-columns: 1fr; }
  .product-card,
  .product-card:nth-child(4),
  .product-card:nth-child(5),
  .product-card:last-child { min-height: 280px; grid-column: auto; }
  .feature-grid { grid-template-columns: 1fr; }
  .art-panel { min-height: 340px; }
  .steps { grid-template-columns: 1fr; }
  .step { padding: 0; }
  .cta-wrap { padding-bottom: 86px; }
  .cta-band { align-items: flex-start; flex-direction: column; padding: 38px 25px; border-radius: 25px; }
  .page-hero .container { min-height: 450px; padding-top: 155px; padding-bottom: 58px; }
  .page-hero h1 { font-size: clamp(2.8rem, 14vw, 4rem); }
  .category-row,
  .category-row:nth-child(even) { grid-template-columns: 1fr; }
  .category-visual { min-height: 210px; }
  .category-content { padding: 30px 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card h3 { margin-top: 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .legal-card { padding: 30px 22px; }
  .legal-toc { display: none; }
  .cookie-option { align-items: start; }
  .settings-actions { align-items: stretch; flex-direction: column; }
  .cookie-banner { right: 12px; bottom: 12px; width: calc(100% - 24px); padding: 20px; }
  .cookie-actions .btn { flex: 1; padding-inline: 12px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px 24px; padding-top: 60px; }
  .footer-brand,
  .footer-col:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
