:root {
  --bg-dark: #090b0c;
  --bg-soft: #111111;
  --card-dark: #17191b;
  --warm-white: #f7f5f0;
  --text-white: #f5f5f5;
  --muted: #a8a8a8;
  --muted-dark: #6b6b6b;
  --ink: #151515;
  --amber: #c9973e;
  --border-dark: rgba(255, 255, 255, 0.1);
  --border-light: rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 28px 90px rgba(0, 0, 0, 0.46);
  /* Use % (not vw) so width matches the layout viewport when scrollbars appear — keeps header aligned on every page */
  --container: min(1120px, calc(100% - 48px));
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
  --section-y: clamp(5.5rem, 10vw, 8.5rem);
  /* Top band is tighter so sections don’t read as huge empty gutters under the fixed nav */
  --section-y-top: clamp(2.25rem, 4.2vw, 3.5rem);
  /* Space for fixed .site-header (padding + row ~104px); hero adds a small gap below it */
  --header-bar-clear: 6.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --philosophy-charcoal: #060708;
  /* Fixed header chrome — same on every page (immune to body/warm tweaks on Grounded) */
  --header-text: var(--text-white);
  --header-nav: rgba(245, 245, 245, 0.76);
  --header-nav-hover: #fff;
  --header-nav-active: var(--amber);
  /* Primary chrome nav labels (matches front-page header; shared with footer menus) */
  --graveta-nav-label-size: 0.78em;
  --graveta-nav-label-tracking: 0.06em;
  --graveta-nav-label-weight: 500;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-bar-clear) + 0.35rem);
  scrollbar-gutter: stable;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body.graveta-page {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-white);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  padding: 12px 18px;
  background: var(--warm-white);
  color: var(--ink);
  font-weight: 600;
  z-index: 200;
  border-radius: 10px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* Type */
.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 1.25rem;
}

.eyebrow--amber {
  color: var(--amber);
}

.eyebrow--muted-dark {
  color: var(--muted-dark);
}

