:root {
  --ink-950: #031426;
  --ink-900: #06213b;
  --ink-850: #092b4b;
  --ink-800: #0b355b;
  --blue-600: #007dc4;
  --blue-500: #00a2e8;
  --blue-400: #38bdf8;
  --ice-100: #e8f6ff;
  --paper: #ffffff;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-200: #dbe5ef;
  --slate-100: #eef4f8;
  --signal: #f4b41a;
  --success: #12a36f;
  --danger: #c63f49;
  --shadow: 0 24px 64px rgb(3 20 38 / 16%);
  --radius: 1rem;
  --content: 78rem;
  --header-height: 6.25rem;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink-950);
  background: var(--paper);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 20rem; font-size: 1rem; line-height: 1.65; background: var(--paper); }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--signal); outline-offset: 3px; }
.container { width: min(calc(100% - 2rem), var(--content)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2rem), 54rem); margin-inline: auto; }
.skip-link { position: fixed; top: .5rem; left: .5rem; z-index: 999; padding: .7rem 1rem; transform: translateY(-150%); background: var(--paper); color: var(--ink-950); font-weight: 800; }
.skip-link:focus { transform: none; }
.eyebrow { margin: 0 0 .8rem; color: var(--blue-600); font-size: .8rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow--light { color: var(--blue-400); }
h1, h2, h3 { margin: 0; font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif; line-height: 1.04; letter-spacing: -.02em; }
h1 { font-size: clamp(2.7rem, 7vw, 6.4rem); }
h2 { font-size: clamp(2rem, 4.5vw, 4rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.85rem); }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.05rem, 1.7vw, 1.3rem); line-height: 1.7; }
.muted { color: var(--slate-500); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 3.25rem; padding: .78rem 1.2rem; border: 2px solid var(--blue-500); border-radius: .25rem; background: var(--blue-500); color: var(--ink-950); font-weight: 900; letter-spacing: .04em; text-decoration: none; text-transform: uppercase; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgb(0 162 232 / 28%); background: var(--blue-400); }
.button--outline { background: transparent; color: var(--paper); border-color: rgb(255 255 255 / 68%); }
.button--dark { background: var(--ink-900); border-color: var(--ink-900); color: var(--paper); }
.button--small { min-height: 2.65rem; padding: .55rem .9rem; font-size: .82rem; }

.utility-bar { background: #020c17; color: #c7d9e8; font-size: .78rem; letter-spacing: .04em; }
.utility-bar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 2.35rem; gap: 1rem; }
.utility-bar p { margin: 0; }
.utility-bar strong { color: var(--paper); }
.utility-links { display: flex; gap: 1.2rem; }
.utility-links a { text-underline-offset: .2rem; }
.site-header { position: sticky; top: 0; z-index: 100; background: rgb(6 33 59 / 96%); color: var(--paper); border-bottom: 1px solid rgb(255 255 255 / 12%); backdrop-filter: blur(14px); }
.nav-shell { display: grid; grid-template-columns: minmax(16rem, 1fr) auto auto; align-items: center; min-height: var(--header-height); gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; text-decoration: none; min-width: 0; }
.brand img { width: min(26rem, 100%); max-height: 5rem; object-fit: contain; object-position: left center; filter: drop-shadow(0 6px 18px rgb(0 0 0 / 18%)); }
.primary-nav { display: flex; align-items: center; gap: .2rem; }
.primary-nav a { position: relative; padding: .8rem .72rem; color: #dbeaf5; font-size: .82rem; font-weight: 900; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; white-space: nowrap; }
.primary-nav a::after { content: ""; position: absolute; right: .7rem; bottom: .45rem; left: .7rem; height: 2px; transform: scaleX(0); background: var(--blue-400); transform-origin: left; transition: transform .2s; }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: .55rem; }
.icon-button, .menu-button { width: 2.8rem; height: 2.8rem; border: 1px solid rgb(255 255 255 / 25%); border-radius: 50%; background: transparent; color: var(--paper); }
.icon-button { font-size: 1.15rem; }
.menu-button { display: none; width: auto; padding-inline: .85rem; border-radius: .25rem; font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }

