:root {
  --ink: #10252f;
  --ink-2: #18323d;
  --navy: #0d2430;
  --navy-soft: #173642;
  --blue: #2457ef;
  --blue-dark: #1746d2;
  --lime: #bdff62;
  --lime-soft: #efffd7;
  --mint: #dff7e8;
  --canvas: #f3f5f0;
  --surface: #ffffff;
  --surface-soft: #f8f9f6;
  --line: #dce3df;
  --line-dark: #c9d2ce;
  --muted: #65757c;
  --muted-light: #aebdc2;
  --warning: #986b08;
  --warning-bg: #fff7dc;
  --danger: #b14a4a;
  --font-display: "Manrope", "Segoe UI", sans-serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
  --shadow-sm: 0 8px 30px rgba(13, 36, 48, 0.07);
  --shadow-lg: 0 24px 70px rgba(13, 36, 48, 0.15);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

img,
svg {
  display: block;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

[hidden] {
  display: none !important;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--lime);
  font-weight: 700;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(36, 87, 239, 0.32);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 14px;
  left: 50%;
  width: min(calc(100% - 32px), 1220px);
  height: 66px;
  padding: 0 12px 0 20px;
  display: flex;
  align-items: center;
  gap: 28px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(13, 36, 48, 0.88);
  box-shadow: 0 12px 35px rgba(4, 20, 27, 0.18);
  backdrop-filter: blur(16px);
  color: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.brand-dot {
  color: var(--lime);
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--lime);
  color: var(--navy);
}

.brand-mark svg {
  width: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.site-header nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-header nav a:hover {
  color: #fff;
}

.header-cta,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.header-cta {
  height: 42px;
  padding: 0 16px;
  border-radius: 9px;
  background: var(--lime);
  color: var(--navy);
  font-size: 13px;
}

.header-cta svg,
.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-button span {
  width: 20px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: white;
  transition: transform 0.2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 165px 0 100px;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(13, 36, 48, 0) 62%, rgba(41, 87, 104, 0.18)),
    var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.1), #000 80%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.22;
}

.hero-orb-one {
  width: 460px;
  height: 460px;
  top: -250px;
  left: 30%;
  background: #3189ba;
}

.hero-orb-two {
  width: 220px;
  height: 220px;
  right: -80px;
  bottom: 30px;
  background: var(--lime);
  filter: blur(80px);
  opacity: 0.12;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.eyebrow span {
  width: 26px;
  height: 2px;
  background: currentColor;
}

.eyebrow.light {
  color: var(--lime);
}

.hero h1 {
  max-width: 620px;
  margin: 26px 0 24px;
  font-family: var(--font-display);
  font-size: clamp(49px, 5.2vw, 76px);
  line-height: 1.04;
  letter-spacing: -4px;
}

.hero h1 em,
.contact-copy h2 em {
  color: var(--lime);
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -2px;
}

.hero-copy > p {
  max-width: 560px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.button-accent {
  min-height: 54px;
  padding-inline: 24px;
  color: var(--navy);
  background: var(--lime);
  box-shadow: 0 12px 35px rgba(189, 255, 98, 0.12);
}

.button-accent:hover {
  background: #ceff8c;
  box-shadow: 0 16px 42px rgba(189, 255, 98, 0.18);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.light-link {
  color: rgba(255, 255, 255, 0.86);
}

.hero-proof {
  display: flex;
  gap: 28px;
  margin-top: 52px;
}

.hero-proof div {
  position: relative;
  min-width: 94px;
}

.hero-proof div + div::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: -15px;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-family: var(--font-display);
  font-size: 16px;
}

.hero-proof span {
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  width: min(100%, 560px);
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.28);
  transform: rotate(1.5deg);
  backdrop-filter: blur(12px);
}

.visual-topbar {
  height: 54px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.live-pill {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 7px;
  border-radius: 999px;
  color: var(--lime);
  background: rgba(189, 255, 98, 0.08);
}

.live-pill i,
.live-status i,
.source-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(189, 255, 98, 0.1);
}

.visual-content {
  padding: 30px;
}

.visual-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.visual-heading small,
.visual-heading strong {
  display: block;
}

.visual-heading small {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.1px;
}

.visual-heading strong {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -1.6px;
}

.trend-pill {
  padding: 6px 9px;
  border: 1px solid rgba(189, 255, 98, 0.15);
  border-radius: 999px;
  color: var(--lime);
  background: rgba(189, 255, 98, 0.06);
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.mini-chart {
  height: 155px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 12px;
  margin: 34px 0 28px;
  padding: 10px 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.065) 1px, transparent 1px, transparent 40px);
}