.display {
  margin: 0;
  font-weight: 700;
  font-size: clamp(2.1rem, 4.2vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.display--warm {
  color: var(--ink);
}

.muted {
  color: var(--muted);
}

.text-amber {
  color: var(--amber);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0 1.35rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: transform 0.22s var(--ease), background 0.22s var(--ease), border-color 0.22s var(--ease);
  cursor: pointer;
  font-family: inherit;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary-solid {
  background: #fff;
  color: var(--bg-dark);
  border-color: #fff;
}

.btn--primary-solid:hover {
  background: #f2f2f2;
}

.btn--outline-light {
  background: transparent;
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.btn--ghost {
  padding-inline: 1.2rem;
}

.btn--amber {
  background: linear-gradient(180deg, #d4a34a, #b98732);
  color: #0f0f0f;
  border-color: rgba(201, 151, 62, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn--amber:hover {
  filter: brightness(1.06);
}

.btn--dark-solid {
  background: #0c0f12;
  color: var(--text-white);
  border-color: rgba(12, 15, 18, 0.95);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.btn--dark-solid:hover {
  background: #14181d;
}

.btn--dark-solid:active {
  background: #0a0d10;
}

.btn--block {
  width: 100%;
}

.btn--lg {
  min-height: 52px;
  font-size: 1rem;
}

.btn--header {
  min-height: 44px;
  padding-inline: 1.2rem;
  border-radius: 999px;
  font-size: 0.95rem;
}

.btn-icon {
  display: inline-flex;
}

.play-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.play-chip svg {
  margin-left: 2px;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--header-text);
  /* Opaque bar so Grounded (#060708) vs home (#090b0c) body colour never shifts how the chrome reads */
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/*
 * Use the same typographic scale as page copy (body ~17px): `em` resolves against this,
 * so nav + brand match front-page proportions on every marketing page.
 */
body.graveta-page .site-header {
  font-size: inherit;
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(1rem, 3vw, 2rem);
  padding: 1rem 0;
  min-height: 72px;
}

.header-right {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 0.75rem;
}

.site-nav .nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.15rem);
}

.site-nav {
  position: static;
  justify-self: center;
  max-width: min(760px, 100%);
  width: max-content;
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.78rem;
}

body.graveta-page .site-header .brand {
  font-size: 0.78em;
}

.brand-mark {
  display: flex;
}

.brand-word--muted {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

.footer-copy {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.nav-mobile-cta {
  display: none;
}

.jump-target {
  scroll-margin-top: 96px;
}

.btn:focus-visible,
.brand:focus-visible,
.site-nav a:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border: 1px solid var(--border-dark);
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  position: relative;
  transition: transform 0.22s var(--ease), opacity 0.22s var(--ease), top 0.22s var(--ease);
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.site-header .site-nav a:not(.btn) {
  text-decoration: none;
  font-size: var(--graveta-nav-label-size);
  letter-spacing: var(--graveta-nav-label-tracking);
  text-transform: uppercase;
  font-weight: var(--graveta-nav-label-weight);
  line-height: 1.25;
  color: var(--header-nav);
  transition: color 0.2s;
}

.site-header .site-nav a:not(.btn):hover {
  color: var(--header-nav-hover);
}

.site-header .site-nav a:not(.btn)[aria-current="page"] {
  color: var(--header-nav-active);
}

.header-cta-wrap {
  flex-shrink: 0;
}

/* Sections */
/* Sections — less top breathing room under fixed header than bottom rhythm */
.section {
  padding-top: var(--section-y-top);
  padding-bottom: var(--section-y);
  padding-left: 24px;
  padding-right: 24px;
}

.section--hero {
  position: relative;
  padding-top: calc(var(--header-bar-clear) + clamp(0.75rem, 1.8vw, 1.25rem));
  padding-bottom: clamp(4rem, 8vw, 5.5rem);
  overflow: hidden;
}

.section--dark {
  background: var(--bg-dark);
}

.section--compact {
  padding-top: 2.75rem;
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section--warm {
  background: var(--warm-white);
  color: var(--ink);
}

.section--warm p {
  color: #3f3f3f;
}

.blueprint {
  position: absolute;
  inset: -8% -5% 0 -5%;
  pointer-events: none;
  opacity: 0.42;
  mix-blend-mode: screen;
}

.section--hero .blueprint {
  opacity: 0.5;
  mix-blend-mode: normal;
}

.blueprint--hero {
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(100% 90% at 50% 0%, #000 0%, rgba(0, 0, 0, 0.92) 70%, transparent 102%);
}

/* Hero grid */
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(min(320px, 88vw), 0.94fr);
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(min(480px, 50vw), 0.94fr);
  }
}

.hero-title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(2.45rem, 5.2vw, 3.65rem);
  line-height: 1.05;
  letter-spacing: -0.038em;
}

.hero-lede {
  margin: 1.5rem 0 2rem;
  max-width: 32rem;
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: 2.35rem;
}

.avatars {
  display: flex;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 2px solid var(--bg-dark);
  margin-left: calc(var(--i) * -10px);
  background: linear-gradient(135deg, #2a2f35, #484e57);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.avatar:first-child {
  margin-left: 0;
}

.stars {
  display: inline-flex;
  gap: 4px;
}

.trust-text {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
}

/* Hero dashboard — approved mockup image (assets/graveta-dashboard.png) */
.hero-visual {
  justify-self: stretch;
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: min(700px, min(54vw, 100%));
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-visual::before {
  content: "";
  position: absolute;
  right: -6%;
  top: -4%;
  width: min(520px, 92%);
  aspect-ratio: 1;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    circle at 48% 50%,
    rgba(201, 151, 62, 0.2) 0%,
    rgba(201, 151, 62, 0.06) 42%,
    transparent 72%
  );
}

@media (max-width: 900px) {
  .hero-visual {
    justify-self: center;
    max-width: min(520px, 100%);
    margin-left: 0;
    justify-content: center;
  }
}

.hero-dash-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: clamp(14px, 1.4vw, 20px);
  overflow: hidden;
  background: var(--bg-dark);
  box-shadow:
    0 0 0 1px rgba(201, 151, 62, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.07) inset,
    0 0 min(140px, 28vw) rgba(201, 151, 62, 0.12),
    0 48px 120px rgba(0, 0, 0, 0.62),
    0 20px 44px rgba(0, 0, 0, 0.42);
}

.hero-dash-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
  -webkit-mask-image: radial-gradient(
    ellipse 105% 100% at 50% 52%,
    #000 0%,
    #000 92%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 105% 100% at 50% 52%,
    #000 0%,
    #000 92%,
    transparent 100%
  );
}

.hero-dash-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  opacity: 1;
}

@keyframes graveta-dash-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-dash-wrap {
    animation: graveta-dash-float 18s ease-in-out infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-dash-wrap {
    animation: none;
  }
}

/* Partner / logos strip — one calm row + even rhythm (no orphaned wrap) */
.section.section--partners {
  padding-top: clamp(1.35rem, 2.5vw, 2rem);
  padding-bottom: clamp(1.35rem, 2.5vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.logos-caption {
  margin: 0 auto clamp(0.95rem, 2vw, 1.35rem);
  text-align: center;
  font-size: clamp(0.65rem, 0.82vw + 0.52rem, 0.74rem);
  letter-spacing: 0.21em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(210, 210, 210, 0.78);
  max-width: min(52rem, 100%);
}

.logos-strip {
  text-align: center;
}

.logos-row {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  column-gap: clamp(0.65rem, 1.2vw, 1.35rem);
  row-gap: clamp(1.1rem, 2vw, 1.5rem);
}

.logos-row__item {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  justify-self: stretch;
}

.partner-lockup {
  color: rgba(237, 237, 237, 0.9);
  max-width: 100%;
}

.partner-lockup--stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}

.partner-lockup--after-mark {
  align-items: flex-start;
  text-align: left;
}

.partner-lockup--mark {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 1vw, 0.72rem);
  width: 100%;
  max-width: 100%;
}

.partner-lockup--wide {
  gap: 0.4rem;
}

.partner-line {
  display: block;
}

.partner-line--strong {
  font-size: clamp(0.74rem, 0.82vw + 0.58rem, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(246, 246, 246, 0.94);
  line-height: 1.15;
}

.partner-line--soft {
  font-size: clamp(0.56rem, 0.52vw + 0.48rem, 0.65rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(198, 198, 198, 0.58);
  line-height: 1.2;
}

.partner-line--wide-track {
  letter-spacing: 0.2em;
}

.partner-mark {
  display: flex;
  flex-shrink: 0;
  color: rgba(232, 232, 232, 0.78);
}

.partner-mark svg {
  display: block;
  width: clamp(36px, 3.4vw, 42px);
  height: clamp(36px, 3.4vw, 42px);
}

.partner-mark--sm svg {
  width: clamp(32px, 3.15vw, 38px);
  height: clamp(32px, 3.15vw, 38px);
}

@media (max-width: 1023px) {
  .logos-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .logos-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 399px) {
  .logos-row {
    grid-template-columns: 1fr;
  }
}

/* Promise — grounded principles */
.section--promise {
  position: relative;
  isolation: isolate;
  background-color: #f8f7f4;
  color: var(--ink);
  overflow-x: clip;
}

.section--promise > .container {
  position: relative;
  z-index: 1;
}

.section--promise::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
  background-image:
    radial-gradient(circle at 18% -8%, rgba(201, 151, 62, 0.12), transparent 46%),
    radial-gradient(circle at 94% -2%, rgba(0, 0, 0, 0.04), transparent 42%),
    radial-gradient(rgba(0, 0, 0, 0.025) 0.62px, transparent 0.64px);
  background-size: auto, auto, 11px 11px;
}

.section--warm.section--promise p {
  color: inherit;
}

.eyebrow--promise::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin-top: 0.72rem;
  background: rgba(201, 151, 62, 0.78);
}

.promise-headline {
  margin: clamp(0.85rem, 2vw, 1.35rem) 0 0;
}

.promise-top {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4.4vw, 3rem);
  align-items: center;
  margin-bottom: clamp(1.95rem, 3.85vw, 2.92rem);
}

.promise-lede {
  margin: 0;
  max-width: 38rem;
  justify-self: end;
  align-self: center;
  color: #5a5955 !important;
  font-size: 1.125rem;
  line-height: 1.72;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.05rem, 2vw, 1.6rem);
}

.promise-grid .lite-card {
  height: 100%;
  padding: clamp(1.55rem, 2.9vw, 2.08rem) clamp(1.3rem, 2.75vw, 1.82rem)
    clamp(1.58rem, 3vw, 2.06rem);
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: linear-gradient(180deg, rgba(251, 250, 248, 0.98), #fbfaf8);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 10px 30px rgba(0, 0, 0, 0.04);
  transition:
    transform 250ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 250ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 250ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: no-preference) {
  .promise-grid .promise-principle:hover,
  .promise-grid .promise-principle:focus-within {
    transform: translateY(-4px);
    border-color: rgba(0, 0, 0, 0.07);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.78) inset,
      0 18px 40px rgba(0, 0, 0, 0.08);
  }

  .promise-principle:hover .promise-principle__icon,
  .promise-principle:focus-within .promise-principle__icon {
    transform: translateY(-1px);
    color: rgba(154, 110, 32, 0.98);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.88),
      0 14px 34px rgba(201, 151, 62, 0.2);
  }

  .promise-principle:hover h3,
  .promise-principle:focus-within h3 {
    color: #0f0f0f;
  }
}

.promise-principle__icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 38% 32%, rgba(255, 255, 255, 0.74), transparent 72%),
    rgba(201, 151, 62, 0.15);
  color: rgba(173, 128, 45, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 12px 24px rgba(201, 151, 62, 0.11);
  transition:
    transform 250ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 250ms cubic-bezier(0.22, 1, 0.36, 1),
    color 250ms cubic-bezier(0.22, 1, 0.36, 1);
}

.promise-principle__icon svg {
  width: 27px;
  height: 27px;
  display: block;
}

.promise-principle__divider {
  display: block;
  width: 36px;
  height: 1px;
  margin-top: 1.05rem;
  background: rgba(201, 151, 62, 0.58);
}

.promise-grid .promise-principle h3 {
  margin: 1rem 0 0.52rem;
  font-size: clamp(1.3rem, 0.74vw + 1.06rem, 2rem);
  font-weight: 700;
  letter-spacing: -0.026em;
  line-height: 1.08;
  color: #171513;
  transition: color 250ms cubic-bezier(0.22, 1, 0.36, 1);
}

.promise-grid .promise-principle p {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  color: #60605c;
}

.promise-trust {
  margin-top: clamp(1.85rem, 4vw, 2.7rem);
}

.promise-trust__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.32);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 10px 26px rgba(0, 0, 0, 0.04);
}

