/* Palette and image treatment follow orange-solar-space-landing-page (onyx scale).
   Motion follows the Claorova site (src/lib/motion.ts): expo settle, 28px rise,
   6px hover pop, 100ms stagger, 35ms word stagger, pixel-fill buttons. */
:root {
  --onyx: #0f0f0f;
  --surface: #1a1a1a;
  --elevated: #242424;
  --border: #2e2e2e;
  --text: #faf7f2;
  --text-2: #a8a29e;
  --muted: #6e6a66;
  --tan: #c9a670;
  --wrap: 1200px;
  --gutter: 24px;
  --ease-expo: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-quick: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-snap: cubic-bezier(0.34, 1.3, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--onyx);
}

body {
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

body.is-locked {
  overflow: hidden;
}

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

a {
  color: var(--tan);
  text-decoration: none;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-weight: 800;
  color: var(--text);
  text-wrap: balance;
}

h2 {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h3 {
  font-weight: 700;
}

h3 {
  font-size: 19px;
  line-height: 1.3;
}

p {
  margin: 0;
  color: var(--text-2);
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Section label: "/ LABEL", scrambles in (Claorova SectionLabel) */
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
}

.label__slash {
  color: var(--tan);
}

.label--lg {
  font-size: clamp(14px, 1.3vw, 16px);
  letter-spacing: 0.12em;
  gap: 10px;
  margin-bottom: 22px;
}

/* Word reveal (Claorova WordReveal) */
.words .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

.words .w > span {
  display: inline-block;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 600ms var(--ease-expo), opacity 600ms var(--ease-expo);
  transition-delay: calc(var(--i, 0) * 35ms);
}

.words.is-visible .w > span {
  transform: none;
  opacity: 1;
}

/* Reveal (Claorova Reveal: 28px rise, expo settle) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 850ms var(--ease-expo), transform 850ms var(--ease-expo);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger (Claorova StaggerGrid: 18px, 100ms stagger, 60ms delay) */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 850ms var(--ease-expo), transform 850ms var(--ease-expo);
  transition-delay: calc(60ms + var(--i, 0) * 100ms);
}

[data-stagger].is-visible > * {
  opacity: 1;
  transform: none;
}

/* Pixel buttons (Claorova PixelButton) */
.px-btn {
  --fg: var(--onyx);
  --bg: var(--tan);
  --bd: var(--tan);
  --pixel: var(--onyx);
  --hover-fg: var(--tan);
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid var(--bd);
  background: var(--bg);
  color: var(--fg);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
  transition: color 220ms ease;
}

.px-btn::after {
  content: "\2192";
  position: relative;
  z-index: 1;
  font-size: 16px;
  transition: transform 240ms var(--ease-quick);
}

.px-btn__label {
  position: relative;
  z-index: 1;
  transition: transform 140ms var(--ease-quick);
}

.px-btn:hover {
  color: var(--hover-fg);
}

.px-btn:hover::after {
  transform: translateX(3px);
}

.px-btn:active .px-btn__label,
.px-btn:active::after {
  transform: scale(0.96);
}

.px-btn__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(4, 1fr);
  pointer-events: none;
}

.px-btn__grid i {
  margin: -0.5px;
  border-radius: 2px;
  background: var(--pixel);
  transform: scale(0);
  opacity: 0;
  transition: transform 220ms var(--ease-quick), opacity 220ms var(--ease-quick);
}

.px-btn:hover .px-btn__grid i,
.px-btn:focus-visible .px-btn__grid i {
  transform: scale(1);
  opacity: 1;
  transition-delay: var(--d);
}

.px-btn--invert {
  --fg: var(--text);
  --bg: transparent;
  --bd: rgba(250, 247, 242, 0.4);
  --pixel: var(--text);
  --hover-fg: var(--onyx);
}

.px-btn--full {
  width: 100%;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--onyx);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

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

.brand__word {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text);
}

.nav-desktop {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 44px;
}

