:root {
  --bg: #0b1220;
  --bg-elevated: #121a2b;
  --bg-panel: #162033;
  --ink: #f4f7fb;
  --ink-muted: #b7c2d4;
  --teal: #2ec4b6;
  --teal-soft: #7fd9cf;
  --orange: #f4a261;
  --line: rgba(255, 255, 255, 0.12);
  --focus: #ffe08a;
  --max: 1120px;
  --narrow: 720px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(46, 196, 182, 0.16), transparent 55%),
    radial-gradient(900px 500px at 0% 20%, rgba(244, 162, 97, 0.12), transparent 50%),
    linear-gradient(180deg, #0a101c 0%, var(--bg) 40%, #0d1524 100%);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #ffffff;
}

a:focus-visible,
.button:focus-visible,
.skip-link:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.65rem 0.9rem;
  background: var(--focus);
  color: #111;
  font-weight: 600;
  border-radius: 0.4rem;
}

.skip-link:focus {
  top: 1rem;
}

.shell {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.shell.narrow {
  width: min(var(--narrow), calc(100% - 2.5rem));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(11, 18, 32, 0.86);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
  padding-block: 0.65rem;
}

.brand-logo {
  width: min(220px, 52vw);
  height: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--teal-soft);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  padding: 5rem 0 4.5rem;
  overflow: hidden;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11, 18, 32, 0.15) 0%, rgba(11, 18, 32, 0.72) 55%, rgba(11, 18, 32, 0.96) 100%),
    radial-gradient(ellipse 70% 55% at 70% 30%, rgba(46, 196, 182, 0.22), transparent 65%),
    radial-gradient(ellipse 55% 45% at 20% 70%, rgba(244, 162, 97, 0.16), transparent 60%);
}

.hero-inner {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--teal-soft);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 650;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: manual;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: #ffffff;
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 3.4vw, 2.45rem);
}

h3 {
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
}

.hero-lede,
.section-lede,
.section p {
  color: var(--ink-muted);
}

.hero-lede {
  margin: 0 0 1.75rem;
  max-width: 38rem;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #dbe4f2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.2rem;
  border-radius: 0.55rem;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button.primary {
  background: var(--teal);
  color: #06201d;
}

.button.primary:hover {
  background: #45d6c7;
  color: #031412;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.28);
}

.button.secondary:hover {
  border-color: var(--teal-soft);
  color: #ffffff;
}

.section {
  padding: 4.25rem 0;
}

.section-panel {
  background: rgba(22, 32, 51, 0.72);
  border-block: 1px solid var(--line);
}

.section-muted {
  background: rgba(18, 26, 43, 0.55);
}

.feature-list,
.boundary-list,
.approach-list {
  margin: 1.25rem 0 1.5rem;
  padding-left: 1.2rem;
  color: var(--ink-muted);
}

.feature-list li,
.boundary-list li {
  margin-bottom: 0.45rem;
}

.approach-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.approach-list li {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--teal);
  background: rgba(255, 255, 255, 0.03);
}

.approach-list strong {
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
}

.approach-list span {
  color: var(--ink-muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.service-block {
  padding: 1.25rem 1.2rem 1.4rem;
  border: 1px solid var(--line);
  background: rgba(11, 18, 32, 0.35);
}

.status-label {
  margin: 0 0 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-label.available {
  color: var(--teal-soft);
}

.status-label.future {
  color: var(--orange);
}

.text-link {
  font-weight: 600;
}

.contact-actions {
  margin-top: 1.5rem;
}

.muted-inline {
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.hero-compact {
  min-height: auto;
  padding: 4rem 0 3rem;
  align-items: center;
}

.ready-grid {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 0;
}

.ready-grid > div {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  background: rgba(11, 18, 32, 0.35);
}

.ready-grid dt {
  margin: 0 0 0.35rem;
  color: var(--ink);
  font-weight: 600;
}

.ready-grid dd {
  margin: 0;
  color: var(--ink-muted);
}

.ready-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 0.45rem;
  border-radius: 0.35rem;
  background: rgba(46, 196, 182, 0.18);
  color: var(--teal-soft);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
  word-break: break-word;
}

.footer-quiet {
  color: var(--ink-muted);
  font-weight: 500;
  text-decoration: none;
}

.footer-quiet:hover,
.footer-quiet:focus-visible {
  color: var(--teal-soft);
}

.site-nav a[aria-current="page"] {
  color: var(--teal-soft);
}

.footer-inner a {
  color: var(--ink-muted);
  text-decoration: none;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  color: var(--teal-soft);
}

.site-footer {
  padding: 2.75rem 0 3.25rem;
  border-top: 1px solid var(--line);
  background: #080e18;
}

.footer-inner p {
  margin: 0 0 0.45rem;
  color: var(--ink-muted);
}

.footer-inner strong {
  color: var(--ink);
}

.footer-note {
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3.5rem;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .shell,
  .shell.narrow {
    width: calc(100% - 1.75rem);
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