.mini-chart div {
  position: relative;
  height: var(--h);
  border-radius: 7px 7px 0 0;
  background: linear-gradient(to top, var(--blue), #6797ff);
}

.mini-chart div:nth-child(2) {
  background: linear-gradient(to top, #88bc42, var(--lime));
}

.mini-chart span {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
}

.visual-rows {
  padding-top: 12px;
}

.visual-rows div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.visual-rows span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.56);
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.dot.blue { background: #6797ff; }
.dot.lime { background: var(--lime); }

.source-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 11px 12px;
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.05);
  font-size: 11px;
}

.source-note svg,
.domain-caption svg {
  width: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px 9px 9px;
  border-radius: 11px;
  color: var(--navy);
  background: white;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  font-size: 11px;
  font-weight: 700;
  transform: rotate(-1.5deg);
}

.floating-tag span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--lime-soft);
  font-size: 9px;
}

.tag-one { top: 90px; left: -52px; }
.tag-two { right: -40px; bottom: 105px; }

.hero-marquee {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  height: 54px;
  display: flex;
  align-items: center;
  color: var(--navy);
  background: var(--lime);
}

.hero-marquee div {
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: 30px;
  padding-left: 30px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  animation: marquee 28s linear infinite;
}

.hero-marquee i {
  font-style: normal;
  font-size: 10px;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.intro-section {
  padding: 105px 0 90px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 0.65fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.intro-grid h2,
.section-heading h2 {
  margin: 15px 0 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -2.5px;
}

.intro-grid > p,
.section-heading > p {
  margin: 33px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.principle-list {
  display: grid;
  gap: 14px;
}

.principle-list > div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
}

.principle-list b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: #e9eeff;
  font-size: 10px;
}

.principle-list strong,
.principle-list span {
  display: block;
}

.principle-list strong {
  font-size: 14px;
}

.principle-list span {
  color: var(--muted);
  font-size: 12px;
}

.calculator-section {
  padding: 95px 0 110px;
  border-top: 1px solid var(--line);
  background: #eef1ec;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr;
  gap: 80px;
  align-items: end;
}

.calculator-heading {
  margin-bottom: 42px;
}

.calculator-heading > p {
  max-width: 450px;
  justify-self: end;
}

.friendly-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: -18px 0 22px;
  padding: 14px 17px;
  border: 1px solid #cfe7ae;
  border-radius: 12px;
  color: #536a35;
  background: var(--lime-soft);
}

.friendly-note-icon {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--lime);
  font-size: 12px;
  font-weight: 800;
}

.friendly-note p {
  margin: 0;
  font-size: 12px;
}

.friendly-note strong {
  color: #30451a;
}

.calculator-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-bottom: 24px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
}

.calculator-progress::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 9%;
  right: 9%;
  height: 1px;
  background: var(--line);
}

.calculator-progress span {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.calculator-progress i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  background: white;
  font-style: normal;
}

.calculator-progress .active i {
  border-color: var(--navy);
  color: white;
  background: var(--navy);
}

.calculator-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.75fr);
  gap: 24px;
  align-items: start;
}

.calculator-form {
  display: grid;
  gap: 18px;
}

.step-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(13, 36, 48, 0.02);
}

.step-header {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  margin-bottom: 24px;
}

.step-header.with-action {
  grid-template-columns: 42px minmax(0, 1fr) auto;
}

.step-number {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--blue);
  background: #edf1ff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
}

.step-header h3 {
  margin: 0 0 3px;
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.7px;
}

.step-header p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.source-status,
.selection-count {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #237245;
  background: var(--mint);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.source-status i {
  box-shadow: none;
}

.selection-count {
  color: var(--blue);
  background: #edf1ff;
}

.choice-grid {
  display: grid;
  gap: 12px;
}

.choice-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-card,
.maintenance-card,
.addon-card,
.hosting-card,
.domain-card {
  position: relative;
  cursor: pointer;
}

.choice-card input,
.maintenance-card input,
.addon-card input,
.hosting-card input,
.domain-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-content {
  min-height: 168px;
  height: 100%;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface-soft);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.choice-card:hover .choice-content {
  transform: translateY(-2px);
  border-color: #aab8c0;
}

.choice-card input:focus-visible + .choice-content,
.maintenance-card input:focus-visible + .maintenance-content,
.addon-card input:focus-visible + .addon-content,
.hosting-card input:focus-visible + .hosting-content,
.domain-card input:focus-visible + .domain-content {
  outline: 3px solid rgba(36, 87, 239, 0.25);
  outline-offset: 2px;
}

.choice-card input:checked + .choice-content {
  border-color: var(--blue);
  background: #f6f8ff;
  box-shadow: inset 0 0 0 1px var(--blue);
}

.choice-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 15px;
}