.nav-link {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  padding: 4px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: var(--tan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 500ms var(--ease-expo);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.magnetic {
  transition: transform 350ms var(--ease-expo);
}

.header__cta .px-btn {
  padding: 12px 22px;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  transition: border-color 200ms ease;
}

.menu-toggle:hover {
  border-color: var(--tan);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
}

/* Mobile drawer */
.drawer-scrim {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(15, 15, 15, 0.7);
  opacity: 0;
  transition: opacity 300ms ease;
}

.drawer-scrim.is-open {
  opacity: 1;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  width: min(86vw, 380px);
  display: flex;
  flex-direction: column;
  background: var(--onyx);
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 450ms var(--ease-expo), visibility 0s linear 450ms;
}

.drawer.is-open {
  transform: none;
  visibility: visible;
  transition: transform 450ms var(--ease-expo), visibility 0s;
}

.drawer__head {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid var(--border);
}

.drawer__close {
  position: relative;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.drawer__close:hover {
  background: var(--surface);
}

.drawer__close span {
  position: absolute;
  left: 11px;
  top: 19px;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transform: rotate(45deg);
}

.drawer__close span + span {
  transform: rotate(-45deg);
}

.drawer__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.drawer__nav a {
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background 200ms ease, color 200ms ease;
}

.drawer__nav a:hover {
  background: var(--surface);
  color: var(--tan);
}

.drawer__foot {
  padding: 20px;
  border-top: 1px solid var(--border);
}

/* Hero (Orange Solar Space treatment) */
.hero {
  position: relative;
  min-height: min(calc(100vh - 97px), 820px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--onyx);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(15, 15, 15, 0.9) 0%, rgba(15, 15, 15, 0.65) 55%, rgba(15, 15, 15, 0.45) 100%);
}

.hero__content {
  position: relative;
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 96px var(--gutter) clamp(64px, 9vw, 112px);
}

.hero h1 {
  max-width: 14ch;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.hero p {
  max-width: 46ch;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.45;
  margin-bottom: 34px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Inner page hero */
.page-hero {
  position: relative;
  min-height: clamp(420px, 62vh, 600px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--onyx);
  border-bottom: 1px solid var(--border);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(15, 15, 15, 0.92) 0%, rgba(15, 15, 15, 0.7) 60%, rgba(15, 15, 15, 0.5) 100%);
}

.page-hero__content {
  position: relative;
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 96px var(--gutter) clamp(56px, 8vw, 96px);
}

.page-hero h1 {
  max-width: 18ch;
  font-size: clamp(38px, 5.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.page-hero p {
  max-width: 52ch;
  font-size: clamp(17px, 1.5vw, 19px);
}

/* Sections */
.section {
  padding: clamp(72px, 10vw, 120px) 0;
  border-top: 1px solid var(--border);
}

.section--first {
  padding-top: clamp(64px, 8vw, 104px);
  border-top: none;
}

.section--tight {
  padding-top: 0;
  border-top: none;
}

.section__lead {
  margin-top: 16px;
  font-size: 18px;
  max-width: 56ch;
}

.section__head.section__head--row {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section--surface {
  background: var(--surface);
}

.section__head {
  margin-bottom: clamp(40px, 6vw, 56px);
  max-width: 680px;
}

.section__foot {
  margin-top: 40px;
}

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

.who {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  transition: border-color 300ms ease;
}

.who:hover {
  border-top-color: var(--tan);
}

.who h3 {
  margin-bottom: 10px;
}

.who p {
  font-size: 16px;
}

.icon {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--tan);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 18px;
}

/* Motion cards (Claorova MotionCard + siteVariants) */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card__inner {
  position: relative;
  height: 100%;
  padding: 32px 28px 28px;
  background: var(--onyx);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 400ms var(--ease-snap), border-color 300ms ease;
}

.card__inner:hover {
  transform: translateY(-6px);
  border-color: #3a3a3a;
}

.card__inner:active {
  transform: translateY(-6px) scale(0.97);
  transition-duration: 180ms;
}

.card__rule {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: var(--tan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 550ms var(--ease-expo) 150ms;
}

.is-visible .card__rule {
  transform: scaleX(0.14);
}

.card__inner:hover .card__rule {
  transform: scaleX(1);
  transition-delay: 0ms;
}

.card__index {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--tan);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 700ms var(--ease-expo), transform 700ms var(--ease-expo);
}

.is-visible .card__index {
  opacity: 1;
  transform: none;
}

.card__inner:hover .card__index {
  transform: scale(1.08);
  transition: transform 300ms var(--ease-snap);
}

.card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.card p {
  margin-bottom: 28px;
}

.card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.card__arrow {
  display: inline-block;
  color: var(--tan);
  transition: transform 300ms var(--ease-snap);
}

.card__inner:hover .card__arrow {
  transform: translateX(6px);
}

.card__link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.split--reverse .split__media {
  order: 2;
}

.split__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--elevated);
}

.split__media--portrait {
  aspect-ratio: 4 / 5;
  max-width: 440px;
  width: 100%;
  justify-self: center;
}

.split__media video,
.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--ease-expo);
}

.split__media:hover img,
.split__media:hover video {
  transform: scale(1.03);
}

.split h2 {
  margin-bottom: 28px;
}

.prose {
  display: grid;
  gap: 14px;
  font-size: 18px;
}

.list-title {
  margin: 32px 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.tick-list,
.link-list,
.proof-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tick-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  color: var(--text);
}

.tick-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--tan);
  border-radius: 50%;
  flex-shrink: 0;
}

