/* ==========================================================================
   No Limit Enterprises — nolimitcorp.com
   Hand-written stylesheet. No framework, no build step.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  /* surfaces, darkest to lightest */
  --bg:          #08090c;
  --bg-2:        #0b0d12;
  --surface:     #12151c;
  --surface-2:   #171b24;
  --surface-3:   #1d222d;

  /* hairlines */
  --line:        rgba(255, 255, 255, .08);
  --line-2:      rgba(255, 255, 255, .14);

  /* ink */
  --text:        #eef0f5;
  --muted:       #99a1b3;
  --muted-2:     #737b8d;

  /* accent */
  --accent:      #38d6f0;
  --accent-2:    #6f6bff;
  --accent-ink:  #04222b;
  --accent-soft: rgba(56, 214, 240, .12);
  --accent-line: rgba(56, 214, 240, .32);

  --danger:      #ff7a7a;
  --ok:          #58e08f;

  /* type */
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Space Grotesk', var(--font-body);

  /* metrics */
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section: clamp(4.5rem, 9vw, 7.5rem);
  --radius: 14px;
  --radius-lg: 20px;

  --shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 18px 40px -24px rgba(0, 0, 0, .9);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: -.006em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.028em;
  margin: 0 0 .6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.35rem, 6.2vw, 4.15rem); }
h2 { font-size: clamp(1.85rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 1.9vw, 1.4rem); letter-spacing: -.02em; }
h4 { font-size: 1.03rem; letter-spacing: -.015em; }

p { margin: 0 0 1.15rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

strong { font-weight: 600; color: var(--text); }
hr { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }

::selection { background: var(--accent); color: var(--accent-ink); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -110%);
  z-index: 200;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 600;
  padding: .7rem 1.25rem;
  border-radius: 0 0 10px 10px;
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); text-decoration: none; }

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 760px; }

.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(3rem, 6vw, 4.5rem); }
.section--alt { background: var(--bg-2); border-block: 1px solid var(--line); }

.stack > * + * { margin-top: 1.15rem; }

.grid { display: grid; gap: 1.25rem; }
/* Breakpoints ascend so the widest matching rule wins. */
@media (min-width: 640px)  { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 720px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 720px)  { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

/* Section intro block */
.section-head { max-width: 660px; margin-bottom: clamp(2.25rem, 4vw, 3.25rem); }
.section-head p { color: var(--muted); font-size: 1.075rem; }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-size: .765rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  flex: none;
}
.section-head--center .eyebrow { justify-content: center; }

.lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */

.btn {
  --btn-bg: var(--accent);
  --btn-fg: var(--accent-ink);
  --btn-bd: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .8rem 1.5rem;
  border: 1px solid var(--btn-bd);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font: inherit;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: -.01em;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .18s var(--ease), background-color .18s var(--ease),
              border-color .18s var(--ease), box-shadow .18s var(--ease), opacity .18s var(--ease);
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary:hover { box-shadow: 0 8px 30px -8px rgba(56, 214, 240, .6); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  --btn-bd: var(--line-2);
}
.btn--ghost:hover { --btn-bg: rgba(255, 255, 255, .05); --btn-bd: rgba(255, 255, 255, .28); }

.btn--lg { padding: .95rem 1.85rem; font-size: 1rem; }
.btn--block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .55; pointer-events: none; }

.btn .arrow { transition: transform .18s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

/* Inline text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
  font-size: .93rem;
  color: var(--accent);
}
.link-arrow:hover { text-decoration: none; }
.link-arrow .arrow { transition: transform .18s var(--ease); }
.link-arrow:hover .arrow { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   5. Brand mark
   -------------------------------------------------------------------------- */

.mark { display: block; fill: currentColor; }

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1;
}
.brandmark:hover { text-decoration: none; }
.brandmark .mark { width: 34px; }
.brandmark__name { font-size: 1.06rem; }
.brandmark__name span { color: var(--muted-2); font-weight: 500; }