.hero { position: relative; isolation: isolate; min-height: calc(100svh - 8.6rem); display: grid; align-items: end; overflow: hidden; color: var(--paper); background: radial-gradient(circle at 72% 26%, rgb(0 162 232 / 24%), transparent 28%), linear-gradient(115deg, #020b14 0%, #06213b 48%, #031426 100%); }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background-image: linear-gradient(rgb(56 189 248 / 7%) 1px, transparent 1px), linear-gradient(90deg, rgb(56 189 248 / 7%) 1px, transparent 1px); background-size: 4.5rem 4.5rem; mask-image: linear-gradient(to bottom, black, transparent 86%); }
.hero::after { content: ""; position: absolute; z-index: -1; width: 62vw; aspect-ratio: 1; right: -18vw; top: -24vw; border: 1px solid rgb(56 189 248 / 22%); border-radius: 50%; box-shadow: 0 0 0 6vw rgb(0 162 232 / 3%), 0 0 0 13vw rgb(0 162 232 / 3%); }
.hero__inner { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(17rem, .55fr); gap: 3rem; align-items: end; padding-block: clamp(5rem, 10vw, 8rem) 4rem; }
.hero__content { max-width: 56rem; }
.hero h1 { max-width: 12ch; text-transform: uppercase; text-wrap: balance; }
.hero__summary { max-width: 42rem; margin: 1.5rem 0 2rem; color: #d6e8f4; font-size: clamp(1.05rem, 1.8vw, 1.32rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.hero__panel { border-top: 4px solid var(--blue-500); background: rgb(2 12 23 / 70%); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.hero__panel-head { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.2rem; border-bottom: 1px solid rgb(255 255 255 / 12%); }
.hero__panel-head span { color: var(--blue-400); font-size: .74rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.hero__controls { display: flex; gap: .35rem; }
.hero__control { width: 2.35rem; height: 2.35rem; border: 1px solid rgb(255 255 255 / 18%); background: transparent; color: var(--paper); }
.hero__slide { display: none; min-height: 12rem; padding: 1.3rem; }
.hero__slide.is-active { display: block; animation: slide-in .35s ease both; }
.hero__slide p { color: #c9dae7; }
.hero__slide a { color: var(--paper); font-weight: 800; text-underline-offset: .25rem; }
.hero__dots { display: flex; gap: .45rem; padding: 0 1.3rem 1.3rem; }
.hero__dot { width: 2.5rem; height: .28rem; padding: 0; border: 0; background: rgb(255 255 255 / 25%); }
.hero__dot.is-active { background: var(--blue-400); }
@keyframes slide-in { from { opacity: 0; transform: translateY(.45rem); } }

.credibility-strip { background: var(--blue-600); color: var(--paper); }
.credibility-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.credibility-item { padding: 1.5rem; border-right: 1px solid rgb(255 255 255 / 22%); }
.credibility-item:last-child { border-right: 0; }
.credibility-item strong { display: block; font-family: "Arial Narrow", Impact, sans-serif; font-size: 1.45rem; text-transform: uppercase; }
.credibility-item span { color: #d9efff; }
.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section--pale { background: var(--slate-100); }
.section--dark { color: var(--paper); background: var(--ink-950); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2.5rem; }
.section-head > div { max-width: 47rem; }
.text-link { color: var(--blue-600); font-weight: 900; text-underline-offset: .3rem; }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.service-card { position: relative; min-height: 22rem; display: flex; flex-direction: column; padding: 1.6rem; overflow: hidden; border: 1px solid var(--slate-200); background: var(--paper); box-shadow: 0 12px 34px rgb(3 20 38 / 7%); }
.service-card::before { content: attr(data-number); color: var(--ice-100); font-family: Impact, sans-serif; font-size: 7rem; line-height: .8; position: absolute; right: .5rem; top: 1.2rem; }
.service-card > * { position: relative; }
.service-card h3 { margin-top: auto; padding-top: 5rem; }
.service-card p { color: var(--slate-500); }
.service-card a { margin-top: auto; color: var(--blue-600); font-weight: 900; }
.service-card:hover { border-color: var(--blue-500); transform: translateY(-4px); transition: .25s; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.principles { display: grid; gap: .7rem; }
.principle { display: grid; grid-template-columns: 4rem 1fr; gap: 1rem; padding: 1.25rem; border: 1px solid rgb(255 255 255 / 14%); background: rgb(255 255 255 / 4%); }
.principle__mark { font-family: Impact, sans-serif; color: var(--blue-400); font-size: 2.1rem; }
.principle p { margin: .35rem 0 0; color: #c9dae7; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: steps; }
.step { position: relative; padding: 1.5rem; border-top: 3px solid var(--slate-200); counter-increment: steps; }
.step::before { content: counter(steps, decimal-leading-zero); display: block; color: var(--blue-600); font-family: Impact, sans-serif; font-size: 2rem; }
.step:not(:last-child)::after { content: ""; position: absolute; top: -3px; right: 0; width: 50%; border-top: 3px solid var(--blue-500); }
.cta-band { padding-block: 3rem; color: var(--paper); background: linear-gradient(110deg, var(--blue-600), #04527f); }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.page-hero { position: relative; overflow: hidden; padding-block: clamp(5rem, 9vw, 8rem); color: var(--paper); background: radial-gradient(circle at 84% 30%, rgb(0 162 232 / 25%), transparent 26%), linear-gradient(120deg, #031426, #0b355b); }
.page-hero::after { content: ""; position: absolute; inset: auto 0 0; height: 5px; background: linear-gradient(90deg, var(--blue-500) 0 22%, transparent 22% 24%, var(--blue-400) 24% 43%, transparent 43%); }
.page-hero h1 { max-width: 14ch; text-transform: uppercase; }
.page-hero p:not(.eyebrow) { max-width: 48rem; margin-top: 1.25rem; color: #d6e8f4; font-size: 1.18rem; }
.filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.filter-button { min-height: 2.8rem; padding: .55rem 1rem; border: 1px solid var(--slate-200); border-radius: 999px; background: var(--paper); color: var(--ink-900); font-weight: 800; }
.filter-button[aria-pressed="true"] { border-color: var(--blue-600); background: var(--ink-900); color: var(--paper); }
.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.service-detail { padding: 2rem; border: 1px solid var(--slate-200); background: var(--paper); }
.service-detail[hidden] { display: none; }
.service-detail__meta { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.25rem 0; }
.tag { padding: .28rem .6rem; border-radius: 999px; background: var(--ice-100); color: var(--ink-800); font-size: .78rem; font-weight: 800; }
.check-list { margin: 1rem 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: .45rem 0 .45rem 1.6rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 900; }
.boundary-box { padding: 1.5rem; border-left: 5px solid var(--signal); background: #fff8e4; }
.about-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 3rem; }
.fact-panel { padding: 2rem; color: var(--paper); background: var(--ink-900); }
.fact-panel dl { margin: 1.5rem 0 0; }
.fact-panel div { padding: 1rem 0; border-top: 1px solid rgb(255 255 255 / 15%); }
.fact-panel dt { color: var(--blue-400); font-size: .75rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.fact-panel dd { margin: .2rem 0 0; font-weight: 700; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.value { padding: 1.6rem; border-top: 4px solid var(--blue-500); background: var(--paper); }
.value p { margin-top: .75rem; color: var(--slate-500); }

.form-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(18rem, .75fr); gap: 3rem; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: grid; gap: .35rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 3.25rem; border: 1px solid #aebdca; border-radius: .25rem; padding: .75rem; background: var(--paper); color: var(--ink-950); }
.field textarea { min-height: 10rem; resize: vertical; }
.field small { color: var(--slate-500); }
.field-error { color: var(--danger); font-size: .85rem; font-weight: 700; }
.form-actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.form-status { grid-column: 1 / -1; padding: 1rem; border-left: 4px solid var(--success); background: #e9fbf4; }
.contact-panel { padding: 1.7rem; background: var(--ink-900); color: var(--paper); }
.contact-panel p { color: #c9dae7; }
.contact-panel hr { border: 0; border-top: 1px solid rgb(255 255 255 / 16%); margin: 1.5rem 0; }
.draft-preview { margin-top: 1rem; padding: 1rem; white-space: pre-wrap; background: #020c17; color: #dcecf7; border-radius: .25rem; }
.accordion { border-top: 1px solid var(--slate-200); }
.accordion__item { border-bottom: 1px solid var(--slate-200); }
.accordion__trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.3rem 0; border: 0; background: transparent; color: var(--ink-950); text-align: left; font-size: 1.08rem; font-weight: 900; }
.accordion__trigger span:last-child { color: var(--blue-600); font-size: 1.5rem; transition: transform .2s; }
.accordion__trigger[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.accordion__panel { padding: 0 0 1.3rem; color: var(--slate-700); }

.site-footer { color: #c7d9e8; background: #020c17; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(2, .6fr); gap: 3rem; padding-block: 4rem; }
.footer-brand img { width: min(30rem, 100%); max-height: 5rem; object-fit: contain; object-position: left; }
.footer-brand p { max-width: 36rem; margin-top: 1rem; }
.footer-column h3 { color: var(--paper); font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-column ul { margin: 1rem 0 0; padding: 0; list-style: none; }
.footer-column li { margin: .5rem 0; }
.footer-column a { text-underline-offset: .25rem; }
.footer-bottom { padding-block: 1.25rem; border-top: 1px solid rgb(255 255 255 / 12%); font-size: .8rem; }
.footer-bottom__inner { display: flex; justify-content: space-between; gap: 1rem; }

.search-dialog { width: min(42rem, calc(100% - 2rem)); border: 0; padding: 0; background: transparent; }
.search-dialog::backdrop { background: rgb(2 12 23 / 82%); backdrop-filter: blur(4px); }
.search-box { overflow: hidden; background: var(--paper); box-shadow: var(--shadow); }
.search-box__head { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.2rem; color: var(--paper); background: var(--ink-900); }
.search-box__head button { border: 0; background: transparent; color: var(--paper); font-size: 1.4rem; }
.search-box__body { padding: 1.3rem; }
.search-input-wrap { display: grid; grid-template-columns: 1fr auto; }
.search-input-wrap input { min-width: 0; min-height: 3.4rem; padding: .75rem; border: 2px solid var(--ink-900); }
.search-results { margin: 1rem 0 0; padding: 0; list-style: none; }
.search-results a { display: block; padding: .8rem; border-bottom: 1px solid var(--slate-200); text-decoration: none; }
.search-results a:hover { background: var(--slate-100); }
.search-results strong { display: block; }
.search-results span { color: var(--slate-500); font-size: .9rem; }
.reveal { opacity: 0; transform: translateY(1rem); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 68rem) {
  .nav-shell { grid-template-columns: 1fr auto; }
  .primary-nav { position: fixed; inset: calc(var(--header-height) + 2.35rem) 0 auto; display: none; max-height: calc(100svh - var(--header-height) - 2.35rem); overflow: auto; flex-direction: column; align-items: stretch; padding: 1rem; background: var(--ink-950); box-shadow: var(--shadow); }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 1rem; border-bottom: 1px solid rgb(255 255 255 / 12%); }
  .menu-button { display: inline-block; }
  .nav-actions .button { display: none; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__panel { max-width: 38rem; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 48rem) {
  :root { --header-height: 5rem; }
  .utility-bar__inner { min-height: 2.75rem; }
  .utility-links { display: none; }
  .brand img { max-height: 4rem; }
  .hero { min-height: auto; }
  .hero__inner { padding-block: 5rem 2rem; }
  .credibility-grid, .service-grid, .split, .steps, .service-detail-grid, .about-grid, .values-grid, .form-layout, .footer-grid { grid-template-columns: 1fr; }
  .credibility-item { border-right: 0; border-bottom: 1px solid rgb(255 255 255 / 22%); }
  .section-head, .cta-band__inner, .footer-bottom__inner { align-items: flex-start; flex-direction: column; }
  .contact-form { grid-template-columns: 1fr; }
  .field--full, .form-actions, .form-status { grid-column: auto; }
  .step:not(:last-child)::after { width: 25%; }
}

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