:root {
  color-scheme: light;
  --ink: #182033;
  --muted: #667085;
  --line: #d8dee8;
  --paper: #ffffff;
  --surface: #f4f7fb;
  --navy: #15213a;
  --teal: #087b75;
  --teal-soft: #e7f4f2;
  --gold: #b9872d;
  --red: #b42318;
  --green: #147a4d;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
}

button,
input,
textarea {
  font: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header,
.hero,
.trust-band,
.site-footer {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 1rem;
}

.availability {
  border: 1px solid rgba(8, 123, 117, 0.24);
  border-radius: 999px;
  padding: 8px 13px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 36px;
  align-items: start;
  margin-top: 18px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(21, 33, 58, 0.08);
}

.hero-copy {
  padding-top: 8px;
}

.eyebrow,
.panel-heading p {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.lead {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.domain-card {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 1px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.domain-card div {
  min-height: 84px;
  padding: 18px;
  background: #fbfcfe;
}

.domain-card span,
.domain-card strong {
  display: block;
}

.domain-card span {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.domain-card strong {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.value-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: #344054;
}

.value-list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.5;
}

.value-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  transform: translateY(-50%);
}

.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 26px;
  box-shadow: 0 14px 32px rgba(21, 33, 58, 0.08);
}

.panel-heading {
  margin-bottom: 18px;
}

.panel-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.32rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: block;
  margin-bottom: 13px;
}

label span {
  display: block;
  margin-bottom: 7px;
  color: #273244;
  font-size: 0.88rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fbfcfe;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:focus,
textarea:focus {
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(8, 123, 117, 0.13);
}

textarea {
  min-height: 112px;
  resize: vertical;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.captcha-slot {
  min-height: 68px;
  margin: 4px 0 8px;
}

.field-error {
  display: block;
  min-height: 17px;
  margin-top: 5px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 600;
}

.submit-button {
  width: 100%;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 7px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.submit-button:hover {
  background: var(--teal);
  box-shadow: 0 12px 24px rgba(8, 123, 117, 0.2);
  transform: translateY(-1px);
}

.submit-button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
  box-shadow: none;
}

.form-status {
  min-height: 22px;
  margin: 13px 0 0;
  font-size: 0.9rem;
  font-weight: 800;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: var(--red);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.trust-band div {
  min-height: 112px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  margin-bottom: 9px;
  color: var(--navy);
  font-size: 0.98rem;
}

.trust-band span {
  color: var(--muted);
  line-height: 1.55;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding: 28px 0 32px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .contact-panel {
    width: min(100%, 620px);
  }
}

@media (max-width: 720px) {
  .site-header,
  .hero,
  .trust-band,
  .site-footer {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .hero {
    margin-top: 4px;
    padding: 22px;
    gap: 24px;
  }

  .domain-card,
  .field-grid,
  .trust-band {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    padding: 20px;
  }

  .site-footer {
    flex-direction: column;
    padding-top: 22px;
  }
}