.promise-trust__item {
  display: flex;
  align-items: center;
  gap: 0.58rem;
  padding: clamp(0.92rem, 2vw, 1.06rem) clamp(0.72rem, 2vw, 1.02rem);
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.promise-trust__item:last-child {
  border-right: 0;
}

.promise-trust__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: rgba(173, 128, 45, 0.98);
}

.promise-trust__icon svg {
  display: block;
}

.promise-trust__text {
  font-size: 0.7825rem;
  line-height: 1.4;
  font-weight: 500;
  color: rgba(77, 75, 70, 0.95);
}

@media (max-width: 520px) {
  .promise-trust__list {
    grid-template-columns: 1fr;
  }

  .promise-trust__item {
    border-right: 0 !important;
  }

  .promise-trust__item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .promise-trust__item:last-child {
    border-bottom: 0 !important;
  }
}

/* Minimal amber icons (42px base — problem / glass cards) */
.icon-amber {
  display: inline-block;
  width: 42px;
  height: 42px;
  position: relative;
}


.icon-shield::before {
  content: "";
  position: absolute;
  inset: 4px 10px;
  border: 1.5px solid var(--amber);
  border-radius: 10px 10px 6px 6px;
  clip-path: polygon(50% 0%, 90% 10%, 100% 30%, 100% 72%, 50% 100%, 0% 72%, 0% 30%, 10% 10%);
}

