/* ============ SACRED SUMMIT SOLUTIONS : FEDERAL EDITORIAL ============ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
:root {
  --bg: #fdfdfb;
  --bg-soft: #f2f5f8;
  --ink: #101c28;
  --ink-dim: #4a5c6e;
  --ink-faint: #8195a6;
  --line: rgba(16,28,40,.1);
  --line-strong: rgba(16,28,40,.26);
  --blue: #1D73BC;
  --blue-deep: #12518a;
  --blue-dim: rgba(29,115,188,.06);
  --gray: #6987A3;
  --navy: #0c1f31;
  --sans: "Inter Tight", "SF Pro Display", -apple-system, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --mono: "Inter Tight", "SF Pro Display", -apple-system, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --pad: clamp(24px, 5vw, 76px);
  --ease: cubic-bezier(.2,.6,.2,1);
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink); font-family: var(--sans);
  font-weight: 400; -webkit-font-smoothing: antialiased; overflow-x: hidden; line-height: 1.6;
}
::selection { background: rgba(29,115,188,.16); }

.grain, .grid-lines { display: none; }
#progress { position: fixed; top: 0; left: 0; height: 2px; width: 0%; background: var(--blue); z-index: 200; transition: width .1s linear; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 var(--pad); position: relative; z-index: 2; }
section { position: relative; z-index: 2; }

/* ============ DARK NAVY SECTIONS ============ */
.sec-dark {
  --ink: #f2f6fa; --ink-dim: #b4c4d2; --ink-faint: #71879a;
  --line: rgba(242,246,250,.13); --line-strong: rgba(242,246,250,.32);
  --bg-soft: #12293e; --blue-dim: rgba(122,178,226,.08);
  background: var(--navy); color: var(--ink);
}

