/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #08080a;
  --bg-alt: #0d0d10;
  --card: #131317;
  --card-2: #17171c;
  --border: rgba(255,255,255,.08);
  --border-strong: rgba(255,255,255,.14);
  --red: #e8192a;
  --red-bright: #ff3346;
  --red-deep: #b00f1d;
  --text: #f6f6f8;
  --text-dim: #c7c7d0;   /* body copy — higher contrast for readability */
  --muted: #93939e;      /* secondary / captions */
  --eyebrow: #ff3a4c;
  --radius: 16px;
  --radius-sm: 11px;
  --maxw: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, .brand-text {
  font-family: 'Sora', 'Inter', sans-serif;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

::selection { background: rgba(232,25,42,.32); color: #fff; }

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

/* Subtle custom scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: #0a0a0c; }
::-webkit-scrollbar-thumb { background: #26262c; border-radius: 8px; border: 2px solid #0a0a0c; }
::-webkit-scrollbar-thumb:hover { background: #34343c; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: linear-gradient(180deg, var(--red-bright), var(--red));
  color: #fff;
  box-shadow: 0 10px 26px -10px rgba(232,25,42,.65), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -10px rgba(232,25,42,.8), inset 0 1px 0 rgba(255,255,255,.25);
}

.btn-outline {
  background: rgba(255,255,255,.03);
  color: #fff;
  border-color: var(--border-strong);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8,8,10,.78);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px -18px rgba(0,0,0,.9);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { display: inline-flex; transition: transform .3s var(--ease); }
.brand:hover .brand-mark { transform: rotate(-8deg); }
.brand-text {
  font-weight: 800;
  letter-spacing: .14em;
  font-size: 1.1rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
  margin-right: 36px;
}
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dim);
  position: relative;
  padding: 8px 0;
  transition: color .2s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: #fff; }
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: width .28s var(--ease);
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(110% 90% at 100% 25%, rgba(232,25,42,.12), transparent 55%),
    linear-gradient(180deg, #0c0c10 0%, var(--bg) 100%);
  padding-top: 74px;
  padding-bottom: 104px;
}
/* faint grid texture for depth/credibility */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 90% at 10% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(120% 90% at 10% 30%, #000 30%, transparent 75%);
  z-index: 1;
  pointer-events: none;
}
/* bottom fade to blend hero into the next section */
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, var(--bg));
  z-index: 2;
  pointer-events: none;
}
.hero-canvas {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 64%;
  height: 100%;
  z-index: 2;
}
.hero-glow {
  position: absolute;
  right: 14%; top: 47%;
  width: 620px; height: 620px;
  transform: translate(50%, -50%);
  background: radial-gradient(circle, rgba(232,25,42,.30), transparent 62%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}
.hero-glow--2 {
  right: 8%; top: 78%;
  width: 320px; height: 320px;
  transform: translate(50%, -50%);
  background: radial-gradient(circle, rgba(255,90,60,.14), transparent 65%);
  filter: blur(44px);
}
.hero-inner { position: relative; z-index: 3; }
.hero-content { max-width: 660px; }

@property --hb-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.hero-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 17px 8px 14px;
  border-radius: 100px;
  background: rgba(18,14,16,.55);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  margin-bottom: 26px;
  isolation: isolate;
}
/* light travelling around the border */
.hero-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from var(--hb-angle),
    rgba(255,60,75,0) 0deg,
    rgba(255,70,84,.95) 70deg,
    rgba(255,60,75,0) 150deg,
    rgba(255,60,75,0) 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: hb-rotate 4.5s linear infinite;
  z-index: -1;
}
@keyframes hb-rotate { to { --hb-angle: 360deg; } }
.hb-mark {
  display: inline-flex;
  flex-shrink: 0;
  filter: drop-shadow(0 0 5px rgba(232,25,42,.5));
}
.hb-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: .025em;
  color: #ededf1;
  white-space: nowrap;
}
.hb-x {
  color: var(--red-bright);
  font-weight: 700;
  margin: 0 5px;
}