.proof-list li {
  display: flex;
  gap: 20px;
  align-items: baseline;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  font-size: 18px;
  color: var(--text);
}

.proof-list li:last-child {
  border-bottom: 1px solid var(--border);
}

.proof-list span,
.steps__num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--tan);
}

.other-services {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  align-items: start;
}

.link-list li {
  border-top: 1px solid var(--border);
}

.link-list li:last-child {
  border-bottom: 1px solid var(--border);
}

.link-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  transition: color 300ms ease, padding 400ms var(--ease-expo);
}

.link-list a span {
  display: block;
  width: 12px;
  height: 1.5px;
  background: var(--muted);
  transition: width 300ms ease, background 300ms ease;
}

.link-list a:hover {
  color: var(--tan);
  padding-left: 6px;
}

.link-list a:hover span {
  width: 24px;
  background: var(--tan);
}

/* Band */
.band {
  position: relative;
  min-height: clamp(360px, 48vw, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--onyx);
}

.band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.band__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.45);
}

.band__line {
  position: relative;
  max-width: 18ch;
  padding: 0 var(--gutter);
  text-align: center;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--text);
}

/* Founders */
.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.founder {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 400ms var(--ease-snap), border-color 300ms ease;
}

.founder:hover {
  border-color: #3a3a3a;
}

.founder__photo {
  aspect-ratio: 4 / 3.4;
  overflow: hidden;
  background: var(--elevated);
}

.founder__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 1200ms var(--ease-expo);
}

.founder:hover .founder__photo img {
  transform: scale(1.03);
}

.founder__photo--mark {
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder__photo--mark img {
  width: 34%;
  height: auto;
  object-fit: contain;
}

.founder__body {
  padding: 28px;
  display: grid;
  gap: 10px;
}

.founder__role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tan);
}

.founder h3 {
  font-size: 26px;
  letter-spacing: -0.01em;
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.steps--four {
  grid-template-columns: repeat(4, 1fr);
}

.steps li {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  transition: border-color 300ms ease;
}

.steps li:hover {
  border-top-color: var(--tan);
}

.steps__num {
  display: block;
  font-size: 28px;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.steps h3 {
  margin-bottom: 10px;
}

.steps p {
  font-size: 16px;
}

/* FAQ */
.faq {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  align-items: start;
}

.faq__list {
  border-bottom: 1px solid var(--border);
}

.faq__item {
  border-top: 1px solid var(--border);
}

.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  transition: color 200ms ease;
}

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

.faq__item summary:hover {
  color: var(--tan);
}

.faq__icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 2px;
  background: var(--tan);
  transition: transform 300ms var(--ease-expo);
}