.choice-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--blue);
  background: #e9eeff;
}

.choice-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.radio-indicator {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1.5px solid #b9c3c7;
  border-radius: 50%;
  background: white;
}

.radio-indicator::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  transform: scale(0);
  transition: transform 0.2s ease;
}

input:checked + * .radio-indicator {
  border-color: var(--blue);
}

input:checked + * .radio-indicator::after {
  transform: scale(1);
}

.choice-content h4 {
  margin: 0 0 5px;
  font-family: var(--font-display);
  font-size: 16px;
}

.plain-badge {
  display: inline-flex;
  margin-left: 5px;
  padding: 3px 6px;
  border-radius: 5px;
  color: var(--muted);
  background: #e9eeeb;
  font-family: var(--font-body);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  vertical-align: middle;
}

.choice-content p {
  min-height: 38px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.choice-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.choice-meta b {
  color: var(--blue);
}

.choice-meta span {
  color: var(--muted);
}

.sub-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
}

.sub-question h4 {
  margin: 0 0 2px;
  font-size: 13px;
}

.sub-question p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.segmented-control,
.server-tabs,
.source-tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
}

.segment-label {
  position: relative;
  cursor: pointer;
}

.segment-label input {
  position: absolute;
  opacity: 0;
}

.segment-label span,
.server-tabs button,
.source-tabs button {
  min-height: 36px;
  display: grid;
  place-items: center;
  padding: 0 14px;
  border: 0;
  border-radius: 7px;
  color: var(--muted);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}

.segment-label input:checked + span,
.server-tabs button[aria-selected="true"],
.source-tabs button[aria-selected="true"] {
  color: white;
  background: var(--navy);
}

.custom-notice {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid #ead99a;
  border-radius: 11px;
  color: #6f5517;
  background: var(--warning-bg);
}

.notice-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: #c18c14;
  font-family: Georgia, serif;
  font-weight: 700;
}

.custom-notice p {
  margin: 0;
  font-size: 11px;
}

.custom-notice a {
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.input-grid {
  display: grid;
  gap: 12px;
}

.input-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.field-label > span {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 7px;
  font-size: 11px;
  font-weight: 700;
}

.info-button {
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--muted);
  background: transparent;
  font-size: 9px;
  cursor: help;
}

.currency-input,
.unit-input {
  height: 48px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: white;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.currency-input:focus-within,
.unit-input:focus-within,
.search-field:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(36, 87, 239, 0.1);
}

.currency-input b {
  height: 100%;
  display: grid;
  place-items: center;
  padding: 0 13px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  background: var(--surface-soft);
  font-size: 12px;
}

.currency-input input,
.unit-input input {
  min-width: 0;
  width: 100%;
  height: 100%;
  padding: 0 12px;
  border: 0;
  outline: none;
  color: var(--ink);
  background: transparent;
  font-weight: 700;
}

.unit-input b {
  padding-right: 12px;
  color: var(--muted);
  font-size: 10px;
  white-space: nowrap;
}

.field-label > small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 9px;
}

.field-label > small button {
  padding: 0;
  border: 0;
  color: var(--blue);
  background: transparent;
  font-size: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.empty-state {
  grid-column: 1 / -1;
  margin: 0;
  padding: 20px;
  border: 1px dashed var(--line-dark);
  border-radius: 10px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.formula-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding: 15px 17px;
  border-radius: 11px;
  color: #dce6e9;
  background: var(--navy);
}

.friendly-formula {
  margin-top: 0;
}

.advanced-details {
  overflow: hidden;
  margin-top: 13px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--surface-soft);
}

.advanced-details > summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 15px;
  color: var(--ink);
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.advanced-details > summary::-webkit-details-marker {
  display: none;
}

.advanced-details > summary span,
.advanced-details > summary strong,
.advanced-details > summary small {
  display: block;
}

.advanced-details > summary strong {
  font-size: 12px;
}

