:root {
  --bg: #000000;
  --bg-elevated: #0c0c0c;
  --surface: #141414;
  --surface-2: #181818;
  --text: #fafafa;
  --text-muted: #9ca3af;
  --text-subtle: #6b7280;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --radius: 18px;
  --radius-lg: 28px;
  --radius-btn: 999px;
  --shadow-card: 0 24px 48px rgba(0, 0, 0, 0.35);
  --header-h: 72px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --space-section-y: clamp(88px, 15vw, 160px);
  --space-heading-bottom: clamp(56px, 9vw, 88px);
  --gap-grid: clamp(20px, 3vw, 32px);
  --gap-buttons: 16px;
  --gap-stack: clamp(24px, 4vw, 36px);
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  background-image: radial-gradient(ellipse 120% 80% at 50% -40%, rgba(255, 255, 255, 0.04), transparent 50%);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

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

a {
  color: var(--text);
  text-decoration: none;
  transition: opacity 0.2s var(--ease);
}

a:hover {
  opacity: 0.75;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 48px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
  min-width: 0;
}

.logo-text {
  font-size: clamp(0.95rem, 2.8vw, 1.125rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(54vw, 300px);
}

.logo:hover {
  opacity: 0.8;
  color: var(--text);
}

@media (min-width: 480px) {
  .logo-text {
    max-width: none;
    overflow: visible;
    text-overflow: unset;
  }
}

.logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(145deg, #ffffff 0%, #a3a3a3 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 12px;
  color: var(--text);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  margin: 0 auto;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.site-header.nav-open .nav-toggle .nav-toggle-bar:first-child {
  transform: translateY(4px) rotate(45deg);
}

.site-header.nav-open .nav-toggle .nav-toggle-bar:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 14px;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-muted);
  border-radius: 12px;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  opacity: 1;
}

.site-nav .nav-cta {
  margin-left: 12px;
  padding: 10px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #e5e5e5 55%, #d4d4d4 100%);
  color: #0a0a0a;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), opacity 0.2s;
}

.site-nav .nav-cta:hover {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), inset 0 1px 0 #fff;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px clamp(24px, 5vw, 48px) 28px;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s var(--ease-out), opacity 0.25s var(--ease), visibility 0.25s;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav a {
    padding: 16px 14px;
    font-size: 1.0625rem;
    border-radius: var(--radius);
  }

  .site-nav .nav-cta {
    margin-left: 0;
    margin-top: 12px;
    text-align: center;
  }
}

.hero {
  position: relative;
  padding: clamp(64px, 12vw, 120px) 0 clamp(80px, 14vw, 140px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 45%);
  pointer-events: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  top: -35%;
  right: -25%;
  width: min(75vw, 640px);
  height: min(75vw, 640px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 68%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.35;
}

.hero-glow--1 {
  width: 320px;
  height: 320px;
  top: 5%;
  left: -10%;
  background: #404040;
}

.hero-glow--2 {
  width: 360px;
  height: 360px;
  bottom: -10%;
  right: 0;
  background: #262626;
  opacity: 0.2;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 92%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 92%);
  pointer-events: none;
}

.hero-split-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 400px);
  gap: clamp(48px, 8vw, 88px);
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin: 0 0 var(--gap-stack);
}

.hero-title {
  margin: 0 0 var(--gap-stack);
  font-size: clamp(2.5rem, 6.5vw, 4.25rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
  color: var(--text);
}

.hero-title-break {
  display: inline;
}

.hero-title-accent {
  background: linear-gradient(105deg, #ffffff 0%, #b3b3b3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-tagline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 var(--gap-stack);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
}

.hero-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text);
  opacity: 0.5;
}

.hero-subtitle {
  margin: 0 0 calc(var(--gap-stack) + 8px);
  font-size: clamp(1.125rem, 2vw, 1.3125rem);
  color: var(--text-muted);
  max-width: 36rem;
  line-height: 1.65;
  font-weight: 400;
}

.hero-highlight {
  color: var(--text);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-buttons);
}

.hero-device {
  justify-self: end;
  width: 100%;
  max-width: 400px;
}

.hero-device-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 14px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, var(--surface) 50%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.hero-device-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 6px);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.hero-device-caption {
  display: block;
  margin-top: 16px;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

@media (max-width: 900px) {
  .hero-split-inner {
    grid-template-columns: 1fr;
  }

  .hero-device {
    justify-self: center;
    max-width: 360px;
  }

  .hero-title-break {
    display: none;
  }
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), opacity 0.2s, background 0.25s;
}

.btn .btn-text {
  position: relative;
  z-index: 1;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.2) 45%, transparent 60%);
  transform: translateX(-100%) rotate(12deg);
  transition: transform 0.65s var(--ease-out);
  pointer-events: none;
}

.btn-primary:hover::after {
  transform: translateX(100%) rotate(12deg);
}

.btn:active {
  transform: scale(0.98);
  transition-duration: 0.12s;
}

.btn-primary {
  background: linear-gradient(180deg, #ffffff 0%, #ececec 45%, #d6d6d6 100%);
  color: #0a0a0a;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 #fff;
  opacity: 1;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
  box-shadow: none;
}

.btn-ghost::after {
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.08) 45%, transparent 60%);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.28);
  opacity: 1;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-outline-light:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.05);
  opacity: 1;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.0625rem;
}

.btn-on-dark::after {
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.35) 45%, transparent 60%);
}

.section {
  padding: var(--space-section-y) 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: var(--space-heading-bottom);
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 16px;
}

.section-title {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4vw, 2.875rem);
  font-weight: 600;
  letter-spacing: -0.038em;
  line-height: 1.1;
}