/* --------------------------------------------------------------------------
   6. Site header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background-color .25s var(--ease), border-color .25s var(--ease),
              backdrop-filter .25s var(--ease);
}
.site-header.is-stuck {
  background: rgba(8, 9, 12, .82);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom-color: var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 74px;
}

.nav { margin-left: auto; }

.nav__list {
  display: flex;
  align-items: center;
  gap: .35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  display: block;
  padding: .55rem .85rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: .935rem;
  font-weight: 500;
  transition: color .15s var(--ease), background-color .15s var(--ease);
}
.nav__link:hover { color: var(--text); background: rgba(255, 255, 255, .05); text-decoration: none; }
.nav__link[aria-current="page"] { color: var(--text); }
.nav__link[aria-current="page"]::after {
  content: "";
  display: block;
  height: 2px;
  width: 18px;
  margin: 3px auto -5px;
  border-radius: 2px;
  background: var(--accent);
}

.nav__cta { margin-left: .6rem; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-2);
  border-radius: 11px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle:hover { background: rgba(255, 255, 255, .05); }
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .22s var(--ease), opacity .15s var(--ease);
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before, .nav-toggle__bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after  { top: 6px; }

[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
[aria-expanded="true"] .nav-toggle__bars::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }

  .nav {
    position: fixed;
    inset: 74px 0 auto;
    margin: 0;
    background: rgba(8, 9, 12, .97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--gutter) 1.75rem;
    display: none;
  }
  .nav.is-open { display: block; animation: navIn .22s var(--ease); }

  .nav__list { flex-direction: column; align-items: stretch; gap: .15rem; }
  .nav__link {
    padding: .85rem .5rem;
    border-radius: 10px;
    font-size: 1.05rem;
    color: var(--text);
  }
  .nav__link[aria-current="page"] { color: var(--accent); }
  .nav__link[aria-current="page"]::after { display: none; }
  .nav__cta { margin: .85rem 0 0; }
  .nav__cta .btn { width: 100%; }
}

@keyframes navIn { from { opacity: 0; transform: translateY(-8px); } }

body.nav-open { overflow: hidden; }

/* --------------------------------------------------------------------------
   7. Backdrops — glow, grid, watermark
   -------------------------------------------------------------------------- */

.backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.backdrop__glow {
  position: absolute;
  top: -34%;
  left: 50%;
  width: min(1250px, 145%);
  aspect-ratio: 16 / 9;
  transform: translateX(-50%);
  background:
    radial-gradient(closest-side, rgba(56, 214, 240, .17), transparent 72%),
    radial-gradient(closest-side, rgba(111, 107, 255, .13), transparent 68%);
  background-position: 30% 40%, 74% 62%;
  background-repeat: no-repeat;
  background-size: 78% 100%, 66% 92%;
  filter: blur(12px);
}

.backdrop__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 68px 68px;
  -webkit-mask-image: radial-gradient(ellipse 78% 62% at 50% 26%, #000 12%, transparent 76%);
          mask-image: radial-gradient(ellipse 78% 62% at 50% 26%, #000 12%, transparent 76%);
}

.backdrop__mark {
  position: absolute;
  left: 50%;
  top: 44%;
  width: min(1500px, 175%);
  transform: translate(-50%, -50%);
  color: #fff;
  opacity: .022;
  /* fade the mark's hard diagonal edges out toward the page edges */
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, #000 15%, transparent 78%);
          mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, #000 15%, transparent 78%);
}

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  isolation: isolate;
  padding-block: clamp(4.5rem, 11vw, 8.5rem) clamp(3.5rem, 7vw, 5.5rem);
  border-bottom: 1px solid var(--line);
}
.hero .container { position: relative; z-index: 1; }
.hero__inner { max-width: 830px; }
.hero h1 { margin-bottom: 1.4rem; }
.hero h1 .accent {
  background: linear-gradient(100deg, var(--accent), var(--accent-2) 92%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.hero__lede { font-size: clamp(1.075rem, 1.9vw, 1.32rem); color: var(--muted); max-width: 62ch; }

/* Compact hero for interior pages */
.hero--page { padding-block: clamp(3.5rem, 8vw, 5.5rem) clamp(2.5rem, 5vw, 3.75rem); }
.hero--page h1 { font-size: clamp(2.15rem, 5vw, 3.3rem); }

/* Stat strip */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: clamp(3rem, 6vw, 4.5rem);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 800px) { .stats { grid-template-columns: repeat(4, 1fr); } }

.stat { background: var(--bg); padding: 1.4rem 1.5rem; }
.section--alt .stat { background: var(--bg-2); }
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 1.95rem);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--text);
}
.stat__label {
  margin-top: .3rem;
  font-size: .855rem;
  color: var(--muted-2);
  letter-spacing: .01em;
}