.advanced-details > summary small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.advanced-details > summary i {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: white;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.advanced-details[open] {
  border-color: #bcc8ce;
  background: white;
}

.advanced-details[open] > summary i {
  transform: rotate(45deg);
}

.advanced-body {
  padding: 17px 15px;
  border-top: 1px solid var(--line);
}

.hosting-details .advanced-body {
  padding-top: 15px;
}

.formula-box span,
.formula-box strong {
  display: block;
}

.formula-box span {
  margin-bottom: 3px;
  color: var(--lime);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.formula-box strong {
  font-family: var(--font-body);
  font-size: 11px;
}

.formula-box > b {
  font-family: var(--font-display);
  font-size: 19px;
  white-space: nowrap;
}

.recommendation-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 13px;
  align-items: center;
  margin-bottom: 17px;
  padding: 14px;
  border: 1px solid #cceca0;
  border-radius: 12px;
  background: var(--lime-soft);
}

.recommendation-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--navy);
  background: var(--lime);
}

.recommendation-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.recommendation-banner small,
.recommendation-banner strong,
.recommendation-banner p {
  display: block;
  margin: 0;
}

.recommendation-banner small {
  color: #618329;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
}

.recommendation-banner strong {
  margin-top: 2px;
  font-size: 13px;
}

.recommendation-banner p {
  color: #65794a;
  font-size: 10px;
}

.text-button {
  padding: 7px 10px;
  border: 1px solid #b3d781;
  border-radius: 8px;
  color: #45661b;
  background: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.text-button:disabled {
  cursor: default;
  opacity: 1;
}

.text-button.is-active {
  color: #fff;
  border-color: #5e7d35;
  background: #5e7d35;
}

.server-tabs {
  width: fit-content;
  margin-bottom: 14px;
  background: var(--surface-soft);
}

.server-tabs button[aria-selected="true"] {
  background: var(--blue);
}

.hosting-list {
  display: grid;
  gap: 9px;
}

.hosting-card.is-hidden,
.addon-card.is-hidden,
.domain-card.is-hidden {
  display: none;
}

.hosting-content {
  display: grid;
  grid-template-columns: minmax(142px, 0.8fr) minmax(225px, 1.25fr) minmax(125px, 0.7fr) 22px;
  gap: 15px;
  align-items: center;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--surface-soft);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.hosting-card:hover .hosting-content {
  border-color: #acbac0;
}

.hosting-card input:checked + .hosting-content {
  border-color: var(--blue);
  background: #f6f8ff;
  box-shadow: inset 0 0 0 1px var(--blue);
}

.hosting-provider small,
.hosting-provider strong,
.hosting-price strong,
.hosting-price span {
  display: block;
}

.hosting-provider small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.hosting-provider strong {
  font-size: 12px;
}

.hosting-provider a,
.source-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 4px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
}

.hosting-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 10px;
  color: var(--muted);
  font-size: 9px;
}

.hosting-specs span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hosting-specs b {
  color: var(--ink-2);
  font-weight: 600;
}

.hosting-price {
  text-align: right;
}

.hosting-price strong {
  font-family: var(--font-display);
  font-size: 13px;
}

.hosting-price span {
  color: var(--muted);
  font-size: 8px;
}

.hosting-price del {
  color: #9aa5a9;
  font-size: 8px;
}

.recommended-badge {
  display: inline-flex;
  margin-bottom: 3px;
  padding: 3px 5px;
  border-radius: 4px;
  color: #4e721f;
  background: var(--lime-soft);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.expand-button {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 11px;
  border: 1px dashed var(--line-dark);
  border-radius: 10px;
  color: var(--muted);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.expand-button b {
  font-size: 17px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.expand-button[aria-expanded="true"] b {
  transform: rotate(45deg);
}

.search-field {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
}

.search-field svg {
  width: 17px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.6;
  stroke-linecap: round;
}

.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 12px;
}

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

.domain-content {
  min-height: 104px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--surface-soft);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.domain-card:hover .domain-content {
  border-color: #acbac0;
}

.domain-card input:checked + .domain-content {
  border-color: var(--blue);
  background: #f6f8ff;
  box-shadow: inset 0 0 0 1px var(--blue);
}

.domain-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.domain-top strong {
  font-family: var(--font-display);
  font-size: 18px;
}

.domain-top .radio-indicator {
  width: 17px;
  height: 17px;
}

.domain-top .radio-indicator::after {
  width: 8px;
  height: 8px;
}

.domain-price-row {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 8px;
}

.domain-price-row + .domain-price-row {
  margin-top: 3px;
}

.domain-price-row b {
  color: var(--ink);
  font-size: 9px;
}

.domain-caption {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 10px;
}

.domain-caption svg {
  width: 16px;
  stroke: var(--blue);
}

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

.maintenance-content {
  min-height: 145px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--surface-soft);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.maintenance-card input:checked + .maintenance-content {
  border-color: var(--blue);
  background: #f6f8ff;
  box-shadow: inset 0 0 0 1px var(--blue);
}

.maintenance-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.maintenance-head strong {
  font-size: 12px;
}

.maintenance-content > b {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 13px;
}

.maintenance-content p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

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

.addon-content {
  min-height: 69px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.addon-card input:checked + .addon-content {
  border-color: var(--blue);
  background: #f6f8ff;
  box-shadow: inset 0 0 0 1px var(--blue);
}

.addon-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--blue);
  background: #e9eeff;
  font-size: 14px;
  font-weight: 800;
}

.addon-copy strong,
.addon-copy span {
  display: block;
}

.addon-copy strong {
  font-size: 11px;
}

.addon-copy span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 8px;
}