/* ============ TYPE ============ */
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.02em; }
h2 .serif-i, h1 .serif-i { letter-spacing: -.01em; }
.serif-i { font-style: italic; color: var(--blue); }
.sec-dark .serif-i { color: #7ab2e2; }
.kicker {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink-faint);
  display: flex; align-items: center; gap: 14px;
}
.kicker::before { content:""; width: 26px; height: 1px; background: var(--blue); }
.sec-dark .kicker::before { background: #7ab2e2; }
.kicker.center { justify-content: center; }
/* hero slogan kicker: framed, premium */
.logo .lslogan {
  display: block; font-family: var(--serif); font-style: italic;
  font-size: 10.5px; color: var(--ink-dim); letter-spacing: .015em;
  margin-top: 4px; opacity: .8;
}
footer .logo .lslogan { color: #8ba0b2; }

/* ============ WHY FEDERAL ============ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card {
  position: relative; background: #fff;
  border: 1px solid var(--line); border-radius: 14px;
  padding: 34px 30px 32px;
  box-shadow: 0 2px 6px rgba(16,28,40,.04), 0 10px 26px rgba(16,28,40,.04);
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
  overflow: hidden;
}
.why-card::before {
  content:""; position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--blue), rgba(29,115,188,.15));
  opacity: 0; transition: opacity .35s;
}
.why-card:hover { transform: translateY(-5px); border-color: rgba(29,115,188,.3); box-shadow: 0 6px 14px rgba(16,28,40,.06), 0 22px 50px rgba(16,28,40,.11); }
.why-card:hover::before { opacity: 1; }
.why-num {
  font-family: var(--serif); font-style: italic; font-size: 26px;
  color: var(--blue); opacity: .55; display: block; margin-bottom: 18px;
  transition: opacity .35s;
}
.why-card:hover .why-num { opacity: 1; }
.why-card h3 { font-size: 17.5px; font-weight: 650; letter-spacing: -.015em; margin-bottom: 10px; font-family: var(--sans); }
.why-card p { font-size: 14px; color: var(--ink-dim); line-height: 1.75; }
@media (max-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .why-grid { grid-template-columns: 1fr; } }

/* ============ FLOATING JUMP TABS ============ */
.jumpbar {
  position: fixed; top: 18px; left: 50%; transform: translate(-50%, -90px);
  z-index: 150; display: flex; align-items: center; gap: 2px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,250,252,.92));
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(29,115,188,.16);
  border-radius: 999px; padding: 6px 6px 6px 8px;
  box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 12px 40px rgba(16,28,40,.16), 0 2px 10px rgba(29,115,188,.08);
  opacity: 0; pointer-events: none;
  transition: transform .5s var(--ease), opacity .4s;
}
.jumpbar.show { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
/* emblem chip at the left end */
.jumpbar .jb-mark {
  display: grid; place-items: center; padding: 0 10px 0 4px;
  border-right: 1px solid rgba(29,115,188,.14); margin-right: 6px;
}
.jumpbar .jb-mark img { height: 20px; width: auto; display: block; }
.jumpbar a {
  position: relative;
  padding: 9px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 550; color: var(--ink-dim);
  text-decoration: none; transition: color .2s, background .25s;
  white-space: nowrap;
}
.jumpbar a[data-sec]::after {
  content:""; position: absolute; left: 50%; bottom: 4px; transform: translateX(-50%) scaleX(0);
  width: 16px; height: 2px; border-radius: 2px; background: var(--blue);
  transition: transform .3s var(--ease);
}
.jumpbar a[data-sec]:hover { color: var(--ink); }
.jumpbar a[data-sec]:hover::after { transform: translateX(-50%) scaleX(1); }
.jumpbar a.on {
  color: var(--blue-deep); background: rgba(29,115,188,.09);
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset;
}
.jumpbar a.on::after { transform: translateX(-50%) scaleX(1); }
.jumpbar .jb-cta {
  color: #fff; font-weight: 600; margin-left: 8px;
  background: linear-gradient(180deg, #2b84cd, var(--blue) 60%, var(--blue-deep));
  box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 6px 18px rgba(29,115,188,.35);
  border: none; border-radius: 999px;
}
.jumpbar .jb-cta:hover { background: linear-gradient(180deg, #2b84cd, var(--blue-deep)); color: #fff; transform: translateY(-1px); }
@media (max-width: 860px) {
  .jumpbar { max-width: calc(100vw - 24px); overflow-x: auto; scrollbar-width: none; }
  .jumpbar::-webkit-scrollbar { display: none; }
  .jumpbar .jb-mark { display: none; }
}

/* ============ NAV : quiet, absolute over hero, no chrome ============ */
nav { position: absolute; top: 0; left: 0; right: 0; z-index: 100; }
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 30px var(--pad);
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.logo .mark-img { height: 30px; width: auto; flex: none; display: block; }
.logo .lname { font-weight: 650; font-size: 15px; letter-spacing: -.01em; line-height: 1.15; display: block; }
/* brand wordmark: matches logo file typography */
.logo .lstack { display: flex; flex-direction: column; }
.logo .l1 {
  font-family: "Montserrat", var(--sans); font-weight: 800; text-transform: uppercase;
  font-size: 14.5px; letter-spacing: .04em; line-height: 1.12; color: var(--blue);
}
.logo .l2 {
  font-family: "Montserrat", var(--sans); font-weight: 700; text-transform: uppercase;
  font-size: 11px; letter-spacing: .34em; line-height: 1.25; color: var(--gray);
}
footer .logo .l1 { color: #7ab2e2; }
footer .logo .l2 { color: #8ba0b2; }
.logo .lsub { display: block; font-family: var(--mono); font-size: 8px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-faint); font-weight: 400; margin-top: 2px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: var(--ink-dim); text-decoration: none; font-size: 13.5px; font-weight: 500;
  position: relative; padding-bottom: 3px; transition: color .2s;
}
.nav-links a::after { content:""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--ink); transform: scaleX(0); transition: transform .3s var(--ease); transform-origin: right; }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 16px 34px; border-radius: 999px; font-weight: 550; font-size: 13.5px; letter-spacing: .04em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: none; font-family: var(--sans);
  transition: background .25s, transform .25s var(--ease), box-shadow .25s, border-color .25s, color .25s;
  white-space: nowrap; letter-spacing: .01em;
}
.btn-solid {
  background: linear-gradient(180deg, #2b84cd, var(--blue) 55%, var(--blue-deep));
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,.28) inset, 0 8px 24px rgba(29,115,188,.28);
}
.btn-solid:hover {
  background: linear-gradient(180deg, #2b84cd, var(--blue-deep));
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,.28) inset, 0 16px 38px rgba(29,115,188,.4);
}
.btn-line { background: rgba(253,253,251,.8); backdrop-filter: blur(6px); color: var(--ink); border: 1px solid var(--line-strong); }
.btn-line:hover { border-color: var(--ink); transform: translateY(-2px); }
.sec-dark .btn-line { background: transparent; color: #d7e4ef; border-color: rgba(215,228,239,.4); }
.sec-dark .btn-line:hover { border-color: #fff; color: #fff; }
.btn-sm { padding: 11px 22px; font-size: 13px; }
.btn .arr { transition: transform .3s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* ============ HERO : full-bleed photograph ============ */
.hero { position: relative; min-height: 96vh; display: flex; align-items: flex-end; overflow: hidden; padding-top: 140px; }
/* inset hairline frame: quiet luxury */
.hero::after {
  content:""; position: absolute; inset: 18px; z-index: 3; pointer-events: none;
  border: 1px solid rgba(255,255,255,.4); border-radius: 10px;
  mix-blend-mode: overlay;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transform: scale(1.06); animation: hero-drift 24s ease-in-out infinite alternate; }
@keyframes hero-drift { from { transform: scale(1.06) translateY(0); } to { transform: scale(1.06) translateY(-16px); } }
@media (prefers-reduced-motion: reduce) { .hero-bg img { animation: none; } }
.hero-bg::after {
  content:""; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(253,253,251,.9) 0%, rgba(253,253,251,.4) 20%, rgba(253,253,251,0) 42%),
    linear-gradient(to top, rgba(253,253,251,1) 8%, rgba(253,253,251,.94) 30%, rgba(253,253,251,.55) 55%, rgba(253,253,251,0) 78%),
    linear-gradient(100deg, rgba(253,253,251,.88) 0%, rgba(253,253,251,.55) 38%, rgba(253,253,251,0) 62%);
}
.hero-content { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(48px, 8vh, 90px); }
.hero h1 {
  font-size: clamp(42px, 6vw, 88px); line-height: 1.02;
  margin: 0 0 20px; max-width: 16ch;
}
.hero-sub { font-size: clamp(16px, 1.5vw, 19px); color: var(--ink-dim); max-width: 540px; line-height: 1.75; margin-bottom: 38px; }
.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* hero meta strip */
.hero-meta {
  margin-top: clamp(44px, 7vh, 70px);
  display: inline-flex; gap: 0; flex-wrap: wrap;
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(250,252,254,.72));
  backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(29,115,188,.14); border-radius: 18px;
  box-shadow: 0 1px 0 rgba(255,255,255,.95) inset, 0 24px 60px rgba(16,28,40,.14), 0 4px 14px rgba(29,115,188,.06);
  overflow: hidden;
}
.hero-meta div { padding: 22px clamp(26px, 3.4vw, 46px); border-left: 1px solid var(--line); }
.hero-meta div:first-child { border-left: none; }
.hero-meta div b { display: block; font-family: var(--serif); font-size: clamp(38px, 3.8vw, 56px); font-weight: 400; letter-spacing: -.02em; line-height: 1.05; }
.hero-meta div b .count { font-size: 1em; font-style: normal; color: inherit; letter-spacing: inherit; }
.hero-meta div b i { font-style: italic; color: var(--blue); font-size: .55em; }
.hero-meta div > span { display: block; font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); margin-top: 6px; }

/* ============ SECTIONS ============ */
.sec { padding: clamp(100px, 14vh, 170px) 0; }
.sec + .sec { border-top: 1px solid var(--line); }
.sec-soft { background: var(--bg-soft); }

/* watermark emblem behind sections */
.sec-mark {
  position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  height: min(70vh, 560px); width: auto; opacity: .04; pointer-events: none;
  user-select: none; z-index: 0;
}
.sec-dark .sec-mark { opacity: .05; filter: brightness(0) invert(1); }
.sec-soft .sec-mark { opacity: .05; }

/* faint dot texture on soft sections */
.sec-soft {
  background-image: radial-gradient(rgba(16,28,40,.045) 1px, transparent 1px);
  background-size: 22px 22px;
  background-color: var(--bg-soft);
}
.sec-dark {
  background-image: radial-gradient(rgba(242,246,250,.035) 1px, transparent 1px);
  background-size: 22px 22px;
}
.sec-head {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: end;
  margin-bottom: clamp(52px, 8vh, 90px);
  padding-bottom: 34px; border-bottom: 1px solid var(--line);
  position: relative;
}
.sec-head::after {
  content:""; position: absolute; bottom: -1px; left: 0; width: 72px; height: 2px;
  background: linear-gradient(90deg, var(--blue), rgba(29,115,188,0));
}
.sec-head h2 { font-size: clamp(38px, 4.8vw, 68px); line-height: 1.04; margin-top: 24px; }
.sec-head .lede { font-size: 16px; color: var(--ink-dim); max-width: 420px; justify-self: end; line-height: 1.8; }

/* ============ SERVICES : editorial index rows ============ */
.svc-row {
  display: grid; grid-template-columns: 110px 1fr 1.4fr auto; gap: 34px; align-items: center;
  padding: 44px 0; border-top: 1px solid var(--line);
  transition: padding-left .35s var(--ease);
}
.svc-row:last-of-type { border-bottom: 1px solid var(--line); }
.svc-row:hover { padding-left: 16px; }
.svc-row .idx { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--ink-faint); }
.svc-row h3 { font-family: var(--serif); font-size: clamp(24px, 2.6vw, 34px); font-weight: 400; letter-spacing: -.01em; }
.svc-row p { font-size: 14.5px; color: var(--ink-dim); line-height: 1.75; max-width: 470px; }
.svc-row p b { display: block; font-family: var(--mono); font-weight: 500; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.svc-row .go {
  width: 48px; height: 48px; border: 1px solid var(--line-strong); border-radius: 50%;
  display: grid; place-items: center; flex: none;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.svc-row .go svg { width: 16px; height: 16px; stroke: var(--ink); transition: transform .3s, stroke .3s; }
.svc-row:hover .go { background: var(--blue); border-color: var(--blue); box-shadow: 0 8px 24px rgba(29,115,188,.35); }
.svc-row:hover .go svg { stroke: #fff; transform: rotate(-45deg); }
/* blue accent line that grows on hover */
.svc-row::before {
  content:""; position: absolute; left: 0; top: -1px; height: 1px; width: 0;
  background: var(--blue); transition: width .5s var(--ease); z-index: 1;
}
.svc-row { position: relative; }
.svc-row:hover::before { width: 110px; }

/* ============ HOW IT WORKS : numbered editorial ============ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(28px, 4vw, 56px); }
.stepc {
  position: relative; padding: 26px 22px 24px; border-top: 1px solid var(--line-strong);
  border-radius: 0 0 10px 10px; transition: background .35s, box-shadow .35s, transform .35s var(--ease);
}
.stepc:hover { background: #fff; box-shadow: 0 18px 44px rgba(16,28,40,.09); transform: translateY(-4px); }
.sec-dark .stepc:hover { background: var(--bg-soft); box-shadow: 0 18px 44px rgba(0,0,0,.3); }
.stepc .bignum {
  position: absolute; top: -16px; left: 22px; background: var(--bg-soft); padding: 0 14px 0 0;
  font-family: var(--serif); font-style: italic; font-size: 30px; color: var(--blue); line-height: 1;
  transition: transform .35s var(--ease);
}
.stepc:hover .bignum { transform: scale(1.15); }
.sec-soft .stepc .bignum { background: var(--bg-soft); }
/* connector arrow between steps */
.stepc::after {
  content:"→"; position: absolute; right: -34px; top: 26px;
  color: var(--ink-faint); font-size: 17px; opacity: .6;
}
.steps .stepc:last-child::after { display: none; }
@media (max-width: 1024px) { .stepc::after { display: none; } }
.sec-dark .stepc .bignum { background: var(--navy); color: #7ab2e2; }
.stepc h3 { font-size: 18px; font-weight: 600; letter-spacing: -.015em; margin: 18px 0 10px; font-family: var(--sans); }
.stepc p { font-size: 14px; color: var(--ink-dim); line-height: 1.75; }
.stepc .n { display: none; }

/* ============ SOLUTIONS (dark, photo + list) ============ */
.edge-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(48px, 6vw, 100px); align-items: center; }
.edge-copy h2 { font-size: clamp(34px, 4.4vw, 58px); line-height: 1.05; margin: 24px 0 26px; }
.edge-copy > p { font-size: 16px; color: var(--ink-dim); line-height: 1.8; max-width: 460px; margin-bottom: 34px; }
.edge-photo { border-radius: 10px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.35); margin-top: 40px; max-width: 480px; }
.edge-photo img { display: block; width: 100%; height: auto; }
.edge-list { display: grid; }
.edge-item { padding: 26px 0; border-top: 1px solid var(--line); transition: padding-left .3s var(--ease); }
.edge-item:hover { padding-left: 10px; }
.edge-item:last-child { border-bottom: 1px solid var(--line); }
.edge-item h4 { font-size: 17px; font-weight: 600; margin-bottom: 7px; letter-spacing: -.01em; }
.edge-item h4 span { font-family: var(--serif); font-style: italic; font-weight: 400; color: #7ab2e2; margin-right: 14px; font-size: 16px; }
.edge-item p { font-size: 14.5px; color: var(--ink-dim); line-height: 1.7; max-width: 480px; }

/* ============ ABOUT band ============ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 100px); align-items: start; }
.about-copy h2 { font-size: clamp(34px, 4.4vw, 58px); line-height: 1.05; margin: 24px 0 26px; }
.about-copy p { font-size: 16px; color: var(--ink-dim); line-height: 1.8; max-width: 480px; margin-bottom: 20px; }
.about-copy p b { color: var(--ink); font-weight: 600; }
.certs { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 30px; }
.cert {
  display: inline-flex; gap: 9px; align-items: center;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 16px;
  background: linear-gradient(180deg, #fff, #f7fafc);
  font-size: 12.5px; font-weight: 550; color: var(--ink-dim);
  box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 3px 10px rgba(16,28,40,.05);
  transition: border-color .3s, box-shadow .3s, transform .3s var(--ease);
}
.cert:hover { border-color: rgba(29,115,188,.35); transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 8px 20px rgba(16,28,40,.09); }
.cert i { font-style: normal; color: var(--blue); font-size: 10px; }
.about-quote {
  position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 44px 40px 38px; margin-top: 14px;
  box-shadow: 0 2px 6px rgba(16,28,40,.04), 0 16px 40px rgba(16,28,40,.07);
}
.about-quote::before {
  content:"\201C"; position: absolute; top: 6px; left: 28px;
  font-family: var(--serif); font-size: 90px; line-height: 1; color: var(--blue); opacity: .18;
}
.about-quote blockquote { font-family: var(--serif); font-style: italic; font-size: clamp(22px, 2.4vw, 32px); line-height: 1.4; letter-spacing: -.01em; position: relative; }
.about-quote .attr { font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); margin-top: 18px; display: flex; align-items: center; gap: 10px; }
.about-quote .attr::before { content:""; width: 22px; height: 1px; background: var(--blue); }

/* ============ PACKAGES ============ */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan {
  padding: 46px 40px; border: 1px solid var(--line); border-radius: 14px;
  display: flex; flex-direction: column; background: #fff;
  box-shadow: 0 2px 6px rgba(16,28,40,.04), 0 12px 30px rgba(16,28,40,.05);
  transition: transform .35s var(--ease), box-shadow .35s;
  position: relative; overflow: hidden;
}
.plan::before {
  content:""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gray));
  opacity: 0; transition: opacity .35s;
}
.plan:hover { transform: translateY(-6px); box-shadow: 0 6px 14px rgba(16,28,40,.06), 0 26px 60px rgba(16,28,40,.13); }
.plan:hover::before { opacity: 1; }
.plan.feature {
  background: linear-gradient(180deg, #10283f 0%, var(--navy) 100%);
  color: #f2f6fa; border-color: var(--navy);
  box-shadow: 0 30px 70px rgba(12,31,49,.35);
}
.plan.feature::before { opacity: 1; background: linear-gradient(90deg, #7ab2e2, var(--blue)); }
.plan .tier { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-faint); display: flex; justify-content: space-between; align-items: center; }
.plan.feature .tier { color: #71879a; }
.plan .tier .flag { border: 1px solid rgba(122,178,226,.45); border-radius: 999px; padding: 4px 12px; font-size: 10px; color: #7ab2e2; }
.plan .amt { font-family: var(--serif); font-size: clamp(30px, 3vw, 42px); font-weight: 400; margin: 28px 0 6px; }
.plan .desc { font-size: 13.5px; color: var(--ink-dim); margin-bottom: 32px; }
.plan.feature .desc { color: #b4c4d2; }
.plan ul { list-style: none; display: grid; gap: 13px; margin-bottom: 38px; flex: 1; }
.plan ul li { font-size: 14px; color: var(--ink-dim); padding-left: 24px; position: relative; line-height: 1.6; }
.plan.feature ul li { color: #b4c4d2; }
.plan ul li::before { content:"—"; position: absolute; left: 0; color: var(--blue); }
.plan.feature ul li::before { color: #7ab2e2; }

/* ============ FAQ ============ */
.faq-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.faq-intro h2 { font-size: clamp(34px, 4.4vw, 58px); line-height: 1.05; margin: 24px 0 22px; }
.faq-intro p { font-size: 15.5px; color: var(--ink-dim); line-height: 1.8; max-width: 360px; }
.uc-row { border-top: 1px solid var(--line); }
.uc-row:last-child { border-bottom: 1px solid var(--line); }
.uc-head { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; padding: 26px 0; cursor: pointer; user-select: none; transition: padding-left .3s var(--ease); }
.uc-head:hover { padding-left: 8px; }
.uc-head h3 { font-size: 17px; font-weight: 550; letter-spacing: -.01em; font-family: var(--sans); }
.uc-head .idx, .uc-head .for { display: none; }
.uc-head .tog { width: 38px; height: 38px; border: 1px solid var(--line-strong); border-radius: 50%; display: grid; place-items: center; flex: none; transition: background .3s, border-color .3s, transform .4s var(--ease); }
.uc-head .tog svg { width: 13px; height: 13px; stroke: var(--ink); transition: stroke .3s; }
.uc-row.open .uc-head .tog { background: var(--blue); border-color: var(--blue); transform: rotate(135deg); }
.uc-row.open .uc-head .tog svg { stroke: #fff; }
.uc-body { overflow: hidden; max-height: 0; transition: max-height .5s var(--ease); }
.uc-inner { padding: 0 0 28px; }
.uc-inner p { font-size: 14.5px; color: var(--ink-dim); line-height: 1.8; max-width: 640px; }
.uc-inner p b { color: var(--ink); font-weight: 600; }

/* ============ CTA ============ */
.cta { text-align: center; padding: clamp(110px, 16vh, 180px) 0; position: relative; overflow: hidden; }
.cta h2 { font-size: clamp(40px, 5.8vw, 84px); line-height: 1.02; margin: 26px 0 24px; }
.cta p { font-size: 16.5px; color: var(--ink-dim); max-width: 500px; margin: 0 auto 42px; line-height: 1.8; }
.sec-dark.cta p { color: #b4c4d2; }
.cta .mail { font-family: var(--mono); font-size: 12.5px; letter-spacing: .05em; margin-top: 28px; color: var(--ink-faint); }
.cta .mail a { color: #7ab2e2; text-decoration: none; border-bottom: 1px solid rgba(122,178,226,.35); padding-bottom: 2px; }

/* ============ FOOTER ============ */
footer { background: linear-gradient(180deg, #0d2236 0%, var(--navy) 30%); color: #b4c4d2; padding: 72px 0 36px; position: relative; z-index: 2; }
footer::before { content:""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(122,178,226,.6), transparent); }
.foot-top { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; padding-bottom: 46px; }
.foot-brand { max-width: 320px; }
.foot-brand .logo { color: #fff; margin-bottom: 14px; }
.foot-brand .logo .lsub { color: #71879a; }
.foot-brand .logo .mark-img { filter: brightness(0) invert(1) opacity(.95); }
.foot-brand p { color: #71879a; font-size: 13px; line-height: 1.7; }
.foot-brand .foot-slogan {
  font-family: var(--serif); font-style: italic; font-size: 16px; color: #d7e4ef;
  margin-bottom: 8px; letter-spacing: .01em;
}
.foot-cols { display: flex; gap: clamp(44px, 6vw, 90px); flex-wrap: wrap; }
.foot-col h4 { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: #71879a; margin-bottom: 16px; }
.foot-col a, .foot-col span { display: block; color: #b4c4d2; text-decoration: none; font-size: 13.5px; margin-bottom: 10px; line-height: 1.6; }
.foot-col a:hover { color: #fff; }
.disclaimer {
  border: 1px solid rgba(180,196,210,.2); border-radius: 8px;
  padding: 16px 20px; font-size: 11.5px; line-height: 1.7; color: #8ba0b2; margin-bottom: 28px;
}
.disclaimer b { color: #d7e4ef; }
.foot-base { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid rgba(180,196,210,.15); font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: #71879a; }
.foot-base b { color: #b4c4d2; }

/* ============ REVEALS ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-l { opacity: 0; transform: translateX(-34px); transition: opacity .95s var(--ease), transform .95s var(--ease); }
.reveal-r { opacity: 0; transform: translateX(34px); transition: opacity .95s var(--ease), transform .95s var(--ease); }
.reveal-l.in, .reveal-r.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; }
[data-plx] { will-change: transform; }
.xline { display: none; }
.count {}
@media (prefers-reduced-motion: reduce) { .reveal, .reveal-l, .reveal-r { opacity: 1; transform: none; transition: none; } }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .sec-head, .edge-grid, .about-grid, .faq-grid { grid-template-columns: 1fr; }
  .sec-head .lede { justify-self: start; }
  .steps { grid-template-columns: 1fr 1fr; gap: 44px 32px; }
  .plans { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 1fr auto; }
  .svc-row .idx { display: none; }
  .svc-row p { grid-column: 1 / 2; }
  .hero { min-height: 88vh; }
}
@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr; }
  .hero-meta { gap: 24px; }
}