.faq__icon::after {
  transform: rotate(90deg);
}

.faq__item[open] .faq__icon::after {
  transform: rotate(0deg);
}

.faq__item p {
  max-width: 64ch;
  padding-bottom: 24px;
}

/* CTA (Orange Solar Space treatment) */
.cta {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background: var(--onyx);
}

.cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(15, 15, 15, 0.55) 0%, rgba(15, 15, 15, 0.25) 70%);
}

.cta h2,
.cta p {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}

.cta p {
  color: var(--text);
  font-size: 18px;
  margin-bottom: 28px;
}

.cta__inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(88px, 12vw, 150px) var(--gutter);
  text-align: center;
}

.cta h2 {
  margin-bottom: 16px;
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact__title {
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.contact__note {
  max-width: 36ch;
  font-size: 18px;
}

.form {
  display: grid;
  gap: 18px;
}

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

.form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px;
  color-scheme: dark;
  transition: border-color 200ms ease;
}

.form input:hover,
.form select:hover,
.form textarea:hover {
  border-color: var(--muted);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--tan);
  outline: none;
}

.form textarea {
  resize: vertical;
}

.form button {
  justify-self: start;
}

.form__status {
  min-height: 1.5em;
  font-size: 15px;
  color: var(--tan);
}

/* Footer (Claorova structure) */
.footer {
  background: var(--onyx);
  border-top: 1px solid var(--border);
}

.footer__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 72px var(--gutter) 40px;
}

.footer__rule {
  position: relative;
  height: 1px;
  background: var(--border);
  margin-bottom: 48px;
}

.footer__rule span {
  position: absolute;
  left: 0;
  top: 0;
  height: 1.5px;
  width: 100%;
  background: var(--tan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1400ms var(--ease-expo);
}

.footer__rule.is-visible span {
  transform: scaleX(1);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr 1fr 1.2fr;
  gap: 40px;
}

.footer__brand img {
  width: 132px;
  height: auto;
  margin-bottom: 18px;
}

.footer__brand p {
  max-width: 34ch;
  font-size: 15px;
}

.footer__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 16px;
}

.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer__col a:not(.px-btn) {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--text-2);
  transition: color 300ms ease;
}

.footer__col a:not(.px-btn) span {
  display: block;
  width: 12px;
  height: 1px;
  background: var(--muted);
  transition: width 300ms ease, background 300ms ease;
}

.footer__col a:not(.px-btn):hover {
  color: var(--tan);
}

.footer__col a:not(.px-btn):hover span {
  width: 20px;
  background: var(--tan);
}

.footer__bottom {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 20px;
  font-size: 13px;
  color: var(--muted);
}

.footer__bottom p,
.footer__bottom a {
  color: var(--muted);
}

.footer__bottom a {
  transition: color 200ms ease;
}

.footer__bottom a:hover {
  color: var(--tan);
}

.mobile-cta {
  display: none;
}

/* Legal placeholder pages */
.page-simple {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px var(--gutter);
}

.page-simple h1 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.page-simple p {
  margin-bottom: 32px;
}

/* ------------------------------------------------------------------
   Content blocks (Tesla / OpenAI style: image-led, clean, rounded)
   ------------------------------------------------------------------ */

/* Service cards with images */
.card__inner {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.card__media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--elevated);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--ease-expo);
}

.card__inner:hover .card__media img {
  transform: scale(1.05);
}

.card__body {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 28px 30px;
}

.card__body .card__index {
  margin-bottom: 18px;
}

.card__body p {
  flex: 1;
}

/* Audience slideshow */
.slider__stage {
  position: relative;
  aspect-ratio: 16 / 7.5;
  border-radius: 8px;
  overflow: hidden;
  background: var(--elevated);
  touch-action: pan-y;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 700ms var(--ease-quick), visibility 0s linear 700ms;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 700ms var(--ease-quick), visibility 0s;
}

