:root {
  color-scheme: dark;
  --navy-950: #030817;
  --navy-900: #06112a;
  --navy-850: #07193d;
  --blue-700: #094ddb;
  --blue-500: #18a8ff;
  --cyan-300: #70e7ff;
  --gold-600: #d58a08;
  --gold-500: #f6ae1b;
  --gold-300: #ffe082;
  --orange-500: #ff7a2f;
  --white: #ffffff;
  --text: #eef7ff;
  --muted: #abc4e4;
  --line: rgba(130, 201, 255, 0.22);
  --panel: rgba(8, 24, 58, 0.76);
  --panel-strong: rgba(12, 35, 80, 0.92);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
  --glow: 0 0 30px rgba(24, 168, 255, 0.28);
  --radius: 8px;
  --container: min(1160px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 14% 8%, rgba(24, 168, 255, 0.2), transparent 26rem),
    radial-gradient(circle at 82% 4%, rgba(246, 174, 27, 0.14), transparent 24rem),
    linear-gradient(180deg, var(--navy-950) 0%, #071738 46%, #030817 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 224, 130, 0.45) 0 1px, transparent 1px),
    radial-gradient(circle, rgba(112, 231, 255, 0.25) 0 1px, transparent 1px);
  background-position: 0 0, 28px 36px;
  background-size: 96px 96px, 132px 132px;
  opacity: 0.35;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 35%, rgba(24, 168, 255, 0.08) 35% 36%, transparent 36% 100%),
    linear-gradient(55deg, transparent 0 64%, rgba(255, 224, 130, 0.07) 64% 65%, transparent 65% 100%);
  opacity: 0.75;
}

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

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

button,
a,
input,
textarea,
select {
  outline-offset: 4px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--gold-300);
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-130%);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: var(--gold-300);
  color: #1c1302;
  font-weight: 800;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(112, 231, 255, 0.18);
  background: rgba(3, 8, 23, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: var(--container);
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 2px solid rgba(255, 224, 130, 0.95);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 26%, #fff6b7 0 9%, #ffc744 10% 34%, #d58a08 68%, #7a4500 100%);
  box-shadow: 0 0 24px rgba(246, 174, 27, 0.34), inset 0 -8px 12px rgba(90, 42, 0, 0.3);
}

