:root {
  --bg: #0f1013;
  --bg-2: #151820;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f6f5f0;
  --muted: rgba(246, 245, 240, 0.72);
  --accent: #f09b64;
  --accent-soft: rgba(240, 155, 100, 0.14);
  --container: min(980px, calc(100vw - 88px));
  --content: min(720px, 100%);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

@font-face {
  font-family: "gottak";
  src: url("/assets/fonts/gottak-regular.woff2") format("woff2"),
       url("/assets/fonts/gottak-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "gottak";
  src: url("/assets/fonts/gottak-semibold.woff2") format("woff2"),
       url("/assets/fonts/gottak-semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: #0f1013;
  background-color: #0f1013;
  min-height: 100%;
}

html.is-ready [data-reveal] {
  transition:
    opacity 0.72s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.88s cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 0.72s cubic-bezier(0.22, 0.61, 0.36, 1);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100%;
  overflow-x: hidden;
  color: var(--text);
  font-family: "gottak", sans-serif;
  font-weight: 400;
  background-color: #0f1013;
  background:
    radial-gradient(circle at top, rgba(240, 155, 100, 0.1), transparent 28%),
    linear-gradient(180deg, #0d0f12 0%, #12141b 55%, #0f1013 100%);
}

body::after {
  content: none;
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 56px;
  mask-image: linear-gradient(180deg, transparent, black 20%, black 80%, transparent);
  opacity: 0.2;
}

a {
  color: inherit;
  font-weight: 400;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  left: 20px;
  top: 20px;
  z-index: 1001;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  color: #000;
}

.hero-fallback,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.site-header {
  position: fixed;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: var(--container);
  z-index: 1000;
  transition: top 0.35s ease, width 0.35s ease;
}

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

.site-nav,
.simple-card,
.form-panel,
.contact-page-grid .copy-stack,
.legal-card,
.site-footer {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.site-nav {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: 20px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(11, 13, 17, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.site-header.is-scrolled .site-nav {
  background: rgba(11, 13, 17, 0.54);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  justify-self: start;
}

.brand-name {
  font-family: "gottak", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-self: center;
}

.nav-toggle {
  display: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-weight: 400;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-links a {
  position: relative;
  padding: 6px 2px;
  border-radius: 0;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.18s ease;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: none;
  font-weight: 400;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: -4px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.08, 1);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  font-weight: 400;
  transition:
    border-color 0.24s ease,
    background 0.24s ease,
    transform 0.24s ease;
}

.header-cta__icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  flex: 0 0 auto;
}

.header-cta:hover {
  border-color: rgba(240, 155, 100, 0.36);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}

main {
  position: relative;
  z-index: 1;
  flex: 1 0 auto;
}

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

.hero-section,
.page-hero,
.legal-page {
  position: relative;
  isolation: isolate;
}

.hero-section::before,
.page-hero::before,
.legal-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 11, 15, 0.12), rgba(10, 11, 15, 0.78)),
    radial-gradient(circle at 50% 12%, rgba(240, 155, 100, 0.06), transparent 24%);
}

.hero-section {
  min-height: 100vh;
  padding: 150px 0 72px;
  display: grid;
  align-items: center;
}

.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(15, 16, 19, 0) 0%, rgba(15, 16, 19, 0.7) 58%, var(--bg) 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 54px;
  align-items: center;
}

.hero-layout--centered {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 0;
}

.hero-copy {
  max-width: 620px;
}

.hero-copy--centered {
  max-width: 640px;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
}

h1,
h2,
h3,
.button {
  font-weight: 400;
}

h1 {
  max-width: 11ch;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-inline: auto;
}

.lead,
.page-subtitle,
.body-copy,
.copy-stack p,
.simple-card p,
.form-note,
.legal-card p,
.legal-card li,
.footer-copy,
.footer-note {
  color: var(--muted);
  line-height: 1.72;
  font-weight: 400;
}

.lead {
  max-width: 30ch;
  margin-top: 18px;
  font-size: 1rem;
  margin-inline: auto;
  text-wrap: balance;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  justify-content: center;
}

.button-row--left {
  justify-content: flex-start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  transition:
    transform 0.28s cubic-bezier(0.2, 0.7, 0.08, 1),
    border-color 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #111;
  background: linear-gradient(135deg, var(--accent), #ffd5b9 75%);
  box-shadow: 0 14px 34px rgba(240, 155, 100, 0.18);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
}

.section {
  padding: 78px 0 104px;
}

.section-heading {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(1.85rem, 4vw, 3.2rem);
  line-height: 1.06;
}

.intro-shell,
.cta-shell,
.prose-shell {
  display: grid;
  justify-items: center;
  text-align: center;
}

.copy-stack {
  max-width: var(--content);
  display: grid;
  gap: 18px;
}

.copy-stack--narrow {
  max-width: 560px;
}

.contact-page-grid,
.presentation-slide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 54px;
  align-items: center;
}

.presentation-shell {
  display: grid;
  gap: 42px;
  counter-reset: presentation-step;
}

.section-presentation {
  padding-top: 56px;
}

.section-connect {
  padding-top: 68px;
  padding-bottom: 26px;
  background: var(--bg);
}

.connect-shell {
  max-width: 620px;
  display: grid;
  gap: 24px;
  justify-items: center;
  text-align: center;
}

.connect-copy {
  display: grid;
  gap: 16px;
}

.connect-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.08;
  font-weight: 400;
}

.connect-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.connect-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  min-width: 138px;
  padding: 0 18px;
  gap: 10px;
  border: 1px solid rgba(240, 155, 100, 0.22);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(240, 155, 100, 0.16), rgba(240, 155, 100, 0.08));
  color: rgba(255, 255, 255, 0.96);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  box-shadow: 0 14px 34px rgba(240, 155, 100, 0.1);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.connect-links a i {
  font-size: 0.92rem;
  color: #ffbe94;
}