.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.07);
  transition: transform 3800ms linear;
}

.slide.is-active img {
  transform: scale(1);
}

.slide__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(15, 15, 15, 0.92) 0%, rgba(15, 15, 15, 0.55) 38%, rgba(15, 15, 15, 0) 68%),
    linear-gradient(90deg, rgba(15, 15, 15, 0.55) 0%, rgba(15, 15, 15, 0) 55%);
}

.slide__content {
  position: absolute;
  left: clamp(24px, 5vw, 64px);
  bottom: clamp(28px, 5vw, 64px);
  max-width: 540px;
  display: grid;
  gap: 12px;
  justify-items: start;
}

.slide__content > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms var(--ease-expo), transform 500ms var(--ease-expo);
}

.slide.is-active .slide__content > * {
  opacity: 1;
  transform: none;
}

.slide.is-active .slide__content > :nth-child(2) { transition-delay: 80ms; }
.slide.is-active .slide__content > :nth-child(3) { transition-delay: 160ms; }
.slide.is-active .slide__content > :nth-child(4) { transition-delay: 240ms; }

.slide__index {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--tan);
}

.slide h3 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.08;
}

.slide p {
  color: var(--text);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.45;
  margin-bottom: 8px;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.5);
}

.slide h3 {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.slider__tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.slider__tab {
  display: grid;
  gap: 12px;
  padding: 4px 0;
  border: none;
  background: none;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.slider__tab-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-2);
  transition: color 300ms ease;
}

.slider__tab:hover .slider__tab-name,
.slider__tab.is-active .slider__tab-name {
  color: var(--text);
}

.slider__bar {
  position: relative;
  height: 3px;
  background: var(--border);
  overflow: hidden;
  border-radius: 2px;
}

.slider__bar span {
  position: absolute;
  inset: 0;
  background: var(--tan);
  transform: scaleX(0);
  transform-origin: left;
}

.slider__tab.is-done .slider__bar span {
  transform: scaleX(1);
}

.slider__tab.is-active .slider__bar span {
  animation: slider-progress var(--dur, 6500ms) linear forwards;
}

.slider.is-paused .slider__tab.is-active .slider__bar span {
  animation-play-state: paused;
}

@keyframes slider-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.slider__arrows {
  display: flex;
  gap: 10px;
}

.slider__arrow {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  transition: border-color 250ms ease, background 250ms ease, color 250ms ease, transform 300ms var(--ease-snap);
}

.slider__arrow:hover {
  border-color: var(--tan);
  color: var(--tan);
  transform: translateY(-2px);
}

.slider__arrow:active {
  transform: scale(0.95);
}

/* Process diagram */
.process {
  position: relative;
}

.process__line {
  position: absolute;
  top: 32px;
  left: 32px;
  right: calc((100% - 64px) / 3 - 32px);
  height: 1px;
  background: var(--border);
}

.process__line span {
  position: absolute;
  inset: 0;
  background: var(--tan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1600ms var(--ease-expo) 200ms;
}

.process.is-visible .process__line span {
  transform: scaleX(1);
}

.process__steps {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.process__node {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--onyx);
  border: 1px solid var(--tan);
  margin-bottom: 24px;
  transition: transform 400ms var(--ease-snap), background 300ms ease;
}

.section--surface .process__node {
  background: var(--surface);
}

.process__node svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--tan);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 300ms ease;
}

.process__step:hover .process__node {
  transform: scale(1.08);
  background: var(--tan);
}

.process__step:hover .process__node svg {
  stroke: var(--onyx);
}

.process__num {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--tan);
  margin-bottom: 8px;
}

.process__step h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.process__step p {
  margin-bottom: 22px;
}

.process__img {
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.process__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--ease-expo);
}

.process__step:hover .process__img img {
  transform: scale(1.05);
}

/* Image blocks (service "what it covers") */
.blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.blocks--three {
  grid-template-columns: repeat(3, 1fr);
}

.block--event h3 {
  margin-bottom: 6px;
}