.addon-price {
  text-align: right;
  font-size: 9px;
  font-weight: 700;
}

.check-indicator {
  width: 17px;
  height: 17px;
  display: inline-grid;
  place-items: center;
  margin-left: 6px;
  border: 1px solid var(--line-dark);
  border-radius: 5px;
  color: transparent;
  background: white;
  font-size: 10px;
}

.addon-card input:checked + .addon-content .check-indicator {
  border-color: var(--blue);
  color: white;
  background: var(--blue);
}

.estimate-panel {
  position: sticky;
  top: 95px;
}

.estimate-card {
  overflow: hidden;
  border: 1px solid #29444f;
  border-radius: var(--radius);
  color: #fff;
  background: var(--navy);
  box-shadow: var(--shadow-lg);
}

.estimate-card-top {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.estimate-card-top > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.estimate-card-top small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--lime);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.6px;
}

.icon-button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.icon-button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.total-block {
  padding: 24px 20px 18px;
}

.total-block span,
.total-block strong,
.total-block small {
  display: block;
}

.total-block span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
}

.total-block strong {
  margin: 5px 0 3px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -1.8px;
}

.total-block small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
}

.summary-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 0 20px 18px;
}

.summary-tags span {
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.04);
  font-size: 8px;
  font-weight: 700;
}

.breakdown-group {
  margin: 0 20px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.breakdown-title,
.breakdown-lines div,
.monthly-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.breakdown-title {
  margin-bottom: 10px;
}

.breakdown-title span {
  font-size: 11px;
  font-weight: 700;
}

.breakdown-title b {
  font-family: var(--font-display);
  font-size: 12px;
}

.breakdown-lines {
  display: grid;
  gap: 7px;
}

.breakdown-lines div {
  color: rgba(255, 255, 255, 0.47);
  font-size: 9px;
}

.breakdown-lines b {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.monthly-note {
  margin-top: 11px;
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--lime);
  background: rgba(189, 255, 98, 0.07);
  font-size: 9px;
}

.year-two-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin: 2px 20px 16px;
  padding: 13px;
  border: 1px solid rgba(189, 255, 98, 0.16);
  border-radius: 10px;
  background: rgba(189, 255, 98, 0.07);
}

.year-two-card span,
.year-two-card small {
  display: block;
}

.year-two-card span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 700;
}

.year-two-card small {
  color: rgba(255, 255, 255, 0.36);
  font-size: 8px;
}

.year-two-card strong {
  font-family: var(--font-display);
  font-size: 13px;
  white-space: nowrap;
}

.quote-warning {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  margin: 0 20px 15px;
  padding: 10px;
  border: 1px solid rgba(255, 204, 92, 0.18);
  border-radius: 9px;
  color: #ecd99e;
  background: rgba(255, 204, 92, 0.07);
}

.quote-warning > span {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: #e9c45d;
  font-size: 9px;
  font-weight: 800;
}

.quote-warning p {
  margin: 0;
  font-size: 8px;
  line-height: 1.45;
}

.quote-warning strong {
  display: block;
  font-size: 9px;
}

.estimate-actions {
  display: grid;
  gap: 8px;
  padding: 0 20px 20px;
}

.button-dark {
  width: 100%;
  color: var(--navy);
  background: var(--lime);
}

.copy-button {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.04);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.copy-button svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.copy-status {
  min-height: 0;
  margin: -10px 20px 14px;
  color: var(--lime);
  font-size: 9px;
  text-align: center;
}

.estimate-help {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.65);
}