.section-lead {
  margin: 0;
  font-size: clamp(1.125rem, 2.1vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 400;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-grid);
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-card {
  background: var(--surface);
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: border-color 0.3s var(--ease), transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.about-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.about-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.1875rem, 2vw, 1.375rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.about-card p {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.62;
}

.usage {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.015) 50%, transparent 100%);
}

.usage-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-grid);
}

.usage-step {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(28px, 3vw, 36px) clamp(22px, 3vw, 28px);
  min-height: 100%;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: border-color 0.3s var(--ease), box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.usage-step:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.usage-step-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease-out);
}

.usage-step:hover .usage-step-icon {
  transform: scale(1.04);
}

.usage-icon-svg {
  width: 28px;
  height: 28px;
}

.usage-step-num {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-subtle);
  font-variant-numeric: tabular-nums;
}

.usage-step-body h3 {
  margin: 0 0 8px;
  font-size: clamp(1.0625rem, 1.8vw, 1.1875rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.usage-step-body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .usage-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .usage-steps {
    grid-template-columns: 1fr;
  }
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-grid);
}

.partner-card {
  position: relative;
  padding: clamp(32px, 4vw, 40px) clamp(26px, 3vw, 32px);
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s;
}

.partner-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: var(--border-strong);
}

.partner-card:hover::before {
  opacity: 1;
}

.partner-card-icon {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-subtle);
  margin-bottom: 16px;
}

.partner-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.1875rem, 2vw, 1.3125rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.partner-card p {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.62;
}

@media (max-width: 900px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-grid);
  align-items: stretch;
}

.gallery-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--border-strong);
}

.gallery-card--wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: stretch;
}

.gallery-card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
  border-bottom: 1px solid var(--border);
  transition: transform 0.55s var(--ease-out);
  background: var(--bg-elevated);
  overflow: hidden;
}

.gallery-media-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card:hover .gallery-card-media {
  transform: scale(1.02);
}

.gallery-card--wide .gallery-card-media {
  width: 46%;
  max-width: 480px;
  aspect-ratio: auto;
  min-height: 220px;
  border-bottom: none;
  border-right: 1px solid var(--border);
}

.gallery-card-media--wide {
  min-height: 240px;
}

.gallery-card-body {
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  background: var(--surface);
}

.gallery-card-title {
  margin: 0 0 10px;
  font-size: clamp(1.0625rem, 1.8vw, 1.1875rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.gallery-card-desc {
  margin: 0;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card--wide {
    flex-direction: column;
  }

  .gallery-card--wide .gallery-card-media {
    width: 100%;
    max-width: none;
    min-height: 220px;
    aspect-ratio: 16 / 9;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

.contact-card {
  max-width: 36rem;
  padding: clamp(32px, 5vw, 48px);
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 40px);
}

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.contact-list a {
  font-size: 1.1875rem;
  font-weight: 500;
  color: var(--text);
}

.contact-list a:hover {
  opacity: 0.7;
}

.contact-placeholder {
  font-size: 1.0625rem;
  color: var(--text-muted);
}

.contact-empty {
  display: block;
  min-height: 2.25rem;
  margin-top: 4px;
  border-radius: 8px;
  border: 1px dashed var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.contact-empty--address {
  min-height: 5rem;
}

.contact-empty--footer {
  min-height: 1.5rem;
  border-style: dashed;
  max-width: 16rem;
}

.cta-band {
  padding: clamp(64px, 11vw, 100px) 0;
  margin: 0 clamp(24px, 5vw, 48px) clamp(48px, 8vw, 72px);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #121212 0%, #050505 100%);
  color: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 85% 0%, rgba(255, 255, 255, 0.06), transparent 55%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 48px);
}

.cta-copy {
  max-width: 36rem;
}

.cta-title {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 3.5vw, 2.375rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.cta-text {
  margin: 0;
  opacity: 0.72;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-buttons);
  align-items: center;
}

.cta-band .btn-primary {
  background: linear-gradient(180deg, #ffffff 0%, #ebebeb 50%, #d9d9d9 100%);
  color: #0a0a0a;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35), inset 0 1px 0 #fff;
}

.cta-band .btn-primary:hover {
  filter: none;
  transform: translateY(-2px);
  opacity: 1;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

@media (max-width: 720px) {
  .cta-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  .cta-actions .btn {
    width: 100%;
  }
}

.site-footer {
  margin-top: 0;
  padding: clamp(64px, 10vw, 96px) 0 clamp(40px, 6vw, 56px);
  background: var(--bg);
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 8vw, 64px);
  padding-bottom: clamp(40px, 6vw, 52px);
  border-bottom: 1px solid var(--border);
}

.footer-col--brand {
  max-width: 28rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 1.1875rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

.footer-logo:hover {
  opacity: 0.8;
  color: var(--text);
}

.footer-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(145deg, #ffffff 0%, #737373 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.footer-mission {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.footer-heading {
  margin: 0 0 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact li {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-label {
  font-size: 0.75rem;
  color: var(--text-subtle);
}

.footer-contact a {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
}

.footer-contact a:hover {
  opacity: 0.75;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: clamp(32px, 5vw, 40px);
}

.footer-copyright {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-subtle);
}

.footer-back {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.footer-back:hover {
  color: var(--text);
  opacity: 1;
}

@media (max-width: 640px) {
  .footer-main {
    grid-template-columns: 1fr;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1s var(--ease-out),
    transform 1s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .btn,
  .btn:hover,
  .btn:active,
  .cta-band .btn-primary:hover {
    transform: none;
  }

  .btn::after {
    display: none;
  }

  .about-card:hover,
  .gallery-card:hover,
  .gallery-card:hover .gallery-card-media,
  .usage-step:hover,
  .usage-step:hover .usage-step-icon,
  .partner-card:hover,
  .site-nav .nav-cta:hover {
    transform: none;
  }
}