.icon-gear::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1.5px dashed var(--amber);
  border-radius: 999px;
}

.icon-gear::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1.5px solid var(--amber);
  border-radius: 999px;
}

.icon-people::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--amber);
  border-radius: 999px;
}

.icon-people::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 8px;
  width: 12px;
  height: 12px;
  border: 1.5px solid var(--amber);
  border-radius: 999px;
}

.icon-scales::before,
.icon-scales::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 1.5px;
  background: var(--amber);
  left: 12px;
  top: 20px;
  transform-origin: center;
}

.icon-scales::before {
  transform: rotate(-18deg);
}

.icon-scales::after {
  transform: rotate(18deg);
}

/* Problem section */
.section--problem {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.92fr);
  gap: clamp(2rem, 4vw, 3.75rem);
  align-items: stretch;
}

.glass-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.glass-card {
  padding: 1.35rem 1.35rem 1.45rem;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(39, 42, 47, 0.95), rgba(23, 25, 27, 0.96)),
    radial-gradient(circle at 10% -10%, rgba(201, 151, 62, 0.08), transparent 55%);
  border: 1px solid var(--border-dark);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(7px);
}

.glass-card h3 {
  margin: 1rem 0 0.55rem;
  font-size: 1.06rem;
  font-weight: 700;
}