.connect-links a:hover,
.connect-links a:focus-visible {
  color: var(--white);
  border-color: rgba(240, 155, 100, 0.34);
  background: linear-gradient(180deg, rgba(240, 155, 100, 0.22), rgba(240, 155, 100, 0.12));
  box-shadow: 0 18px 38px rgba(240, 155, 100, 0.14);
  transform: translateY(-1px);
}

.connect-cta {
  display: grid;
  gap: 18px;
  justify-items: center;
  padding-top: 8px;
}

.connect-cta__copy {
  max-width: 32rem;
  color: var(--muted);
  line-height: 1.72;
  font-weight: 400;
}

.connect-cta .button-row {
  margin-top: 0;
}

.section-presentation--page {
  padding-top: 18px;
}

.section-presentation {
  background: var(--bg);
}

.presentation-intro {
  max-width: 620px;
  margin: 0 auto 22px;
  text-align: center;
  display: grid;
  gap: 16px;
}

.presentation-intro h2,
.presentation-copy h2,
.presentation-copy h3 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.presentation-slide--reverse .presentation-copy {
  order: 2;
}

.presentation-slide--reverse .presentation-visual {
  order: 1;
}

.presentation-copy {
  max-width: 520px;
}

.presentation-slide {
  counter-increment: presentation-step;
}

.presentation-outro {
  display: grid;
  gap: 12px;
  justify-items: center;
  padding-top: 8px;
  text-align: center;
}

.presentation-outro__eyebrow {
  color: rgba(246, 245, 240, 0.42);
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
}

.presentation-outro__copy {
  color: rgba(246, 245, 240, 0.84);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.4;
  font-weight: 400;
}

.presentation-panel {
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.presentation-panel--media {
  padding: 14px;
}

.presentation-panel--stack,
.presentation-panel--brand {
  padding: 34px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 24px;
}

.presentation-panel--stack {
  align-content: stretch;
}

.presentation-image {
  display: block;
  max-width: 100%;
}

.presentation-image--wide {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  border-radius: 22px;
}

.presentation-image--icon {
  width: min(190px, 100%);
  border-radius: 42px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
}

.presentation-image--logo {
  width: min(280px, 100%);
}

.presentation-metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.presentation-diagram {
  width: min(100%, 440px);
  margin: 0 auto;
}

.presentation-diagram__svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.presentation-diagram__lines line {
  stroke: rgba(255, 255, 255, 0.24);
  stroke-width: 3;
  stroke-linecap: round;
}

.presentation-diagram__pill rect {
  fill: rgba(255, 255, 255, 0.04);
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 2;
}

.presentation-diagram__pill circle {
  fill: #b58cff;
}

.presentation-diagram__pill text,
.presentation-diagram__core text {
  fill: rgba(246, 245, 240, 0.94);
  font-family: "gottak", sans-serif;
}

.presentation-diagram__pill text {
  font-size: 28px;
  font-weight: 400;
  dominant-baseline: middle;
}

.presentation-diagram__core text {
  font-size: 34px;
  font-weight: 600;
}

.presentation-diagram__core rect {
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 2;
}

.presentation-metrics span,
.presentation-note {
  color: var(--muted);
}

.presentation-metrics span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.82rem;
  font-weight: 400;
}

