:root {
  color-scheme: light;
  --ink: #11130f;
  --muted: #5c625a;
  --paper: #f7f5ee;
  --surface: #fffdf7;
  --line: rgba(17, 19, 15, 0.14);
  --teal: #12746d;
  --coral: #db654f;
  --amber: #c98d20;
  --moss: #475b3d;
  --shadow: 0 24px 70px rgba(17, 19, 15, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: flex;
  width: min(1120px, calc(100% - 32px));
  min-height: 58px;
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(17, 19, 15, 0.62);
  padding: 10px 12px;
  color: #fffdf7;
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.card-topline,
.domain-link,
.button {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: #f3c65f;
  color: #161611;
  font-size: 0.82rem;
  letter-spacing: 0;
}

.nav-links {
  gap: 6px;
}

.nav-links a {
  border-radius: 7px;
  padding: 10px 12px;
  color: rgba(255, 253, 247, 0.76);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #fffdf7;
  outline: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 86vh;
  overflow: hidden;
  align-items: end;
  padding: 142px max(24px, calc((100vw - 1120px) / 2)) 72px;
  background: #11130f;
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 19, 15, 0.92) 0%, rgba(17, 19, 15, 0.72) 42%, rgba(17, 19, 15, 0.18) 100%),
    linear-gradient(0deg, rgba(17, 19, 15, 0.78) 0%, rgba(17, 19, 15, 0) 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  color: #fffdf7;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.signup-copy h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(3.15rem, 6.4vw, 5.65rem);
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 253, 247, 0.8);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
}

.button svg,
.domain-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.button.primary {
  background: #f3c65f;
  color: #161611;
}

.button.secondary {
  border: 1px solid rgba(255, 253, 247, 0.28);
  color: #fffdf7;
}

.button:hover,
.button:focus-visible,
.domain-link:hover,
.domain-link:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.summary-item {
  min-height: 126px;
  background: var(--surface);
  padding: 28px 24px;
  text-align: center;
}

.summary-item span {
  display: block;
  color: var(--teal);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1;
}

.summary-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 94px max(24px, calc((100vw - 1120px) / 2));
  scroll-margin-top: 112px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.65fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

.section-heading h2,
.signup-copy h2 {
  font-size: clamp(2.15rem, 4vw, 4.25rem);
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

code {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.58);
  padding: 0.12em 0.34em;
  font-size: 0.92em;
}

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

.feature-card {
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 24px;
}

.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  background: rgba(18, 116, 109, 0.11);
  color: var(--teal);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.feature-card h3 {
  margin: 58px 0 10px;
  font-size: 1.22rem;
  line-height: 1.12;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

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

.domain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.domain-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-top: 6px solid var(--teal);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 26px;
}

.domain-card.accent {
  border-top-color: var(--amber);
}

.card-topline {
  justify-content: space-between;
  gap: 12px;
}

.status-pill,
.active-label {
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 800;
}

.status-pill {
  background: rgba(18, 116, 109, 0.1);
  color: var(--teal);
}

.accent .status-pill {
  background: rgba(201, 141, 32, 0.13);
  color: #83590f;
}

.active-label {
  display: none;
  background: var(--ink);
  color: var(--surface);
}

.domain-card.is-active .active-label {
  display: inline-flex;
}

.domain-card h3 {
  margin: 44px 0 18px;
  font-size: clamp(2rem, 2.9vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.domain-card h3 span {
  display: block;
  overflow-wrap: normal;
  word-break: normal;
}

.domain-card p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.domain-link {
  width: fit-content;
  gap: 8px;
  margin-top: auto;
  padding-top: 30px;
  color: var(--ink);
  font-weight: 800;
}

.timeline-section {
  background: #e7ece3;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 15, 0.12);
  border-radius: 8px;
  background: rgba(17, 19, 15, 0.12);
}

.timeline-step {
  min-height: 236px;
  background: #f9faf3;
  padding: 26px;
}

.timeline-step span {
  color: var(--coral);
  font-weight: 800;
}

.timeline-step h3 {
  margin: 54px 0 10px;
  font-size: 1.5rem;
}

.timeline-step p {
  margin: 0;
  color: var(--muted);
}

.signup-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
  gap: 52px;
  align-items: center;
  margin: 76px max(24px, calc((100vw - 1120px) / 2));
  border-radius: 8px;
  background: var(--moss);
  padding: 42px 36px;
  color: #fffdf7;
  scroll-margin-top: 112px;
}

.signup-section .eyebrow {
  color: #f3c65f;
}

.signup-copy h2 {
  margin: 0;
  line-height: 1;
  max-width: 650px;
  overflow-wrap: normal;
}

.signup-copy p:not(.eyebrow) {
  max-width: 590px;
  margin: 18px 0 0;
  color: rgba(255, 253, 247, 0.76);
  font-size: 1.05rem;
}

.signup-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 253, 247, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.08);
  padding: 22px;
  min-width: 0;
}

.signup-form label {
  display: grid;
  gap: 7px;
}

.signup-form span {
  display: block;
  color: rgba(255, 253, 247, 0.8);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
}

.signup-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 253, 247, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.96);
  color: var(--ink);
  font: inherit;
  padding: 0 13px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.signup-form input:focus {
  border-color: #f3c65f;
  outline: 3px solid rgba(243, 198, 95, 0.2);
}

.signup-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.button.dark {
  flex: 0 0 auto;
}

.form-note {
  margin: 0;
  color: rgba(255, 253, 247, 0.68);
  font-size: 0.86rem;
  line-height: 1.4;
}

@media (max-width: 980px) {
  .signup-section {
    grid-template-columns: 1fr;
  }

  .signup-copy h2 {
    max-width: 760px;
  }
}

.site-footer {
  padding: 28px 24px 42px;
  color: var(--muted);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand span:last-child {
    display: none;
  }

  .nav-links {
    flex: 1;
    justify-content: flex-end;
  }

  .nav-links a {
    padding: 9px 8px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 88vh;
    padding-top: 118px;
    padding-bottom: 44px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 15vw, 4.3rem);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(17, 19, 15, 0.9), rgba(17, 19, 15, 0.52)),
      linear-gradient(0deg, rgba(17, 19, 15, 0.86) 0%, rgba(17, 19, 15, 0) 56%);
  }

  .intro-band,
  .domain-grid,
  .feature-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .summary-item {
    min-height: auto;
  }

  .section {
    padding-block: 64px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-card {
    min-height: 230px;
  }

  .feature-card h3 {
    margin-top: 40px;
  }

  .domain-card {
    min-height: 280px;
    padding: 22px;
  }

  .domain-card h3 {
    margin-top: 38px;
    font-size: clamp(1.9rem, 11vw, 3.2rem);
  }

  .timeline-step {
    min-height: 190px;
  }

  .timeline-step h3 {
    margin-top: 38px;
  }

  .signup-section {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 48px;
    padding: 26px;
  }

  .signup-copy h2 {
    font-size: clamp(1.85rem, 10vw, 3rem);
  }

  .button.dark {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