.events__note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
}

.block {
  background: var(--onyx);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  padding-bottom: 24px;
  transition: transform 400ms var(--ease-snap), border-color 300ms ease;
}

.block:hover {
  transform: translateY(-6px);
  border-color: #3a3a3a;
}

.block__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 20px;
}

.block__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--ease-expo);
}

.block:hover .block__media img {
  transform: scale(1.05);
}

.block__num,
.block h3,
.block p {
  display: block;
  padding: 0 22px;
}

.block__num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--tan);
  margin-bottom: 8px;
}

.block h3 {
  margin-bottom: 8px;
}

/* Rounder media everywhere for the cleaner look */
.split__media,
.card__inner,
.founder {
  border-radius: 8px;
}

/* Founder role line */
.founder__role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 10px;
}

.split .words + .prose {
  margin-top: 20px;
}

/* Co-founder card */
.cofounder {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px;
  background: var(--onyx);
  border: 1px solid var(--border);
  border-radius: 8px;
  max-width: 640px;
}

.cofounder__mark {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--elevated);
  border-radius: 999px;
}

.cofounder__mark img {
  width: 56%;
  height: auto;
}

.cofounder h3 {
  font-size: 26px;
  margin-bottom: 4px;
}

/* Contact extras */
.next-steps {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.next-steps li {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
}

.next-steps li:last-child {
  border-bottom: 1px solid var(--border);
}

.next-steps span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--tan);
  padding-top: 3px;
}

.next-steps h3 {
  font-size: 17px;
  margin-bottom: 4px;
}

