:root {
  --ink: #102a2c;
  --ink-deep: #071718;
  --paper: #f7f4ee;
  --mist: #e4ece8;
  --white: #ffffff;
  --blue: #164a7a;
  --blue-deep: #0a2d55;
  --blue-soft: #e7f0f8;
  --teal: #1e8178;
  --copper: #b5673e;
  --sage: #c7d9c5;
  --shadow: 0 18px 50px rgba(7, 23, 24, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 40px;
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 7px 14px 7px 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(7, 23, 24, 0.5);
  backdrop-filter: blur(14px);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  box-shadow: 0 10px 28px rgba(7, 23, 24, 0.18);
}

.brand-mark rect {
  fill: var(--blue-deep);
  stroke: rgba(255, 255, 255, 0.72);
  stroke-width: 1.5;
}

.brand-mark path:not(.brand-accent) {
  fill: var(--white);
}

.brand-mark .brand-accent {
  fill: none;
  stroke: var(--copper);
  stroke-linecap: round;
  stroke-width: 4;
}

.domain-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  font-size: 0.9rem;
}

.domain-nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 23, 24, 0.54);
  backdrop-filter: blur(14px);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  text-decoration: none;
  text-shadow: 0 1px 12px rgba(7, 23, 24, 0.5);
}

.domain-nav a:hover,
.domain-nav a:focus-visible {
  background: rgba(7, 23, 24, 0.68);
}

.hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-deep);
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(7, 23, 24, 0.94) 0%, rgba(7, 23, 24, 0.72) 40%, rgba(7, 23, 24, 0.08) 78%),
    linear-gradient(0deg, rgba(7, 23, 24, 0.25), rgba(7, 23, 24, 0.12));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 86vh;
  max-width: 1160px;
  margin: 0 auto;
  padding: 132px 40px 76px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--sage);
}

.section-label {
  color: var(--teal);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 5.4rem;
  line-height: 0.96;
  font-weight: 760;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 8px;
  background: var(--copper);
  color: var(--white);
  box-shadow: var(--shadow);
  font-weight: 700;
  text-decoration: none;
}

.primary-action svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.primary-action:focus-visible,
.primary-action:hover {
  background: #99532f;
}

.intro-section,
.detail-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 70px 40px 82px;
}

.detail-section {
  padding-top: 0;
}

.intro-copy h2,
.detail-heading h2 {
  margin-bottom: 18px;
  color: var(--ink-deep);
  font-size: 2.55rem;
  line-height: 1.08;
}

.intro-copy p:not(.section-label),
.detail-copy p {
  max-width: 580px;
  color: #40595a;
  font-size: 1.08rem;
}

.detail-copy p {
  margin-bottom: 18px;
}

.detail-copy p:last-child {
  margin-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  min-height: 228px;
  padding: 22px;
  border: 1px solid rgba(16, 42, 44, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 34px rgba(16, 42, 44, 0.08);
}

.feature-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  margin-bottom: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--mist);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
}

.feature-card h3 {
  margin-bottom: 10px;
  color: var(--ink-deep);
  font-size: 1.08rem;
}

.feature-card p {
  margin-bottom: 0;
  color: #496061;
  font-size: 0.96rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 40px;
  border-top: 1px solid rgba(16, 42, 44, 0.12);
  color: #40595a;
}

.site-footer p {
  margin: 0;
  font-weight: 800;
  color: var(--ink);
}

.site-footer span {
  display: block;
  margin-top: 2px;
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .site-header {
    padding: 18px 24px;
  }

  .domain-nav {
    display: none;
  }

  h1 {
    font-size: 4rem;
  }

  .hero-content {
    padding: 116px 24px 62px;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(7, 23, 24, 0.96) 0%, rgba(7, 23, 24, 0.76) 56%, rgba(7, 23, 24, 0.26) 100%),
      linear-gradient(0deg, rgba(7, 23, 24, 0.38), rgba(7, 23, 24, 0.1));
  }

  .intro-section,
  .detail-section {
    grid-template-columns: 1fr;
    padding: 56px 24px 64px;
  }

  .detail-section {
    padding-top: 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 3rem;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .intro-copy h2,
  .detail-heading h2 {
    font-size: 2rem;
  }

  .site-footer {
    align-items: flex-start;
    padding: 24px;
    flex-direction: column;
  }
}