/* --------------------------------------------------------------------------
   9. Cards
   -------------------------------------------------------------------------- */

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color .2s var(--ease), background-color .2s var(--ease), transform .2s var(--ease);
}
.card p { color: var(--muted); font-size: .965rem; }
.card h3 { margin-bottom: .55rem; }
.card__foot { margin-top: auto; padding-top: 1.35rem; }

.card--link:hover {
  border-color: var(--line-2);
  background: var(--surface-2);
  transform: translateY(-2px);
}
/* Make the whole card clickable via the title link */
.card--link .stretch::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }

.card__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1.15rem;
  border: 1px solid var(--accent-line);
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
}
.card__icon svg { width: 22px; height: 22px; }

/* Numbered process steps */
.step { counter-increment: step; }
.step__num {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 1rem;
  border-radius: 10px;
  border: 1px solid var(--line-2);
  background: var(--surface-2);
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 600;
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   10. Feature rows & lists
   -------------------------------------------------------------------------- */

.feature {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 900px) {
  .feature { grid-template-columns: 1fr 1fr; }
  .feature--flip .feature__media { order: -1; }
}

.feature__media {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}
.feature__media img { width: 100%; }

.checklist { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: .9rem; }
.checklist li {
  position: relative;
  padding-left: 2rem;
  color: var(--muted);
  font-size: .975rem;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
}
.checklist li::after {
  content: "";
  position: absolute;
  left: 5.5px;
  top: calc(.45em + 5px);
  width: 7px;
  height: 4px;
  border-left: 1.8px solid var(--accent);
  border-bottom: 1.8px solid var(--accent);
  transform: rotate(-45deg);
}
.checklist strong { display: block; color: var(--text); font-weight: 600; }

/* Definition-style capability list */
.caplist { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.caplist__item { background: var(--surface); padding: 1.5rem 1.6rem; }
.caplist__item h4 { margin-bottom: .3rem; color: var(--text); }
.caplist__item p { color: var(--muted); font-size: .95rem; margin: 0; }
@media (min-width: 760px) { .caplist--2 { grid-template-columns: repeat(2, 1fr); } }

/* --------------------------------------------------------------------------
   11. Brand / partner tiles
   -------------------------------------------------------------------------- */

.brands { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px)  { .brands { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .brands { grid-template-columns: repeat(4, 1fr); } }

.brand {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.brand:hover { border-color: var(--line-2); transform: translateY(-2px); text-decoration: none; }
.brand__logo { background: #fff; }
.brand__logo img { width: 100%; aspect-ratio: 640 / 300; object-fit: contain; }
.brand__body { padding: .95rem 1.05rem 1.1rem; }
.brand__name {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .965rem;
  color: var(--text);
  letter-spacing: -.015em;
}
.brand:hover .brand__name { color: var(--accent); }
.brand__desc { margin: .35rem 0 0; font-size: .855rem; line-height: 1.5; color: var(--muted-2); }

/* --------------------------------------------------------------------------
   12. Callout band
   -------------------------------------------------------------------------- */

.callout {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 120% 130% at 12% 0%, rgba(56, 214, 240, .16), transparent 62%),
    radial-gradient(ellipse 110% 130% at 92% 108%, rgba(111, 107, 255, .18), transparent 60%),
    var(--surface);
  padding: clamp(2.25rem, 5vw, 3.75rem);
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 880px) { .callout { grid-template-columns: 1.55fr auto; } }
.callout h2 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); margin-bottom: .55rem; }
.callout p { color: var(--muted); margin: 0; max-width: 52ch; }
.callout .btn-row { margin-top: 0; }

/* --------------------------------------------------------------------------
   13. Forms
   -------------------------------------------------------------------------- */

.form-grid { display: grid; gap: 1.15rem; }
@media (min-width: 620px) { .form-grid__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; } }

.field { display: block; }
.field__label {
  display: block;
  margin-bottom: .45rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
}
.field__label .req { color: var(--accent); }
.field__hint { display: block; margin-top: .4rem; font-size: .8rem; color: var(--muted-2); }

.input, .textarea, .select {
  width: 100%;
  padding: .8rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 11px;
  color: var(--text);
  font: inherit;
  font-size: .965rem;
  transition: border-color .16s var(--ease), background-color .16s var(--ease), box-shadow .16s var(--ease);
}
.textarea { min-height: 160px; resize: vertical; line-height: 1.6; }
.select {
  appearance: none;
  -webkit-appearance: none;
  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='%2399a1b3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.6rem;
  cursor: pointer;
}
.select option { background: var(--surface); color: var(--text); }

.input::placeholder, .textarea::placeholder { color: var(--muted-2); }

.input:hover, .textarea:hover, .select:hover { border-color: rgba(255, 255, 255, .22); }
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface-2);
  box-shadow: 0 0 0 3px rgba(56, 214, 240, .16);
}

