@font-face {
  font-family: "Baumans";
  src: url("../fonts/Baumans-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600 800;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito-wght.ttf") format("truetype");
  font-weight: 200 1000;
  font-display: swap;
}

:root {
  --navy: #182840;
  --navy-2: #243953;
  --coral: #f86850;
  --coral-dark: #e95943;
  --coral-soft: #fff7f5;
  --bg: #f7f9fc;
  --white: #ffffff;
  --text: #39485d;
  --muted: #667388;
  --line: #e3e8ef;
  --success: #2f966f;
  --success-soft: #edf8f3;
  --warning: #e8a13a;
  --danger: #e0463c;
  --shadow: 0 14px 45px rgba(24, 40, 64, 0.08);
  --shadow-soft: 0 8px 24px rgba(24, 40, 64, 0.06);
  --radius: 14px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Nunito", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  width: min(850px, 100%);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(24,40,64,.08);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 140px;
  height: auto;
}

.header-link {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}

.header-link:hover { color: var(--coral); }

.hero {
  overflow: hidden;
  padding: 84px 0 76px;
  background:
    radial-gradient(circle at 86% 14%, rgba(248,104,80,.12), transparent 29rem),
    linear-gradient(180deg, #fbfcfd 0%, #fff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  align-items: center;
  gap: 70px;
}

.hero-copy { max-width: 680px; }

.eyebrow,
.section-kicker {
  margin: 0 0 13px;
  color: var(--coral-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
  font-family: "Baumans", "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.14;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(43px, 6vw, 68px);
  letter-spacing: -2.6px;
}

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

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 8px 22px rgba(248,104,80,.22);
}

.button.primary:hover { background: var(--coral-dark); }

.button.secondary {
  background: #fff;
  color: var(--navy);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.time-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

.status-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(47,150,111,.1);
}

.hero-art img {
  width: 100%;
  filter: drop-shadow(0 22px 45px rgba(24,40,64,.1));
}

.section {
  padding: 82px 0;
}

.section.soft { background: var(--bg); }

.section h2 {
  margin: 0 0 22px;
  font-size: clamp(32px, 4.5vw, 46px);
  letter-spacing: -1.6px;
}

.section-intro {
  margin: -8px 0 30px;
  color: var(--muted);
  font-size: 18px;
}

.two-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 30px;
}

.info-card {
  min-height: 185px;
  display: flex;
  gap: 16px;
  padding: 25px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.number-badge,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--navy);
  font-weight: 800;
  border-radius: 999px;
}

.number-badge {
  width: 36px;
  height: 36px;
}

.info-card h3,
.step h3 {
  margin: 2px 0 8px;
  font-size: 21px;
}

.info-card p,
.step p {
  margin: 0;
}

.callout {
  margin-top: 22px;
  padding: 18px 20px;
  background: var(--coral-soft);
  border: 1px solid rgba(248,104,80,.22);
  border-radius: var(--radius);
  color: var(--navy);
}

.callout.neutral {
  background: #f7fafc;
  border-color: var(--line);
}

.steps {
  position: relative;
  display: grid;
  gap: 22px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.steps:before {
  position: absolute;
  z-index: 0;
  top: 25px;
  bottom: 25px;
  left: 26px;
  width: 2px;
  content: "";
  background: #edf0f3;
}

.step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
}

.step-number {
  width: 54px;
  height: 54px;
  border: 7px solid #fff;
  box-shadow: 0 0 0 1px var(--line);
}

.step-body {
  margin-bottom: 4px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.step-body > p + p { margin-top: 14px; }

.muted {
  color: var(--muted);
  font-size: 15px;
}

.example-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 13px;
}

.example-row code,
.plain-language code,
.check-card code,
.faq-list code,
.dns-table code {
  padding: 3px 7px;
  color: var(--navy);
  background: #f2f5f8;
  border: 1px solid #e5e9ee;
  border-radius: 7px;
  font-size: .93em;
}

.good,
.bad {
  min-width: 89px;
  display: inline-flex;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.good {
  color: #207554;
  background: var(--success-soft);
}

.bad {
  color: #9d332c;
  background: #fdf0ee;
}

.illustration {
  width: 100%;
  margin-top: 22px;
  border-radius: 18px;
}

.dns-card {
  overflow: hidden;
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.dns-row {
  min-height: 59px;
  display: grid;
  grid-template-columns: minmax(150px, .75fr) 1.25fr;
  align-items: center;
  gap: 20px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
}

.dns-row:last-child { border-bottom: 0; }

.dns-label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.copy-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.copy-button {
  cursor: pointer;
  padding: 7px 10px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 12px;
  font-weight: 800;
}

.copy-button:hover { border-color: #cbd3dc; }

.plain-language {
  margin-top: 18px;
  padding: 18px 20px;
  background: #f8fafc;
  border-radius: var(--radius);
}

.plain-language h4 {
  margin: 0 0 6px;
  font-size: 16px;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.check-card {
  display: flex;
  gap: 13px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.check-card p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.mini-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--danger);
  background: #fff0ee;
  border-radius: 10px;
  font-weight: 900;
}

.mini-demo {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 12px 15px;
  background: #f7fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mini-demo small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
}

.cloud-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #b7c0cb;
}

.progress-card {
  display: grid;
  gap: 10px;
  margin-top: 19px;
}

.progress-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  background: var(--success-soft);
  border-radius: 11px;
  color: #235f49;
  font-weight: 700;
}

.tick {
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--success);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}

.success-image {
  width: min(100%, 560px);
  margin: 22px auto 0;
}

.table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.dns-table {
  width: 100%;
  border-collapse: collapse;
}

.dns-table th,
.dns-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.dns-table th {
  color: var(--muted);
  background: #fbfcfd;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-family: "Poppins", sans-serif;
}

.dns-table tr:last-child td { border-bottom: 0; }

.highlight-row td {
  background: var(--success-soft);
  color: #235f49;
}

.faded { color: var(--muted); }

.table-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-list {
  display: grid;
  gap: 11px;
  margin-top: 30px;
}

.faq-list details {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-list summary {
  cursor: pointer;
  padding: 19px 20px;
  color: var(--navy);
  font-weight: 800;
}

.faq-list details > div {
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-list details p { margin: 0; }

.help-section {
  padding-top: 20px;
}

.help-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 36px;
  color: #fff;
  background: var(--navy);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.help-card h2 {
  max-width: 570px;
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(30px, 4vw, 42px);
}

.help-card p:not(.section-kicker) {
  max-width: 600px;
  margin: 0;
  color: #d9e0e7;
}

.help-card .section-kicker { color: #ff9684; }

.help-card .button { flex: 0 0 auto; }

.site-footer {
  padding: 32px 0;
  background: #f8fafc;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.footer-brand img { width: 118px; }

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner a {
  color: var(--navy);
  font-weight: 800;
  text-underline-offset: 3px;
}

@media (max-width: 850px) {
  .hero {
    padding-top: 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-art {
    width: min(100%, 590px);
    margin-inline: auto;
  }

  .two-cards,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .help-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 68px;
  }

  .brand img { width: 124px; }

  .hero {
    padding: 48px 0 58px;
  }

  h1 {
    font-size: 43px;
    letter-spacing: -1.7px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }

  .section h2 {
    font-size: 34px;
  }

  .step {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .steps:before {
    left: 20px;
  }

  .step-number {
    width: 42px;
    height: 42px;
    border-width: 5px;
    font-size: 14px;
  }

  .step-body {
    padding: 20px;
    border-radius: 18px;
  }

  .dns-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .copy-value {
    align-items: flex-start;
  }

  .example-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-link { font-size: 14px; }
}