.estimate-help > span {
  width: 26px;
  height: 26px;
  display: grid;
  grid-row: span 2;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: #e9eeff;
  font-size: 11px;
  font-weight: 800;
}

.estimate-help p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.estimate-help strong {
  display: block;
  color: var(--ink);
  font-size: 10px;
}

.estimate-help a {
  grid-column: 2;
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
}

.comparison-section {
  padding: 105px 0;
  color: #fff;
  background: var(--navy);
}

.light-heading .eyebrow,
.light-heading h2 {
  color: #fff;
}

.light-heading .eyebrow {
  color: var(--lime);
}

.light-heading > p {
  color: rgba(255, 255, 255, 0.55);
}

.comparison-table-wrap {
  margin-top: 50px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
}

.comparison-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.comparison-table-wrap th,
.comparison-table-wrap td {
  height: 62px;
  padding: 13px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  font-size: 12px;
}

.comparison-table-wrap tr:last-child th,
.comparison-table-wrap tr:last-child td {
  border-bottom: 0;
}

.comparison-table-wrap th:last-child,
.comparison-table-wrap td:last-child {
  border-right: 0;
}

.comparison-table-wrap thead th {
  height: 96px;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.035);
  font-family: var(--font-display);
  font-size: 15px;
}

.comparison-table-wrap thead th:first-child {
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.comparison-table-wrap thead small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.36);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
}

.comparison-table-wrap tbody th {
  color: rgba(255, 255, 255, 0.52);
  font-weight: 500;
}

.recommended-column {
  position: relative;
  background: rgba(189, 255, 98, 0.05) !important;
}

.recommended-column > span {
  position: absolute;
  top: 9px;
  right: 10px;
  padding: 3px 6px;
  border-radius: 4px;
  color: var(--navy);
  background: var(--lime);
  font-family: var(--font-body);
  font-size: 7px;
  letter-spacing: 0.5px;
}

.comparison-table-wrap tbody td:last-child {
  background: rgba(189, 255, 98, 0.028);
}

.yes {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  margin-right: 6px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--lime);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.no {
  margin-right: 6px;
  color: rgba(255, 255, 255, 0.3);
  font-style: normal;
}

.sources-section {
  padding: 105px 0;
}

.source-tabs {
  width: fit-content;
  margin-top: 45px;
  background: white;
}

.source-tabs button {
  min-width: 150px;
}

.source-table-wrap {
  overflow-x: auto;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
}

.source-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.source-table th,
.source-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 11px;
}

.source-table th {
  color: var(--muted);
  background: var(--surface-soft);
  font-size: 9px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

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

.source-table td strong,
.source-table td small {
  display: block;
}

.source-table td small {
  color: var(--muted);
  font-size: 9px;
}

.source-table a {
  color: var(--blue);
  font-weight: 700;
}

.source-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 10px;
}

.source-footer p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.source-footer p span {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  font-family: Georgia, serif;
  font-weight: 700;
}

.source-footer strong {
  color: var(--ink);
  font-size: 9px;
}

.contact-section {
  padding: 30px 0 100px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  gap: 70px;
  align-items: center;
  padding: 62px;
  border-radius: var(--radius-lg);
  color: white;
  background:
    radial-gradient(circle at 8% 90%, rgba(48, 107, 131, 0.32), transparent 35%),
    var(--navy);
}

.contact-card::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 45%;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.025), 0 0 0 110px rgba(255, 255, 255, 0.018);
}

.contact-copy,
.contact-box {
  position: relative;
  z-index: 1;
}

.contact-copy h2 {
  margin: 18px 0 20px;
  font-family: var(--font-display);
  font-size: clamp(35px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -2.6px;
}

.contact-copy > p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 28px;
}

.contact-points span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
}

.contact-points i {
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--lime);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

.contact-box {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.contact-label {
  color: var(--lime);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.contact-box h3 {
  margin: 10px 0 8px;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -1px;
}

.contact-box p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

.contact-box .button {
  width: 100%;
}

.email-link {
  display: block;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.disclaimer-section {
  padding-bottom: 90px;
}

.disclaimer-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 35px;
  align-items: start;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
}

.disclaimer-card > span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.3px;
}

.disclaimer-card blockquote {
  margin: 0;
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 17px;
  font-style: italic;
  line-height: 1.6;
}

footer {
  padding: 55px 0 22px;
  color: white;
  background: #091c25;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.6fr 0.6fr 0.8fr;
  gap: 60px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-grid > div > p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-grid small {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
}

.footer-grid > div:not(:first-child) a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.footer-back {
  align-items: flex-end;
}

.footer-back a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-back span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.28);
  font-size: 9px;
}