.glass-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.icon-network::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1.5px solid var(--amber);
  border-radius: 6px;
}

.icon-network::after {
  content: "";
  position: absolute;
  width: 1.5px;
  height: 18px;
  background: var(--amber);
  left: 26px;
  top: 8px;
}

.icon-clock::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1.5px solid var(--amber);
  border-radius: 999px;
}

.icon-clock::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 1.5px;
  background: var(--amber);
  left: 20px;
  top: 20px;
  transform: rotate(-40deg);
  transform-origin: left center;
}

.icon-stack::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 9px;
  width: 20px;
  height: 10px;
  border: 1.5px solid var(--amber);
  border-radius: 3px;
}

.icon-stack::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 15px;
  width: 20px;
  height: 10px;
  border: 1.5px solid var(--amber);
  border-radius: 3px;
  opacity: 0.62;
}

.icon-chart::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.12);
}

.icon-chart::after {
  content: "";
  position: absolute;
  left: 13px;
  bottom: 12px;
  width: 5px;
  height: 14px;
  border: 1.5px solid var(--amber);
  border-radius: 2px;
  box-shadow: 11px -5px 0 -1px var(--amber), 22px -11px 0 -1px rgba(201, 151, 62, 0.55);
}

.problem-photo-wrap {
  margin: 0;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.problem-photo-wrap--cinema::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.14;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03) 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.04) 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}

.problem-photo-wrap--cinema::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(9, 11, 12, 0.65) 0%, rgba(9, 11, 12, 0.12) 28%, transparent 62%),
    radial-gradient(ellipse 85% 70% at 70% 40%, transparent 38%, rgba(9, 11, 12, 0.7) 100%),
    linear-gradient(180deg, transparent 0%, rgba(9, 11, 12, 0.5) 100%);
}

.problem-photo-wrap--reality {
  align-self: stretch;
  display: flex;
  min-height: min(620px, 78vh);
  border: none;
  box-shadow: none;
}

.problem-photo-wrap--reality.problem-photo-wrap--cinema::before {
  opacity: 0.07;
}

.problem-photo-wrap--reality.problem-photo-wrap--cinema::after {
  background:
    linear-gradient(90deg, rgb(9, 11, 12) 0%, rgba(9, 11, 12, 0.92) 18%, rgba(9, 11, 12, 0.18) 44%, transparent 68%),
    radial-gradient(
      ellipse 105% 100% at 65% 48%,
      transparent 42%,
      rgba(9, 11, 12, 0.45) 78%,
      rgb(9, 11, 12) 100%
    ),
    linear-gradient(180deg, rgb(9, 11, 12) 0%, transparent 12%, transparent 82%, rgb(9, 11, 12) 100%);
}

.problem-photo-wrap--reality .problem-photo {
  aspect-ratio: auto;
  width: 100%;
  height: 100%;
  min-height: min(620px, 78vh);
  object-fit: cover;
  object-position: 62% center;
  transform: none;
  filter: contrast(1.06) brightness(0.96);
  -webkit-mask-image: radial-gradient(
    ellipse 98% 98% at 65% 45%,
    #000 0%,
    #000 74%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 98% 98% at 65% 45%,
    #000 0%,
    #000 74%,
    transparent 100%
  );
}


/* Outcomes — split headline + ruled columns */
.section--outcomes {
  background-color: #f9f7f2;
  padding-bottom: clamp(2.25rem, 4.5vw, 3.5rem);
}

.outcomes-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 2.75rem);
  align-items: start;
}