.hero-title {
  font-size: clamp(2.15rem, 4vw, 3.2rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -.025em;
  margin-bottom: 22px;
}
.hero-title .accent {
  position: relative;
  background: linear-gradient(105deg, #ff6573 0%, var(--red-bright) 45%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 500px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
  max-width: 540px;
}
.hero-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,.018);
  font-weight: 600;
  font-size: 0.82rem;
  line-height: 1.25;
  transition: border-color .28s var(--ease), background .28s var(--ease), transform .28s var(--ease);
}
.hero-features li:hover {
  border-color: rgba(232,25,42,.4);
  background: rgba(232,25,42,.05);
  transform: translateY(-3px);
}
.hf-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(232,25,42,.1);
  border: 1px solid rgba(232,25,42,.25);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  transition: color .25s var(--ease);
}
.hero-scroll:hover { color: #fff; }
.hero-scroll-text {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.hero-scroll-line {
  position: relative;
  width: 1px; height: 46px;
  background: linear-gradient(180deg, rgba(255,255,255,.28), transparent);
  overflow: hidden;
}
.hero-scroll-line span {
  position: absolute;
  top: -14px; left: 0;
  width: 1px; height: 14px;
  background: var(--red-bright);
  animation: scrollDrop 2s var(--ease) infinite;
}
@keyframes scrollDrop {
  0% { top: -14px; opacity: 0; }
  35% { opacity: 1; }
  100% { top: 46px; opacity: 0; }
}

/* ===== Statement band ===== */
.statement {
  position: relative;
  text-align: center;
  padding: 84px 0;
  background: linear-gradient(180deg, var(--bg-alt), var(--bg));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.statement .container { max-width: 900px; }
.center-eyebrow {
  justify-content: center;
  margin-bottom: 22px;
}
.center-eyebrow::after {
  content: '';
  width: 26px; height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.statement-text {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: -.01em;
  color: #f1f1f4;
  max-width: 820px;
  margin: 0 auto;
  text-wrap: balance;            /* even, balanced line lengths */
  overflow-wrap: break-word;
  hyphens: none;
}

/* ===== Section base ===== */
.section { padding: 108px 0; }
.section-head { margin-bottom: 56px; }
.section-head.center {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--eyebrow);
  font-weight: 700;
  font-size: 0.77rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 26px; height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.section-head.center .eyebrow::after {
  content: '';
  width: 26px; height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.15;
}
.section-lead {
  margin-top: 18px;
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== Solutions ===== */
.solutions { background: var(--bg); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  position: relative;
  background: linear-gradient(180deg, var(--card), #101014);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px 30px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.card:hover {
  transform: translateY(-7px);
  border-color: rgba(232,25,42,.4);
  box-shadow: 0 24px 50px -24px rgba(232,25,42,.4);
}
.card:hover::before { opacity: 1; }
.card-num {
  position: absolute;
  top: 22px; right: 24px;
  font-family: 'Sora', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: rgba(255,255,255,.16);
  transition: color .3s var(--ease);
}
.card:hover .card-num { color: rgba(232,25,42,.55); }
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 13px;
  background: rgba(232,25,42,.09);
  border: 1px solid rgba(232,25,42,.22);
  margin-bottom: 24px;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.card:hover .card-icon { background: rgba(232,25,42,.16); transform: scale(1.05); }
.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 12px;
  line-height: 1.3;
}
.card-text {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.card-for {
  font-size: 0.83rem;
  color: var(--text-dim);
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.card-for::before {
  content: 'For';
  color: var(--eyebrow);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-right: 8px;
}

/* ===== Process / How it works ===== */
.process { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
/* connecting line behind the steps */
.process-grid::before {
  content: '';
  position: absolute;
  top: 26px; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,25,42,.4), transparent);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  padding-right: 12px;
}
.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--red-bright);
  background: var(--bg);
  border: 1px solid rgba(232,25,42,.35);
  box-shadow: 0 0 0 6px var(--bg-alt);
  margin-bottom: 22px;
}
.process-title {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 10px;
}
.process-step p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== Mission ===== */
.mission { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.mission-left .section-title { max-width: 460px; }
.mission-right {
  position: relative;
  padding-left: 32px;
  border-left: 2px solid rgba(232,25,42,.4);
}
.mission-right p {
  color: var(--text-dim);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 22px;
}
.mission-right p:last-child { margin-bottom: 0; }

/* ===== Principles ===== */
.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.principle {
  position: relative;
  background: linear-gradient(180deg, var(--card), #101014);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 40px;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.principle:hover {
  border-color: rgba(232,25,42,.35);
  transform: translateY(-5px);
  box-shadow: 0 24px 50px -28px rgba(232,25,42,.4);
}
.principle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  border-radius: 15px;
  background: rgba(232,25,42,.09);
  border: 1px solid rgba(232,25,42,.22);
  margin-bottom: 24px;
}
.principle-eyebrow {
  display: block;
  color: var(--eyebrow);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.principle-title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.25;
  margin-bottom: 16px;
}
.principle p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.principle p:last-child { margin-bottom: 0; }

/* ===== Company ===== */
.company { background: var(--bg-alt); border-top: 1px solid var(--border); }
.company-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.company-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: linear-gradient(180deg, var(--card), #101014);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 30px;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.company-card:hover { border-color: rgba(232,25,42,.35); transform: translateY(-4px); }
.company-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(232,25,42,.09);
  border: 1px solid rgba(232,25,42,.22);
  flex-shrink: 0;
}
.company-label {
  display: block;
  color: var(--eyebrow);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 9px;
}
.company-value { font-weight: 600; font-size: 1.02rem; line-height: 1.45; }
.company-sub { color: var(--muted); font-size: 0.9rem; margin-top: 3px; }

/* ===== CTA ===== */
.cta {
  position: relative;
  padding: 76px 0;
  overflow: hidden;
  background:
    radial-gradient(80% 150% at 0% 50%, rgba(232,25,42,.18), transparent 55%),
    linear-gradient(90deg, #151518, #0e0e11);
  border-top: 1px solid var(--border);
}
.cta-glow {
  position: absolute;
  left: -10%; top: 50%;
  width: 500px; height: 500px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(232,25,42,.28), transparent 62%);
  filter: blur(34px);
}
.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-left { display: flex; align-items: center; gap: 24px; }
.cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px; height: 62px;
  border-radius: 15px;
  background: linear-gradient(180deg, var(--red-bright), var(--red));
  box-shadow: 0 12px 32px -10px rgba(232,25,42,.7), inset 0 1px 0 rgba(255,255,255,.2);
  flex-shrink: 0;
}
.cta-copy h2 { font-size: 1.75rem; font-weight: 800; letter-spacing: -.02em; line-height: 1.2; }
.cta-copy p { color: var(--text-dim); margin-top: 6px; font-size: 1.02rem; }
.cta-btn { padding: 16px 32px; }

/* ===== Contact ===== */
.contact { padding: 92px 0; }
.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info .section-title { margin-bottom: 18px; }
.contact-lead {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 440px;
}
.contact-meta { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.contact-meta li { display: flex; gap: 12px; color: var(--text-dim); font-size: 0.95rem; line-height: 1.55; }
.cm-ico { display: inline-flex; flex-shrink: 0; color: var(--red-bright); margin-top: 2px; }

.contact-form {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(6px);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: rgba(0,0,0,.3);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 13px 15px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder { color: #6c6c75; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(0,0,0,.45);
}
.contact-submit { width: 100%; justify-content: center; margin-top: 4px; }
.contact-note {
  min-height: 1.2em;
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--text-dim);
  text-align: center;
}
.contact-note.error { color: var(--red-bright); }

/* ===== Footer ===== */
.site-footer { background: var(--bg); border-top: 1px solid var(--border); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 56px;
  padding-top: 64px;
  padding-bottom: 56px;
}
.footer-brand .brand { margin-bottom: 20px; }
.footer-tagline {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 360px;
  margin-bottom: 24px;
}
.footer-join { padding: 11px 22px; font-size: 0.9rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--text-dim);
  transition: color .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}
.footer-social a:hover {
  color: #fff;
  border-color: var(--red);
  background: rgba(232,25,42,.14);
  transform: translateY(-2px);
}
.footer-heading {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-nav { display: flex; flex-direction: column; gap: 13px; }
.footer-nav a { font-size: 0.95rem; color: var(--muted); transition: color .2s var(--ease), padding .2s var(--ease); width: fit-content; }
.footer-nav a:hover { color: #fff; padding-left: 4px; }
.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.footer-contact li { display: flex; gap: 12px; color: var(--muted); font-size: 0.95rem; line-height: 1.55; }
.footer-contact a { color: var(--muted); transition: color .2s var(--ease); }
.footer-contact a:hover { color: #fff; }
.fc-ico {
  display: inline-flex;
  flex-shrink: 0;
  color: var(--red);
  margin-top: 2px;
}
.footer-bottom { border-top: 1px solid var(--border); }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  padding-bottom: 24px;
}
.footer-bottom p { color: var(--muted); font-size: 0.85rem; }
.footer-legal a { transition: color .2s var(--ease); }
.footer-legal a:hover { color: #fff; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 1040px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 44px 40px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 980px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .process-grid::before { display: none; }
  .company-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid var(--border); }
  .hero-canvas { width: 100%; opacity: .6; }
}
@media (max-width: 860px) {
  .main-nav, .header-cta { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 74px; left: 0; right: 0;
    background: rgba(8,8,10,.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 22px 28px 28px;
    gap: 18px;
    margin: 0;
  }
  .nav-toggle { display: flex; }
  .mission-grid { grid-template-columns: 1fr; gap: 32px; }
  .mission-right { padding-left: 24px; }
  .principles-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .section { padding: 80px 0; }
  /* feature chips: keep them on one compact row (icon top, label below) */
  .hero-features { grid-template-columns: repeat(3, 1fr); gap: 10px; max-width: none; }
  .hero-features li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 9px;
    padding: 13px 6px;
    font-size: 0.74rem;
  }
  .hf-icon { width: 38px; height: 38px; }
  .hero { padding-bottom: 56px; }
  .hero-scroll { display: none; }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .contact { padding: 64px 0; }
  .statement { padding: 56px 0; }
  .section-head { margin-bottom: 40px; }
  .cards-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 28px; }
  .trust-grid { grid-template-columns: 1fr; }
  .hero-badge { padding: 7px 14px 7px 12px; }
  .hb-label { font-size: 0.72rem; letter-spacing: .01em; }
  .hero-title { font-size: 2rem; line-height: 1.14; }
  .hero-sub { font-size: 1.01rem; }
  .hero-features { gap: 8px; }
  .hero-features li { font-size: 0.7rem; padding: 12px 4px; }
  .hf-icon { width: 36px; height: 36px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .contact-form { padding: 24px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ===== Legal pages ===== */
.legal-header {
  position: sticky;
  top: 0;
  background: rgba(8,8,10,.85);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color .2s var(--ease);
}
.back-link:hover { color: #fff; }
.legal-page {
  padding: 72px 0 96px;
  background:
    radial-gradient(90% 60% at 100% 0%, rgba(232,25,42,.08), transparent 55%),
    var(--bg);
}
.legal {
  max-width: 760px;
  margin: 0 auto;
}
.legal-eyebrow {
  display: inline-block;
  color: var(--eyebrow);
  font-weight: 700;
  font-size: 0.77rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.legal h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.025em;
  margin-bottom: 12px;
}
.legal-updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 14px; }
.legal-intro {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.75;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border);
}
.legal h2 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -.01em;
  margin: 38px 0 14px;
}
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.75;
}
.legal p { margin-bottom: 14px; }
.legal ul { list-style: none; margin: 0 0 14px; padding: 0; }
.legal ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 9px;
}
.legal ul li::before {
  content: '';
  position: absolute;
  left: 2px; top: 11px;
  width: 7px; height: 7px;
  border-radius: 2px;
  background: var(--red);
}
.legal a { color: var(--red-bright); transition: color .2s var(--ease); }
.legal a:hover { color: #fff; text-decoration: underline; }
.legal-note {
  margin-top: 40px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 10px;
  background: rgba(255,255,255,.02);
  font-size: 0.92rem;
  color: var(--muted);
}

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