:root {
  --navy: #1c283e;
  --navy-deep: #141c2c;
  --magenta: #d51c57;
  --paper: #e4e8ef;
  --paper-2: #eef1f6;
  --white: #f7f8fb;
  --ink: #1c283e;
  --muted: #5b6578;
  --line: #c5cbd6;
  --card: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Segoe UI", Calibri, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(28,40,62,.96);
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  position: relative;
}
.nav img { height: 34px; width: auto; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: #d7dde8; font-size: 13px; letter-spacing: .08em;
  text-transform: uppercase; font-weight: 600;
}
.nav-links a:hover { color: #fff; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--magenta); color: #fff;
  font-size: 13px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: 12px 18px; border-radius: 2px;
}
.btn:hover { filter: brightness(1.05); }
.btn-ghost {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,.28);
}

/* HERO */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0 auto 0 0; width: 10px;
  background: var(--magenta);
}
.hero-fabric {
  position: absolute; inset: 0 auto 0 0;
  width: 58%;
  background-image: url("assets/fabric-tile.png");
  background-size: 168px auto;
  opacity: .55;
  -webkit-mask-image: linear-gradient(90deg, #000 42%, transparent 92%);
  mask-image: linear-gradient(90deg, #000 42%, transparent 92%);
}
.hero-inner {
  position: relative;
  padding: 88px 0 96px;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 640px;
  margin-left: auto;
  margin-right: 8%;
}
.eyebrow {
  color: var(--magenta);
  font-size: 13px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.08; font-weight: 750; letter-spacing: -.02em;
}
.hero p.lede {
  margin-top: 16px; color: #c6cedb; font-size: 17px; max-width: 460px;
}
.hero-cta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-mark {
  position: absolute; right: 7%; bottom: 48px;
  height: 52px; opacity: .95;
}

/* SECTIONS */
section { padding: 88px 0; }
.kicker {
  color: var(--magenta); font-size: 12px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; margin-bottom: 10px;
}
h2 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15; letter-spacing: -.02em; margin-bottom: 12px;
}
.sub { color: var(--muted); max-width: 560px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 36px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 36px; }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px 26px;
}
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p, .card li { color: var(--muted); font-size: 15px; }
.card ul { padding-left: 18px; display: grid; gap: 7px; margin-top: 12px; }
.card.accent { border-top: 3px solid var(--magenta); }

.split-dark {
  background: var(--navy); color: #fff;
}
.split-dark .sub, .split-dark .card p, .split-dark .card li { color: #c5cedb; }
.split-dark .card {
  background: #243044; border-color: #33425a; color: #fff;
}

.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.pill {
  border: 1px solid var(--line); background: var(--white);
  padding: 8px 12px; font-size: 13px; font-weight: 600; color: var(--ink);
}

.step { display: grid; gap: 6px; }
.step .num {
  color: var(--magenta); font-weight: 800; letter-spacing: .08em; font-size: 13px;
}

.cta-band {
  background: var(--navy); color: #fff;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0 0 0 auto; width: 42%;
  background-image: url("assets/fabric-tile.png");
  background-size: 168px auto; opacity: .35;
  -webkit-mask-image: linear-gradient(270deg, #000 20%, transparent 100%);
  mask-image: linear-gradient(270deg, #000 20%, transparent 100%);
}
.cta-band .wrap { position: relative; padding: 72px 0; }
.cta-band h2 { max-width: 620px; }
.contact-line { margin-top: 18px; color: #c9d2e0; }
.contact-line a { color: #fff; font-weight: 700; }

.form {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 720px;
}
.form label { display: grid; gap: 6px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #c9d2e0; }
.form label.full { grid-column: 1 / -1; }
.form input, .form select, .form textarea {
  font: inherit; color: var(--ink);
  background: #f7f8fb; border: 1px solid #c5cbd6;
  padding: 12px 12px; border-radius: 2px;
}
.form textarea { min-height: 120px; resize: vertical; }
.form button { justify-self: start; border: 0; cursor: pointer; }
.hp { position: absolute; left: -9999px; }
.form-note { grid-column: 1 / -1; color: #c9d2e0; font-size: 14px; }
.form-note.ok { color: #8ee0b0; }
.form-note.err { color: #ffb3c4; }

.menu-btn {
  display: none; background: transparent; border: 0; color: #fff;
  width: 40px; height: 40px; cursor: pointer;
}
.menu-btn span, .menu-btn span:before, .menu-btn span:after {
  display: block; width: 20px; height: 2px; background: #fff; position: relative;
}
.menu-btn span:before, .menu-btn span:after {
  content: ""; position: absolute; left: 0;
}
.menu-btn span:before { top: -6px; }
.menu-btn span:after { top: 6px; }

footer {
  background: var(--navy-deep); color: #9aa6b8;
  padding: 28px 0; font-size: 13px;
}
.foot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

@media (max-width: 860px) {
  .grid-2, .grid-3, .grid-4, .form { grid-template-columns: 1fr; }
  .hero-inner { margin-right: auto; padding: 72px 0; }
  .hero-mark { position: static; margin-top: 36px; height: 40px; }
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links {
    display: none; position: absolute; left: 0; right: 0; top: 72px;
    background: #141c2c; flex-direction: column; align-items: stretch;
    padding: 12px 24px 20px; gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .hero { min-height: auto; }
}