@media (min-width: 900px) {
  .outcomes-layout {
    grid-template-columns: minmax(200px, min(34%, 312px)) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 3.25rem);
    align-items: start;
  }
}

.outcomes-intro {
  max-width: 22rem;
}

.eyebrow--outcomes {
  margin-bottom: 1.05rem;
}

.outcomes-title {
  margin: 0;
  max-width: none;
  line-height: 1.06;
  letter-spacing: -0.038em;
}

.outcomes-benefits {
  min-width: 0;
}

.outcomes-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  align-items: start;
}

.outcome-col {
  padding: 0 clamp(0.6rem, 1vw, 1.15rem);
}

.outcome-col:first-child {
  padding-left: 0;
}

.outcome-col:not(:first-child) {
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.outcome-ico {
  display: flex;
  color: var(--amber);
  margin-bottom: 1.25rem;
}

.outcome-ico svg {
  display: block;
  flex-shrink: 0;
  width: clamp(46px, 5.5vw, 58px);
  height: clamp(46px, 5.5vw, 58px);
}

.outcome-col h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.outcome-col p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #3f3f3f;
}

@media (max-width: 899px) {
  .outcomes-row {
    grid-template-columns: 1fr;
  }

  .outcome-col {
    padding: 1.35rem 0 0;
  }

  .outcome-col:first-child {
    padding-top: 0;
  }

  .outcome-col:not(:first-child) {
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }
}

.icon-target::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1.5px solid var(--amber);
  border-radius: 999px;
}

.icon-target::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--amber);
  border-radius: 999px;
  left: 19px;
  top: 19px;
}

.icon-timer::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1.5px solid var(--amber);
  border-radius: 999px;
}

.icon-timer::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 1.5px;
  background: var(--amber);
  left: 20px;
  top: 21px;
  transform: rotate(55deg);
  transform-origin: left center;
}

.icon-hands::before,
.icon-hands::after {
  content: "";
  position: absolute;
  border: 1.5px solid var(--amber);
  border-radius: 999px;
  width: 12px;
  height: 12px;
}

.icon-hands::before {
  left: 13px;
  top: 10px;
}

.icon-hands::after {
  left: 21px;
  top: 16px;
}

.icon-leaf::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 14px;
  border: 1.5px solid var(--amber);
  border-radius: 0 999px;
  transform: rotate(-28deg);
  left: 10px;
  top: 13px;
}

/* Philosophy — target: even 3-column, no overlap · dark lifted CTA + gold accent button */
.section--philosophy {
  position: relative;
  overflow-x: clip;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: clamp(3rem, 7vw, 4.5rem);
  padding-bottom: clamp(3.5rem, 8vw, 5rem);
  padding-left: clamp(1.35rem, 5vw, 1.75rem);
  padding-right: clamp(1.35rem, 5vw, 1.75rem);
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background-color: var(--philosophy-charcoal);
  background-image: radial-gradient(ellipse 110% 70% at 50% -5%, rgba(255, 255, 255, 0.035) 0%, transparent 52%),
    radial-gradient(ellipse 75% 50% at 50% 100%, rgba(0, 0, 0, 0.38) 0%, transparent 58%);
}

.philosophy-inner {
  width: 100%;
  max-width: min(1224px, 100%);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: stretch;
  gap: clamp(40px, 6.5vw, 52px);
}

.philosophy-copy {
  min-width: 0;
  max-width: min(472px, 100%);
  width: 100%;
  justify-self: start;
}

.philosophy-eyebrow {
  margin: 0 0 clamp(1.1rem, 2.1vw, 1.6rem);
  font-size: 0.64rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(188, 190, 195, 0.72);
}