.presentation-note {
  max-width: 28ch;
  text-align: center;
  font-weight: 400;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.simple-card,
.form-panel,
.contact-page-grid .copy-stack {
  border-radius: 26px;
  padding: 30px;
}

.simple-card {
  display: grid;
  gap: 14px;
  text-align: center;
  transition:
    transform 0.36s cubic-bezier(0.2, 0.7, 0.08, 1),
    border-color 0.28s ease,
    background 0.28s ease;
}

.simple-card:hover {
  transform: translateY(-7px);
  border-color: rgba(240, 155, 100, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.simple-card h3 {
  font-size: 1.18rem;
  line-height: 1.26;
  font-weight: 400;
}

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

.cta-shell {
  gap: 10px;
}

.cta-shell--contact {
  max-width: 700px;
}

.page-main {
  padding-top: 120px;
}

.page-hero {
  padding: 48px 0 36px;
}

.page-hero__inner {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
}

.page-hero--plain {
  padding: 164px 0 28px;
}

.page-hero--plain::before {
  content: none;
}

.contact-page {
  min-height: 100vh;
  padding: 0 0 96px;
}

.contact-intro {
  max-width: 760px;
}

.contact-intro__note {
  max-width: 36ch;
  color: var(--muted);
  line-height: 1.72;
  font-weight: 400;
}

.section-contact {
  padding-top: 54px;
}

.contact-shell {
  max-width: 720px;
  display: grid;
  gap: 22px;
  margin: 0 auto;
}

.contact-summary {
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
}

.contact-summary p {
  color: var(--muted);
  line-height: 1.72;
  font-weight: 400;
}

.contact-summary p:first-child {
  color: var(--text);
}

.page-title {
  max-width: 13ch;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.page-subtitle {
  max-width: 48ch;
}

.text-link,
.form-note a,
.legal-card a {
  color: var(--accent);
  text-decoration: none;
}

.form-panel {
  display: grid;
  gap: 18px;
  max-width: 720px;
  margin: 0 auto;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.form-grid label {
  display: grid;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 400;
}

.form-grid label.full {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  font-weight: 400;
  outline: none;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: rgba(246, 245, 240, 0.45);
}

.form-grid input:focus,
.form-grid textarea:focus {
  border-color: rgba(240, 155, 100, 0.52);
  box-shadow: 0 0 0 4px rgba(240, 155, 100, 0.12);
}

.submit-button {
  cursor: pointer;
}

.legal-page {
  min-height: 100vh;
  padding: 156px 0 96px;
  background: var(--bg);
}

.legal-page .hero-fallback {
  inset: 0 0 auto 0;
  height: 420px;
  object-position: center top;
  filter: saturate(0.92);
}

.legal-page::before {
  background:
    linear-gradient(180deg, rgba(10, 11, 15, 0.06) 0%, rgba(10, 11, 15, 0.24) 170px, rgba(15, 16, 19, 0.7) 310px, var(--bg) 420px),
    radial-gradient(circle at 50% 8%, rgba(240, 155, 100, 0.07), transparent 26%);
}

@media (min-width: 1200px) {
  .legal-page .hero-fallback {
    height: 520px;
    object-position: center 12%;
  }

  .legal-page::before {
    background:
      linear-gradient(180deg, rgba(10, 11, 15, 0.04) 0%, rgba(10, 11, 15, 0.18) 220px, rgba(15, 16, 19, 0.62) 390px, var(--bg) 520px),
      radial-gradient(circle at 50% 8%, rgba(240, 155, 100, 0.07), transparent 26%);
  }
}

.legal-card {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 52px);
  border-radius: 28px;
  text-align: left;
}

.legal-card h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 0.98;
  margin-bottom: 12px;
  margin-inline: 0;
}

.legal-card section + section {
  margin-top: 26px;
}

.legal-card h2 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  font-weight: 400;
}

.legal-list {
  list-style-position: outside;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.legal-card address {
  font-style: normal;
  line-height: 1.72;
  color: var(--muted);
}

.site-footer {
  width: 100%;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.005));
}

.site-footer__inner {
  padding: 36px 0 24px;
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

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

.footer-intro {
  max-width: 34rem;
}

.footer-kicker {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 400;
}

.footer-title {
  margin-bottom: 8px;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 400;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer-links a,
.footer-socials a {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 400;
  transition: color 180ms ease, opacity 180ms ease;
}

.footer-separator {
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.9rem;
  font-weight: 400;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  align-items: center;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: right;
}

[data-reveal] {
  opacity: 0;
  filter: blur(5px);
}

[data-reveal="fade-up"] {
  transform: translate3d(0, 22px, 0);
}

[data-reveal="fade-left"] {
  transform: translate3d(24px, 0, 0);
}

[data-reveal="fade-right"] {
  transform: translate3d(-24px, 0, 0);
}

[data-reveal="zoom"] {
  transform: translate3d(0, 18px, 0) scale(0.975);
}

[data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

[data-reveal-delay="1"] {
  transition-delay: 0.06s;
}

[data-reveal-delay="2"] {
  transition-delay: 0.12s;
}

[data-reveal-delay="3"] {
  transition-delay: 0.18s;
}

[data-reveal-delay="4"] {
  transition-delay: 0.24s;
}

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

  html.is-ready [data-reveal],
  [data-reveal] {
    transition: none;
    opacity: 1;
    filter: none;
    transform: none;
  }

  .button,
  .simple-card,
  .site-nav,
  .header-cta {
    transition: none;
  }
}

@media (max-width: 980px) {
  .hero-layout,
  .contact-page-grid,
  .card-grid,
  .presentation-slide {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: 100svh;
    padding: 140px 0 44px;
  }

  .page-hero--plain {
    padding: 150px 0 22px;
  }

  .legal-page .hero-fallback {
    height: 360px;
  }

  .hero-copy,
  .presentation-copy {
    max-width: 100%;
  }

  .presentation-slide--reverse .presentation-copy,
  .presentation-slide--reverse .presentation-visual {
    order: initial;
  }

  .button-row,
  .button-row--left {
    justify-content: center;
  }
}

@media (max-width: 820px) {
  .site-header {
    top: 16px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.08rem;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    display: none;
    width: min(300px, calc(100vw - 48px));
    flex-direction: column;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(15, 18, 27, 0.96);
    box-shadow: var(--shadow);
    gap: 4px;
  }

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

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    display: flex;
    justify-content: space-between;
    padding: 10px 16px;
  }

  .nav-center {
    margin-left: auto;
    justify-self: auto;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(980px, calc(100vw - 46px));
  }

  .section {
    padding: 70px 0 96px;
  }

  .hero-section {
    min-height: 100svh;
    padding: 132px 0 36px;
  }

  .hero-section::after {
    height: 140px;
  }

  .page-main {
    padding-top: 106px;
  }

  .section-connect {
    padding-top: 54px;
    padding-bottom: 14px;
  }

  .presentation-shell {
    gap: 26px;
  }

  .connect-links {
    gap: 10px;
  }

  .connect-cta {
    gap: 16px;
  }

  .presentation-slide {
    gap: 20px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
  }

  .presentation-slide::before {
    content: "0" counter(presentation-step);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.03);
  }

  .presentation-copy {
    display: grid;
    gap: 10px;
    text-align: center;
    justify-items: center;
  }

  .presentation-copy .eyebrow {
    margin-bottom: 0;
  }

  .presentation-panel {
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .presentation-panel--stack,
  .presentation-panel--brand,
  .presentation-panel--media {
    padding: 0;
  }

  .presentation-diagram {
    width: min(100%, 390px);
  }

  .presentation-image--wide {
    min-height: 220px;
    border-radius: 18px;
  }

  .simple-card,
  .form-panel,
  .contact-page-grid .copy-stack,
  .legal-card,
  .site-footer__inner {
    padding: 24px;
  }

  .button-row {
    width: 100%;
  }

  .button {
    width: 100%;
  }

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

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-socials,
  .footer-meta,
  .footer-links {
    justify-content: center;
  }

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

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

@media (max-width: 560px) {
  .connect-copy h2 {
    font-size: clamp(1.34rem, 6vw, 1.8rem);
  }

  .connect-links {
    display: flex;
    gap: 8px;
  }

  .connect-links a {
    min-width: 124px;
  }

  .connect-cta {
    width: 100%;
  }

  .page-hero--plain {
    padding: 138px 0 18px;
  }

  .section-contact {
    padding-top: 44px;
  }

  .legal-page .hero-fallback {
    height: 300px;
  }

  .contact-shell {
    gap: 18px;
  }

  .presentation-slide {
    padding: 18px;
    border-radius: 24px;
  }

  .presentation-slide::before {
    width: 38px;
    height: 38px;
    font-size: 0.72rem;
  }

  .presentation-diagram {
    width: 100%;
  }

  .presentation-image--wide {
    min-height: 190px;
  }
}

@media (max-width: 480px) {
  :root {
    --container: min(980px, calc(100vw - 34px));
  }

  h1 {
    font-size: clamp(2.3rem, 11vw, 3.9rem);
  }

  .page-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .site-nav {
    border-radius: 18px;
  }

  .simple-card,
  .form-panel,
  .contact-page-grid .copy-stack,
  .legal-card,
  .site-footer__inner {
    padding: 20px;
  }
}