.field.is-invalid .input,
.field.is-invalid .textarea,
.field.is-invalid .select { border-color: var(--danger); }

.field__error {
  display: none;
  margin-top: .4rem;
  font-size: .82rem;
  color: var(--danger);
}
.field.is-invalid .field__error { display: block; }

/* honeypot — hidden from people, visible to naive bots */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note { font-size: .85rem; color: var(--muted-2); }

.form-status {
  display: none;
  margin-top: 1.25rem;
  padding: .9rem 1.1rem;
  border-radius: 11px;
  font-size: .93rem;
  border: 1px solid;
}
.form-status.is-visible { display: block; }
.form-status--ok    { background: rgba(88, 224, 143, .1);  border-color: rgba(88, 224, 143, .35);  color: var(--ok); }
.form-status--error { background: rgba(255, 122, 122, .1); border-color: rgba(255, 122, 122, .35); color: var(--danger); }
.form-status a { color: inherit; text-decoration: underline; }

/* --------------------------------------------------------------------------
   14. Contact details panel
   -------------------------------------------------------------------------- */

.contact-layout { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
@media (min-width: 940px) { .contact-layout { grid-template-columns: 1.35fr .85fr; } }

.panel {
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.panel + .panel { margin-top: 1.25rem; }
.panel h3 { font-size: 1.1rem; margin-bottom: 1rem; }

.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-list svg { width: 18px; height: 18px; flex: none; margin-top: .28rem; color: var(--accent); }
.contact-list__label { display: block; font-size: .775rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); margin-bottom: .1rem; }
.contact-list__value { color: var(--text); font-weight: 500; }
.contact-list a { color: var(--text); }
.contact-list a:hover { color: var(--accent); }

/* --------------------------------------------------------------------------
   15. Leadership card
   -------------------------------------------------------------------------- */

.person { display: grid; gap: clamp(1.5rem, 4vw, 2.75rem); align-items: center; }
@media (min-width: 720px) { .person { grid-template-columns: 240px 1fr; } }
.person__photo {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-2);
  filter: saturate(.92);
}
.person__role { color: var(--accent); font-size: .875rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .7rem; }

/* --------------------------------------------------------------------------
   16. Prose (terms, privacy, 404)
   -------------------------------------------------------------------------- */

.prose { max-width: 72ch; color: var(--muted); }
.prose h2 {
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  color: var(--text);
  margin-top: 2.75rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--line);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose h3 { color: var(--text); margin-top: 1.9rem; font-size: 1.05rem; }
.prose ul { padding-left: 1.15rem; margin: 0 0 1.15rem; }
.prose li { margin-bottom: .5rem; }
.prose li::marker { color: var(--accent); }

.doc-meta {
  display: inline-block;
  padding: .4rem .85rem;
  margin-bottom: 2.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: .82rem;
  color: var(--muted-2);
}

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding-block: clamp(3rem, 6vw, 4.25rem) 2rem;
}

.footer-top { display: grid; gap: 2.5rem; }
@media (min-width: 800px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr; } }

.footer-about { max-width: 34ch; }
.footer-about p { margin-top: 1.05rem; color: var(--muted-2); font-size: .9rem; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: .775rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer-col a { color: var(--muted); font-size: .92rem; }
.footer-col a:hover { color: var(--text); text-decoration: none; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  font-size: .855rem;
  color: var(--muted-2);
}
.footer-bottom a { color: var(--muted-2); }
.footer-bottom a:hover { color: var(--text); text-decoration: none; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1.25rem; }

/* --------------------------------------------------------------------------
   18. Motion
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   19. Utilities
   -------------------------------------------------------------------------- */

.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;
}
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