.philosophy-headline {
  margin: 0 0 clamp(1.35rem, 2.4vw, 2rem);
  max-width: min(472px, 100%);
  width: 100%;
  font-weight: 700;
  font-size: clamp(1.42rem, 1.08vw + 1.05rem, 2.38rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: #fafafa;
}

.philosophy-body {
  max-width: min(472px, 100%);
  display: flex;
  flex-direction: column;
  gap: clamp(1.05rem, 2vw, 1.48rem);
}

.philosophy-body .phil-p {
  margin: 0;
  font-size: clamp(0.95rem, 0.32vw + 0.87rem, 1.09rem);
  line-height: 1.72;
  color: rgba(215, 215, 217, 0.88);
}

.philosophy-body .phil-p--soft {
  color: rgba(175, 176, 180, 0.78);
}

/* Center cube — production transparent asset: minimal CSS, scene lighting only */
.philosophy-cube-shell {
  min-width: 0;
  width: 100%;
  max-width: min(620px, 100%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cube-stage {
  position: relative;
  isolation: isolate;
  margin: 0 auto;
  width: 100%;
  max-width: min(456px, 100%);
  aspect-ratio: 1;
  max-height: min(456px, 62vh);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  border-radius: 0;
  background-color: transparent;
}

.cube-stage--photo {
  padding: 0;
}

/* Soft key + ground read — sits behind transparent PNG (asset supplies contact shadow) */
.cube-stage__spot {
  position: absolute;
  width: 110%;
  height: 72%;
  left: 48%;
  top: 30%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 44% 36% at 46% 46%,
    rgba(255, 255, 255, 0.042) 0%,
    transparent 72%
  );
}

.cube-stage__floor {
  position: absolute;
  left: 50%;
  bottom: 4%;
  width: 130%;
  height: 42%;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 48% 28% at 50% 100%,
    rgba(0, 0, 0, 0.35) 0%,
    transparent 70%
  );
}

.cube-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-height: 92%;
  display: block;
  object-fit: contain;
  object-position: 50% 52%;
  /* Hairline anti-halo only (transparent export should need almost no feather) */
  -webkit-mask-image: radial-gradient(ellipse 104% 104% at 50% 50%, #000 97%, transparent 100%);
  mask-image: radial-gradient(ellipse 104% 104% at 50% 50%, #000 97%, transparent 100%);
  filter: drop-shadow(0 40px 72px rgba(0, 0, 0, 0.42)) drop-shadow(0 12px 32px rgba(0, 0, 0, 0.28));
}

/* CTA — dark panel (lifted charcoal), copy light; amber is ONLY the button */
.section--philosophy .cta-card {
  box-sizing: border-box;
  width: 100%;
  max-width: 400px;
  min-width: 0;
  justify-self: end;
  align-self: center;
  margin-inline: 0;
  padding: clamp(36px, 4.2vw, 48px);
  border-radius: 26px;
  background: #1a1d24;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(0, 0, 0, 0.35) inset;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.section--philosophy .cta-card-title {
  margin: 0 0 clamp(1rem, 1.9vw, 1.42rem);
  max-width: 100%;
  width: 100%;
  align-self: flex-start;
  font-size: clamp(1.2rem, 0.92vw + 0.82rem, 2.05rem);
  line-height: 1.08;
  font-weight: 700;
  color: #f8f8f9;
  letter-spacing: -0.03em;
}

.section--philosophy .cta-card-lede {
  margin: 0 0 1.65rem;
  font-size: clamp(0.96rem, 0.26vw + 0.9rem, 1.07rem);
  line-height: 1.72;
  color: rgba(200, 202, 208, 0.82);
  max-width: 22em;
}

.section--philosophy .btn--philosophy-cta {
  align-self: stretch;
  width: 100%;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  font-size: 0.965rem;
  font-weight: 600;
  border-radius: 14px;
  background: #c9973e;
  color: #161410;
  border: 1px solid rgba(80, 60, 20, 0.22);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.32);
  transition: transform 0.2s var(--ease), filter 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.section--philosophy .btn--philosophy-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.045);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.38);
}

@media (min-width: 981px) {
  .section--philosophy {
    padding: clamp(96px, 11vw, 134px) clamp(44px, 5vw, 72px);
    min-height: min(760px, 92vh);
  }

  /* Reference comp proportions: ~38% copy · ~26–28% cube · ~32–34% card */
  .philosophy-grid {
    grid-template-columns: minmax(268px, 1.1fr) minmax(236px, 0.94fr) minmax(400px, 1.06fr);
    column-gap: clamp(36px, 4vw, 56px);
    row-gap: 0;
    align-items: center;
    justify-items: stretch;
  }

  .philosophy-copy {
    max-width: min(472px, 100%);
    width: auto;
  }

  .philosophy-cube-shell {
    max-width: 100%;
    width: 100%;
    justify-self: stretch;
  }

  .section--philosophy .cta-card {
    width: 400px;
    max-width: 400px;
    justify-self: end;
    border-radius: 28px;
  }
}