.brand-mark::before {
  content: "";
  width: 18px;
  height: 28px;
  background: linear-gradient(160deg, #fff9c9 0%, #ffe36e 36%, #f49a00 100%);
  clip-path: polygon(48% 0, 100% 0, 62% 42%, 88% 42%, 28% 100%, 42% 55%, 12% 55%);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-name {
  font-size: 1.08rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-subtitle {
  color: var(--cyan-300);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -7px;
}

.nav-toggle-lines::after {
  top: 7px;
}

.primary-nav {
  position: absolute;
  inset: 72px 16px auto 16px;
  display: none;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 15, 36, 0.98);
  box-shadow: var(--shadow);
}

.primary-nav.is-open {
  display: grid;
}

.primary-nav a {
  padding: 0.72rem 0.8rem;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  background: rgba(24, 168, 255, 0.14);
  color: var(--white);
}

.main {
  overflow: hidden;
}

.section {
  position: relative;
  padding: clamp(64px, 9vw, 118px) 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.hero {
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: center;
  padding: clamp(32px, 5vw, 64px) 0 clamp(56px, 7vw, 90px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.38rem 0.7rem;
  border: 1px solid rgba(255, 224, 130, 0.32);
  border-radius: 999px;
  background: rgba(246, 174, 27, 0.12);
  color: var(--gold-300);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan-300);
  box-shadow: 0 0 14px var(--blue-500);
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 1rem;
  font-size: clamp(2.75rem, 15vw, 4.8rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.title-line {
  display: block;
}

.gold-text {
  background: linear-gradient(180deg, #fff8c7 0%, #ffd35a 34%, #f19705 72%, #b86a02 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 34px rgba(246, 174, 27, 0.2);
}

.lead {
  max-width: 58ch;
  margin-bottom: 1.4rem;
  color: #d8e9ff;
  font-size: clamp(1.03rem, 2vw, 1.18rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff1a8 0%, #ffc13b 46%, #ed8e09 100%);
  color: #160d02;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 16px 30px rgba(246, 174, 27, 0.24), inset 0 2px 0 rgba(255, 255, 255, 0.64);
  cursor: pointer;
}

.button:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button-secondary {
  border: 1px solid rgba(112, 231, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  box-shadow: none;
}

.button-small {
  min-height: 42px;
  padding: 0.68rem 0.9rem;
  font-size: 0.88rem;
}

.hero-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.hero-visual {
  position: relative;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 4% -4% -3% 6%;
  z-index: -1;
  border-radius: 24px;
  background: radial-gradient(circle, rgba(24, 168, 255, 0.34), transparent 62%);
  filter: blur(14px);
}

.creative-frame {
  margin: 0;
  border: 1px solid rgba(112, 231, 255, 0.28);
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 224, 130, 0.2), transparent 26%),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow), var(--glow);
}

.creative-frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

.creative-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--navy-950);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}

.stat {
  min-width: 0;
  padding: 0.85rem;
  border: 1px solid rgba(112, 231, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(4, 16, 42, 0.72);
}

.stat strong {
  display: block;
  color: var(--gold-300);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.section-header {
  max-width: 720px;
  margin-bottom: clamp(24px, 4vw, 40px);
}

.section-kicker {
  margin-bottom: 0.55rem;
  color: var(--cyan-300);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 0.5rem;
  font-size: 1.18rem;
  line-height: 1.22;
}

.section-lead {
  color: var(--muted);
  font-size: 1.04rem;
}

.about-grid {
  display: grid;
  gap: 1rem;
}

.glass-panel,
.feature-card,
.step-card,
.demo-panel,
.legal-panel,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    var(--panel);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.about-copy {
  padding: clamp(1.1rem, 3vw, 1.7rem);
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-list {
  display: grid;
  gap: 0.8rem;
  padding: clamp(1rem, 3vw, 1.35rem);
}

.about-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: center;
  padding: 0.85rem;
  border-radius: var(--radius);
  background: rgba(6, 17, 42, 0.72);
}

.about-item strong {
  display: block;
}

.about-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.mini-medal {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 26%, #fff6b7 0 12%, #ffc13b 13% 52%, #b96a02 100%);
  color: #211100;
  font-weight: 950;
  box-shadow: 0 0 18px rgba(246, 174, 27, 0.26);
}

.feature-grid {
  display: grid;
  gap: 1rem;
}

.feature-card {
  min-height: 220px;
  padding: 1.2rem;
}

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

.feature-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1.2rem;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 224, 130, 0.24), rgba(246, 174, 27, 0.05)),
    rgba(24, 168, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 224, 130, 0.18), 0 0 22px rgba(24, 168, 255, 0.14);
}

.feature-icon::before,
.feature-icon::after {
  content: "";
  display: block;
}

.icon-bolt::before {
  width: 22px;
  height: 34px;
  background: linear-gradient(160deg, #fff9c9, #ffc13b 44%, #f07b17);
  clip-path: polygon(48% 0, 100% 0, 62% 42%, 88% 42%, 28% 100%, 42% 55%, 12% 55%);
  filter: drop-shadow(0 0 8px rgba(255, 224, 130, 0.6));
}

.icon-color::before {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 32%, #70e7ff 0 16%, transparent 17%),
    radial-gradient(circle at 68% 36%, #ff7a2f 0 17%, transparent 18%),
    radial-gradient(circle at 45% 70%, #ffe082 0 18%, transparent 19%),
    #184aa8;
}

.icon-control::before {
  width: 30px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f7fbff, #6bdcff);
  box-shadow: -15px 12px 0 -7px #ffc13b, 15px 12px 0 -7px #ff7a2f;
}

.icon-challenge::before {
  width: 32px;
  height: 32px;
  border: 3px solid #ffc13b;
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px rgba(24, 168, 255, 0.7), 0 0 16px rgba(24, 168, 255, 0.4);
}

.steps-grid {
  display: grid;
  gap: 1rem;
  counter-reset: steps;
}

.step-card {
  position: relative;
  min-height: 210px;
  padding: 1.2rem;
  overflow: hidden;
}

.step-card::before {
  counter-increment: steps;
  content: counter(steps);
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 24%, #fff9c9 0 12%, #ffc13b 13% 54%, #ad6100 100%);
  color: #1e1000;
  font-weight: 950;
  box-shadow: 0 0 24px rgba(246, 174, 27, 0.28);
}

.step-card::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 110px;
  height: 110px;
  border: 18px solid rgba(24, 168, 255, 0.12);
  border-radius: 50%;
}

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

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

.demo-panel {
  display: grid;
  gap: 1.4rem;
  padding: clamp(1rem, 4vw, 1.6rem);
}

.demo-copy p {
  color: var(--muted);
}

.demo-board {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(24, 168, 255, 0.18), transparent 58%),
    rgba(3, 8, 23, 0.66);
}

.meter {
  position: relative;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(112, 231, 255, 0.18), rgba(255, 224, 130, 0.36), rgba(112, 231, 255, 0.18));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.meter::before {
  content: "";
  position: absolute;
  top: -6px;
  bottom: -6px;
  left: 50%;
  width: 54px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 224, 130, 0.34);
  box-shadow: 0 0 22px rgba(255, 224, 130, 0.42);
}

.meter-marker {
  position: absolute;
  top: -5px;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, #fff9c9 0 10%, #ffc13b 11% 55%, #ad6100 100%);
  box-shadow: 0 0 18px rgba(246, 174, 27, 0.45);
  animation: meter-sweep 1.8s ease-in-out infinite alternate;
}

@keyframes meter-sweep {
  from {
    left: 0;
  }

  to {
    left: calc(100% - 28px);
  }
}

.score-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.score-box {
  min-height: 82px;
  padding: 0.75rem;
  border: 1px solid rgba(112, 231, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.score-label {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.score-value {
  display: block;
  color: var(--gold-300);
  font-size: 2rem;
  font-weight: 950;
  line-height: 1.1;
}

.demo-message {
  min-height: 3.2em;
  margin: 0;
  color: #d8e9ff;
}

.cta-band {
  padding: clamp(56px, 8vw, 96px) 0;
  background:
    linear-gradient(135deg, rgba(9, 77, 219, 0.22), rgba(246, 174, 27, 0.09)),
    rgba(3, 8, 23, 0.54);
}

.cta-panel {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: clamp(1.2rem, 4vw, 2rem);
  border: 1px solid rgba(255, 224, 130, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 224, 130, 0.18), transparent 20rem),
    rgba(7, 25, 61, 0.82);
  box-shadow: var(--shadow);
}

.cta-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid rgba(112, 231, 255, 0.18);
  background: rgba(3, 8, 23, 0.88);
}

.footer-grid {
  width: var(--container);
  margin: 0 auto;
  padding: 32px 0;
  display: grid;
  gap: 1.2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-links a {
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.footer-links a:hover {
  background: rgba(24, 168, 255, 0.12);
  color: var(--white);
}

.footer-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.page-hero {
  padding: clamp(48px, 8vw, 86px) 0 clamp(26px, 5vw, 48px);
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 8vw, 4.2rem);
  line-height: 0.98;
}

.page-hero p {
  max-width: 740px;
  color: var(--muted);
}

.legal-layout,
.contact-layout {
  display: grid;
  gap: 1rem;
  padding-bottom: clamp(64px, 8vw, 108px);
}

.legal-panel,
.contact-card {
  padding: clamp(1rem, 3vw, 1.55rem);
}

.legal-panel h2 {
  margin-top: 1.4rem;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.legal-panel h2:first-child {
  margin-top: 0;
}

.legal-panel p,
.legal-panel li,
.contact-card p {
  color: var(--muted);
}

.legal-panel ul,
.legal-panel ol {
  padding-left: 1.2rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

th,
td {
  padding: 0.8rem;
  border-bottom: 1px solid rgba(112, 231, 255, 0.14);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--gold-300);
}

tr:last-child td {
  border-bottom: 0;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.field-grid {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.38rem;
}

.field label {
  font-weight: 850;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(112, 231, 255, 0.28);
  border-radius: var(--radius);
  padding: 0.78rem 0.86rem;
  background: rgba(2, 9, 24, 0.72);
  color: var(--white);
}

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

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: #ff9f6b;
  box-shadow: 0 0 0 3px rgba(255, 122, 47, 0.14);
}

.field-error {
  min-height: 1.3em;
  color: #ffbf9b;
  font-size: 0.86rem;
}

.checkbox-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  color: var(--muted);
}

.checkbox-field input {
  width: 20px;
  height: 20px;
  margin-top: 0.15rem;
  accent-color: var(--gold-500);
}

.form-status {
  min-height: 1.5em;
  color: var(--gold-300);
  font-weight: 800;
}

.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 80;
  max-width: 760px;
  margin: 0 auto;
  padding: 1rem;
  border: 1px solid rgba(255, 224, 130, 0.28);
  border-radius: var(--radius);
  background: rgba(3, 8, 23, 0.96);
  box-shadow: var(--shadow);
}

.cookie-banner[hidden],
.cookie-settings[hidden] {
  display: none;
}

.cookie-banner p {
  margin-bottom: 0.8rem;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.cookie-settings {
  margin-top: 0.9rem;
  padding: 0.85rem;
  border: 1px solid rgba(112, 231, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.cookie-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  margin-bottom: 0.8rem;
}

.cookie-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold-500);
}

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

@media (min-width: 640px) {
  .feature-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .cta-panel {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 820px) {
  .nav-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.15rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .primary-nav a {
    padding: 0.55rem 0.7rem;
    font-size: 0.92rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    row-gap: 1rem;
  }

  .hero-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-visual {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .hero-meta {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
  }

  .about-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  }

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

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

  .demo-panel {
    grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  }

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

  .contact-layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  }
}

@media (min-width: 1180px) {
  .primary-nav a {
    padding-inline: 0.85rem;
  }
}

@media (max-width: 430px) {
  :root {
    --container: min(100% - 24px, 1160px);
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .brand-subtitle {
    font-size: 0.68rem;
  }

  .hero-stats,
  .score-row {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .cta-actions,
  .cookie-actions {
    align-items: stretch;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }
}