.mobile-total-bar {
  display: none;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 24px;
  bottom: 24px;
  max-width: min(340px, calc(100% - 32px));
  padding: 12px 16px;
  border-radius: 10px;
  color: white;
  background: var(--navy);
  box-shadow: var(--shadow-lg);
  font-size: 12px;
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

noscript {
  position: fixed;
  z-index: 1000;
  right: 20px;
  bottom: 20px;
  padding: 12px 16px;
  color: white;
  background: #a03636;
}

@media (max-width: 1080px) {
  .hero-grid { gap: 38px; }
  .hero h1 { letter-spacing: -3px; }
  .floating-tag { display: none; }
  .calculator-shell { grid-template-columns: minmax(0, 1fr) 335px; }
  .hosting-content { grid-template-columns: 135px 1fr 115px 20px; gap: 10px; }
  .maintenance-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .domain-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 76px; }
  .site-header { top: 10px; height: 58px; }
  .site-header nav {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 13px;
    background: var(--navy);
    box-shadow: var(--shadow-lg);
  }
  .site-header nav.open { display: flex; }
  .site-header nav a { padding: 13px; border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
  .site-header nav a:last-child { border-bottom: 0; }
  .header-cta { margin-left: auto; }
  .menu-button { display: block; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .hero { min-height: auto; padding: 130px 0 105px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero h1, .hero-copy > p { margin-inline: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
  .hero-visual { width: min(100%, 590px); justify-self: center; margin-top: 25px; transform: none; }
  .intro-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .principle-list { grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); }
  .principle-list > div { align-items: flex-start; }
  .calculator-shell { grid-template-columns: 1fr; }
  .estimate-panel { position: static; }
  .estimate-card { display: grid; grid-template-columns: repeat(2, 1fr); }
  .estimate-card-top { grid-column: 1 / -1; }
  .total-block, .summary-tags { grid-column: 1; }
  .summary-tags { align-content: start; }
  .breakdown-group { margin-inline: 20px; }
  .recurring-group { grid-column: 2; grid-row: 2 / span 2; border-top: 0; border-left: 1px solid rgba(255,255,255,.1); padding-left: 20px; }
  .year-two-card, .quote-warning, .estimate-actions, .copy-status { grid-column: 1 / -1; }
  .estimate-actions { grid-template-columns: 1fr 1fr; }
  .comparison-table-wrap th, .comparison-table-wrap td { padding-inline: 15px; }
  .contact-card { grid-template-columns: 1fr; gap: 35px; padding: 45px; }
  .contact-box { max-width: 520px; }
}

@media (max-width: 720px) {
  body { padding-bottom: 72px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header { width: calc(100% - 20px); padding-left: 12px; }
  .brand { font-size: 17px; }
  .brand-mark { width: 32px; height: 32px; }
  .header-cta { display: none; }
  .hero { padding-top: 115px; }
  .hero h1 { margin-top: 20px; font-size: clamp(42px, 13vw, 62px); letter-spacing: -3px; }
  .hero-copy > p { font-size: 16px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .button { width: 100%; }
  .hero-proof { gap: 18px; }
  .hero-proof div { min-width: 76px; }
  .visual-content { padding: 20px; }
  .visual-heading { flex-direction: column; gap: 8px; }
  .mini-chart { height: 125px; padding-inline: 5px; }
  .hero-marquee { height: 46px; }
  .intro-section, .calculator-section, .comparison-section, .sources-section { padding-block: 72px; }
  .intro-grid, .section-heading { grid-template-columns: 1fr; gap: 0; }
  .intro-grid > p, .section-heading > p { margin-top: 22px; }
  .principle-list { grid-template-columns: 1fr; margin-top: 34px; }
  .calculator-heading { margin-bottom: 30px; }
  .friendly-note { align-items: flex-start; margin-top: -10px; }
  .calculator-progress { overflow-x: auto; grid-template-columns: repeat(6, 86px); justify-content: start; }
  .calculator-progress::before { display: none; }
  .step-card { padding: 22px 17px; }
  .step-header, .step-header.with-action { grid-template-columns: 38px 1fr; }
  .step-header.with-action > :last-child { grid-column: 2; justify-self: start; }
  .step-number { width: 36px; height: 36px; }
  .step-header h3 { font-size: 19px; }
  .choice-grid.two { grid-template-columns: 1fr; }
  .choice-content { min-height: 150px; }
  .sub-question { align-items: stretch; flex-direction: column; }
  .segmented-control { width: 100%; }
  .segment-label { flex: 1; }
  .custom-notice { grid-template-columns: auto 1fr; }
  .custom-notice a { grid-column: 2; }
  .input-grid.three { grid-template-columns: 1fr; }
  .formula-box { align-items: flex-start; flex-direction: column; }
  .advanced-details > summary { min-height: 70px; padding-inline: 13px; }
  .recommendation-banner { grid-template-columns: auto 1fr; }
  .recommendation-banner button { grid-column: 2; justify-self: start; }
  .server-tabs { width: 100%; overflow-x: auto; }
  .server-tabs button { flex: 1; }
  .hosting-content { grid-template-columns: 1fr 22px; }
  .hosting-specs, .hosting-price { grid-column: 1; }
  .hosting-price { text-align: left; }
  .hosting-content > .radio-indicator { grid-column: 2; grid-row: 1; }
  .domain-list { grid-template-columns: 1fr 1fr; }
  .maintenance-grid { grid-template-columns: 1fr 1fr; }
  .addon-grid { grid-template-columns: 1fr; }
  .estimate-card { display: block; }
  .recurring-group { border-top: 1px solid rgba(255,255,255,.1); border-left: 0; padding-left: 0; }
  .estimate-actions { grid-template-columns: 1fr; }
  .comparison-table-wrap { overflow: visible; border: 0; }
  .comparison-table-wrap table, .comparison-table-wrap thead, .comparison-table-wrap tbody, .comparison-table-wrap tr, .comparison-table-wrap th, .comparison-table-wrap td { display: block; }
  .comparison-table-wrap thead tr { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .comparison-table-wrap thead th { height: auto; min-height: 100px; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; }
  .comparison-table-wrap thead th:first-child { display: none; }
  .comparison-table-wrap tbody { margin-top: 14px; }
  .comparison-table-wrap tbody tr { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 8px; border: 1px solid rgba(255,255,255,.09); border-radius: 10px; overflow: hidden; }
  .comparison-table-wrap tbody th { grid-column: 1 / -1; height: auto; padding: 9px 12px; border: 0; background: rgba(255,255,255,.05); font-size: 9px; text-transform: uppercase; letter-spacing: .5px; }
  .comparison-table-wrap tbody td { height: auto; min-height: 48px; display: flex; align-items: center; padding: 11px 12px; border: 0; border-right: 1px solid rgba(255,255,255,.08); font-size: 10px; }
  .comparison-table-wrap tbody td:last-child { border-right: 0; }
  .recommended-column > span { position: static; width: fit-content; display: block; margin-bottom: 8px; }
  .source-tabs { width: 100%; }
  .source-tabs button { min-width: 0; flex: 1; }
  .source-footer { align-items: flex-start; flex-direction: column; }
  .contact-section { padding: 15px 0 70px; }
  .contact-card { width: calc(100% - 28px); padding: 34px 22px; }
  .contact-points { align-items: flex-start; flex-direction: column; }
  .contact-box { padding: 22px 18px; }
  .disclaimer-section { padding-bottom: 65px; }
  .disclaimer-card { grid-template-columns: 1fr; gap: 15px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer-grid > div:first-child, .footer-back { grid-column: 1 / -1; }
  .footer-back { align-items: flex-start; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .mobile-total-bar {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    color: white;
    background: rgba(13, 36, 48, 0.96);
    box-shadow: 0 -10px 35px rgba(5, 20, 28, 0.16);
    backdrop-filter: blur(12px);
  }
  .mobile-total-bar small, .mobile-total-bar strong { display: block; }
  .mobile-total-bar small { color: rgba(255,255,255,.45); font-size: 7px; letter-spacing: .7px; }
  .mobile-total-bar strong { font-family: var(--font-display); font-size: 17px; }
  .mobile-total-bar button { min-height: 42px; padding: 0 14px; border: 0; border-radius: 9px; color: var(--navy); background: var(--lime); font-size: 10px; font-weight: 800; }
  .toast { right: 14px; bottom: 84px; }
}

@media (max-width: 420px) {
  .hero-proof { gap: 13px; }
  .hero-proof strong { font-size: 14px; }
  .hero-proof span { font-size: 10px; }
  .visual-topbar { grid-template-columns: 1fr auto; }
  .visual-topbar > span:nth-child(2) { display: none; }
  .domain-list, .maintenance-grid { grid-template-columns: 1fr; }
  .comparison-table-wrap thead tr { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child, .footer-back { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