@media (min-width: 1180px) {
  .cube-stage {
    max-width: min(504px, 100%);
    max-height: min(504px, 64vh);
  }
}

@media (max-width: 980px) {
  .philosophy-grid {
    text-align: left;
    align-items: stretch;
  }

  .philosophy-copy {
    justify-self: stretch;
    max-width: none;
  }

  .philosophy-headline {
    max-width: none;
  }

  .philosophy-body {
    max-width: none;
  }

  .philosophy-cube-shell {
    order: 2;
    max-width: min(560px, 100%);
  }

  .cube-stage {
    max-height: min(400px, 56vh);
  }

  .section--philosophy .cta-card {
    order: 3;
    justify-self: stretch;
    max-width: 400px;
    width: 100%;
    margin-inline: auto;
  }
}
/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.75rem 24px;
  width: var(--container);
  margin-inline: auto;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: var(--graveta-nav-label-size);
  font-weight: var(--graveta-nav-label-weight);
}

.footer-nav a:hover {
  color: #fff;
}

@media (max-width: 980px) {
  .promise-top {
    grid-template-columns: 1fr;
  }

  .promise-lede {
    justify-self: start;
    max-width: 40rem;
  }

  .promise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promise-trust__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promise-trust__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .promise-trust__item:nth-child(2),
  .promise-trust__item:nth-child(4) {
    border-right: 0;
  }

  .promise-trust__item:nth-child(3),
  .promise-trust__item:nth-child(4) {
    border-bottom: 0;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .problem-photo-wrap {
    order: 2;
    max-height: none;
  }
}

@media (max-width: 900px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: clamp(1rem, 3vw, 2rem);
    row-gap: 0;
    flex-wrap: nowrap;
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 auto;
    left: 0;
    right: 0;
    width: 100%;
    transform: none;
    flex: none;
    max-width: none;
    pointer-events: auto;
    background: rgba(9, 11, 12, 0.98);
    padding: 0 24px max(24px, env(safe-area-inset-bottom));
    border-bottom: 1px solid var(--border-dark);
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.28s var(--ease);
    max-height: min(74vh, 520px);
    overflow: auto;
    z-index: 99;
    display: block;
  }

  .site-nav[data-open="true"] {
    clip-path: inset(0 0 0 0);
  }

  .site-nav > * {
    pointer-events: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: 2;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-cta-wrap {
    display: none;
  }

  .site-nav .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 0 1rem;
  }

  .site-nav a:not(.btn) {
    display: block;
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
    min-height: 48px;
  }

  .nav-mobile-cta {
    display: block;
    list-style: none;
    padding-top: 0.85rem;
  }

  .nav-mobile-cta .btn {
    width: 100%;
  }

  body.nav-open .nav-toggle-lines {
    background: transparent;
  }

  body.nav-open .nav-toggle-lines::before {
    top: 0;
    transform: rotate(45deg);
  }

  body.nav-open .nav-toggle-lines::after {
    top: 0;
    transform: rotate(-45deg);
  }

  body.nav-lock {
    overflow: hidden;
  }
}

@media (max-width: 720px) {
  .promise-grid {
    grid-template-columns: 1fr;
  }

  .glass-grid {
    grid-template-columns: 1fr;
  }

  .logos-row {
    flex-direction: column;
    align-items: center;
  }
}

/* Booking flow CTAs use semantic <button class="btn"> */
button.btn {
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
}

/* Homepage philosophy — link to cinematic Grounded manifesto */
.philosophy-manifesto-cta-wrap {
  margin-top: clamp(1.85rem, 3.8vw, 2.75rem);
  padding-top: clamp(1.45rem, 3vw, 2.05rem);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.philosophy-manifesto-cta-wrap .btn {
  justify-content: center;
  min-height: 50px;
  padding-inline: 1.5rem;
}

@media (min-width: 521px) {
  .philosophy-manifesto-cta-wrap .btn {
    width: fit-content;
    min-width: min(408px, 100%);
  }
}

@media (max-width: 520px) {
  .philosophy-manifesto-cta-wrap .btn {
    width: 100%;
  }
}