.form__hp {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__legal {
  font-size: 14px;
}

.form__legal a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Legal pages */
.legal__title {
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.legal__meta {
  font-size: 16px;
}

.legal__note {
  margin-top: 24px;
  padding: 14px 18px;
  max-width: 720px;
  border: 1px solid var(--border);
  border-left: 2px solid var(--tan);
  border-radius: 4px;
  background: var(--surface);
  font-size: 14px;
  color: var(--text-2);
}

.legal {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.legal__toc {
  position: sticky;
  top: 128px;
}

.legal__toc ul {
  gap: 8px;
}

.legal__toc a:not(.px-btn) {
  font-size: 14px;
}

.legal__body {
  max-width: 720px;
}

.legal__section {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  scroll-margin-top: 120px;
}

.legal__section h2 {
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.legal__section h2 span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--tan);
}

.legal__section p {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 12px;
}

@media (max-width: 1024px) {
  .blocks,
  .blocks--three {
    grid-template-columns: repeat(2, 1fr);
  }
  .slider__stage {
    aspect-ratio: 16 / 10;
  }
  .legal {
    grid-template-columns: 1fr;
  }
  .legal__toc {
    position: static;
  }
}

@media (max-width: 760px) {
  .slider__stage {
    aspect-ratio: 4 / 5;
  }
  .slide__shade {
    background: linear-gradient(0deg, rgba(15, 15, 15, 0.92) 0%, rgba(15, 15, 15, 0.55) 50%, rgba(15, 15, 15, 0.1) 100%);
  }
  .slide__content {
    right: 24px;
  }
  .slider__tabs {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .slider__tab-name {
    display: none;
  }
  .slider__arrows {
    display: none;
  }
  .process__line {
    display: none;
  }
  .process__steps,
  .blocks,
  .blocks--three {
    grid-template-columns: 1fr;
  }
  .cofounder {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  .reveal,
  [data-stagger] > *,
  .words .w > span,
  .card__index {
    opacity: 1;
    transform: none;
  }
  .px-btn__grid {
    display: none;
  }
  .footer__rule span,
  .process__line span {
    transform: none;
  }
  .slide img,
  .slide__content > * {
    transform: none;
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-desktop,
  .header__cta {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .who-grid,
  .steps--four {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  body.has-mobile-cta {
    padding-bottom: 80px;
  }
  .header__inner {
    height: 72px;
    padding: 0 var(--gutter);
  }
  .brand img {
    height: 32px;
  }
  .hero {
    min-height: 92vh;
  }
  .hero__content {
    padding-top: 72px;
  }
  .split,
  .contact,
  .steps,
  .steps--four,
  .form__row,
  .who-grid,
  .founders,
  .other-services,
  .faq,
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .split--reverse .split__media {
    order: 0;
  }
  .form button {
    width: 100%;
  }
  .mobile-cta {
    display: flex;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 55;
    width: auto;
    padding: 16px 20px;
  }
}

/* Legal page lists */
.legal__list {
  margin: 0 0 14px;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.legal__list li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-2);
}

.legal__list li::marker {
  color: var(--tan);
}

.legal__section strong {
  color: var(--text);
  font-weight: 700;
}

.legal__section a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ------------------------------------------------------------------
   Round 7: brighter hero, bolder cards, moving events strip, service
   dropdowns, rotating page hero, AJ credentials
   ------------------------------------------------------------------ */

/* Hero: let the video show through and blend heavier type into it */
.hero__video {
  opacity: 0.82;
}

.hero__overlay {
  background: linear-gradient(115deg, rgba(15, 15, 15, 0.86) 0%, rgba(15, 15, 15, 0.52) 48%, rgba(15, 15, 15, 0.12) 100%);
}

.hero h1 {
  font-weight: 800;
  -webkit-text-stroke: 0.6px currentColor;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.hero p {
  color: var(--text);
  font-weight: 500;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.55);
}

.hero .label {
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.6);
}

/* Audience slideshow now has three slides */
.slider__tabs {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 760px) {
  .slider__tabs {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Service cards: more contrast so they pop */
.cards .card__inner {
  background: var(--elevated);
  border-color: #3a3a3a;
  box-shadow: 0 24px 48px -28px rgba(0, 0, 0, 0.85);
}

.cards .card__inner:hover {
  border-color: var(--tan);
  box-shadow: 0 32px 60px -28px rgba(0, 0, 0, 0.9);
}

.cards .card__body h3 {
  font-size: 24px;
}

.cards .card__body p {
  color: #cfc9c2;
  font-size: 16px;
}

.cards .card__more {
  color: var(--tan);
}

.is-visible .card__rule {
  transform: scaleX(0.3);
}

.cards .card__media {
  aspect-ratio: 16 / 10;
}

/* Events: an always-moving strip of cards (Claorova Marquee) */
.marquee {
  overflow: hidden;
  padding: 8px 0 4px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.marquee__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 48s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 10px)); }
}

.event-card {
  width: clamp(280px, 30vw, 420px);
  flex-shrink: 0;
  background: var(--elevated);
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 48px -28px rgba(0, 0, 0, 0.85);
  transition: transform 400ms var(--ease-snap), border-color 300ms ease;
}

.event-card:hover {
  transform: translateY(-6px);
  border-color: var(--tan);
}

.event-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--onyx);
}

.event-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--ease-expo);
}

.event-card:hover .event-card__media img {
  transform: scale(1.05);
}

.event-card__body {
  padding: 22px 22px 24px;
}

.event-card__index {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--tan);
  margin-bottom: 10px;
}

.event-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.event-card p {
  font-size: 15px;
  color: #cfc9c2;
}

#events .events__note {
  margin-top: 24px;
}

/* Services page: Learn more dropdowns */
.svc-more {
  margin-top: 28px;
}

.svc-more summary {
  list-style: none;
}

.svc-more summary::-webkit-details-marker {
  display: none;
}

.svc-more[open] summary::after {
  transform: rotate(90deg);
}

.svc-more__body {
  margin-top: 24px;
  padding: 24px;
  background: var(--elevated);
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  animation: svc-open 450ms var(--ease-expo);
}

.svc-more__body > p {
  color: var(--text);
  font-size: 17px;
  margin-bottom: 18px;
}

.svc-more__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.svc-more__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 6px;
}

.svc-more .tick-list li {
  padding: 9px 0;
  font-size: 15px;
}

