:root {
  --accent: #b3122a;        /* red sea */
  --accent-dark: #8c0e21;
  --ink: #16181d;
  --muted: #5c626d;
  --line: #e7e9ee;
  --bg: #ffffff;
  --bg-alt: #f7f8fa;
  --maxw: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 0.5rem; }
p { margin: 0 0 1rem; }
a { color: inherit; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; height: 66px; }
.brand {
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--ink);
}
.brand span { color: var(--accent); }
.brand img { display: block; height: 28px; width: auto; }
.nav { margin-left: auto; display: flex; gap: 1.4rem; }
.nav a { text-decoration: none; color: var(--muted); font-size: 0.95rem; font-weight: 500; }
.nav a:hover { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.97rem;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.9rem; }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--bg-alt); border-color: #d6d9e0; }

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(1200px 500px at 70% -10%, #fdeef0 0%, #ffffff 55%);
  padding: 5.5rem 0 4.5rem;
  border-bottom: 1px solid var(--line);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.lede { font-size: 1.2rem; color: var(--muted); max-width: 640px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.8rem 0; }
.hero-points span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* ---------- Pillars ---------- */
.pillars { padding: 3rem 0; }
.pillar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.8rem 1.6rem;
}
.pillar-accent {
  border-color: #f1c6cd;
  box-shadow: 0 14px 40px -18px rgba(179, 18, 42, 0.35);
}
.pillar-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 3rem;
  padding: 0 0.6rem;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.pillar h3 { font-size: 1.3rem; letter-spacing: -0.01em; }
.pillar p { color: var(--muted); font-size: 0.98rem; }
.pillar-list { margin: 0.5rem 0 0; padding-left: 1.1rem; color: var(--ink); font-size: 0.92rem; }
.pillar-list li { margin-bottom: 0.3rem; }

/* ---------- Sections ---------- */
.section { padding: 4.5rem 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.section h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); letter-spacing: -0.01em; }
.section-lede { color: var(--muted); font-size: 1.08rem; max-width: 620px; margin-bottom: 2.5rem; }
.center { text-align: center; margin-top: 2.5rem; }

/* ---------- Grids / Cards ---------- */
.grid { display: grid; gap: 1.2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.4rem;
  transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}
.card:hover {
  box-shadow: 0 10px 30px -12px rgba(20, 24, 29, 0.18);
  transform: translateY(-2px);
  border-color: #f1d4d9;
}
.card h3 { font-size: 1.08rem; }
.card p { color: var(--muted); margin: 0; font-size: 0.95rem; }

.feature h3 { font-size: 1.12rem; color: var(--accent); }
.feature p { color: var(--muted); margin: 0; }

/* ---------- Process steps ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.steps li {
  display: flex;
  gap: 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.3rem 1.4rem;
}
.step-no {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent);
  background: #fdeef0;
  border-radius: 8px;
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.steps h3 { font-size: 1.05rem; }
.steps p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* ---------- Capabilities ---------- */
.cap-grid { gap: 1.2rem; }
.cap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.3rem 1.4rem;
}
.cap h4 { font-size: 1rem; color: var(--accent); margin-bottom: 0.7rem; }
.cap ul { margin: 0; padding-left: 1.1rem; color: var(--muted); font-size: 0.93rem; }
.cap li { margin-bottom: 0.3rem; }

/* ---------- Contact ---------- */
.contact { text-align: center; max-width: 680px; }
.contact .section-lede { margin-left: auto; margin-right: auto; }
.contact-line { margin: 1.5rem 0 0.8rem; }
.contact-meta { color: var(--muted); font-size: 0.9rem; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 2rem 0; background: var(--bg-alt); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-inner p { margin: 0; color: var(--muted); font-size: 0.9rem; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .nav { display: none; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 0.6rem; }
}