.svc-more__link {
  display: inline-flex;
  gap: 8px;
  margin-top: 20px;
  font-weight: 700;
  color: var(--tan);
}

.svc-more__link span {
  transition: transform 300ms var(--ease-snap);
}

.svc-more__link:hover span {
  transform: translateX(6px);
}

@keyframes svc-open {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

/* Rotating page hero */
.page-hero--rotate img {
  opacity: 0;
  transition: opacity 1000ms var(--ease-quick), transform 4000ms linear;
  transform: scale(1.06);
}

.page-hero--rotate img.is-active {
  opacity: 0.4;
  transform: scale(1);
}

/* AJ credentials on About */
.credentials {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.credentials li {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
}

.credentials li:last-child {
  border-bottom: 1px solid var(--border);
}

.credentials span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--tan);
}

@media (max-width: 760px) {
  .svc-more__cols {
    grid-template-columns: 1fr;
  }
  .marquee__track {
    animation-duration: 36s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee {
    overflow-x: auto;
  }
  .marquee__track {
    animation: none;
  }
  .event-card[aria-hidden="true"] {
    display: none;
  }
  .page-hero--rotate img.is-active {
    transform: none;
  }
}

/* Footer lockup: logo mark with the company name set in type */
.footer__lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer__brand .footer__lockup img {
  width: auto;
  height: 52px;
  margin: 0;
}

.footer__lockup span {
  display: grid;
  gap: 2px;
}

.footer__lockup strong {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--text);
}

.footer__lockup em {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan);
}

/* ------------------------------------------------------------------
   Readability pass: brighter secondary text, larger type, clearer form
   (Orange Solar Space scale, lifted for contrast on #0f0f0f)
   ------------------------------------------------------------------ */
:root {
  --text-2: #cdc7bf;
  --muted: #9a948d;
}

body {
  font-size: 18px;
  line-height: 1.6;
}

p {
  line-height: 1.6;
}

.label {
  font-size: 13px;
}

.section__lead,
.contact__note,
.prose p {
  font-size: 18px;
  color: var(--text-2);
}

.who p,
.card p,
.cards .card__body p,
.block p,
.event-card p,
.steps p,
.process__step p,
.next-steps p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-2);
}

.footer__col a:not(.px-btn),
.footer__brand p {
  font-size: 16px;
}

.footer__bottom,
.footer__bottom p,
.footer__bottom a {
  font-size: 14px;
}

.legal__section p,
.legal__list li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-2);
}

/* Footer logo */
.footer__logo {
  display: inline-block;
  margin-bottom: 18px;
}

.footer__brand .footer__logo img {
  width: 150px;
  height: auto;
  margin: 0;
}

/* Contact form */
.form {
  gap: 20px;
}

.form label {
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text);
}

.form .req::after {
  content: " *";
  color: var(--tan);
}

.form input,
.form select,
.form textarea {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
  background-color: #1c1c1c;
  border: 1px solid #474747;
  border-radius: 6px;
  padding: 15px 16px;
}

.form input::placeholder,
.form textarea::placeholder {
  color: #8d8781;
  opacity: 1;
}

.form input:hover,
.form select:hover,
.form textarea:hover {
  border-color: #6a6560;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--tan);
  box-shadow: 0 0 0 3px rgba(201, 166, 112, 0.22);
  background-color: #202020;
}

.form select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 46px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%23c9a670' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}

.form select:invalid,
.form select option[value=""] {
  color: #8d8781;
}

.form select option {
  color: var(--text);
  background: #1c1c1c;
}

.form input[type="date"] {
  min-height: 54px;
}

.form input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(78%) sepia(24%) saturate(560%) hue-rotate(356deg) brightness(92%);
  cursor: pointer;
  opacity: 1;
}

.form__hint {
  margin-top: -6px;
  font-size: 14px;
  color: var(--text-2);
}

.form__legal {
  font-size: 15px;
  color: var(--text-2);
}

.form__status {
  font-size: 16px;
  font-weight: 600;
}
