:root {
  --font-primary: "Plus Jakarta Sans", sans-serif;
  --font-secondary: Inter, sans-serif;
  --body-bg: #fff;
  --color-white: #fff;
  --color-primary: #0774ff;
  --color-secondary: #2d3c58;
  --color-third: #ffc107;
  --btc: #4c5671;
  --color-secondary-dark: #313149;
  --placeholder: #8d9097;
  --primary-gradient: linear-gradient(180deg, #308bff 0%, #1262ff 100%);
  --hero-gradient: linear-gradient(258deg, #0774ff 0.95%, #033aa7 100%);
  --banner-gradient: linear-gradient(180deg, #0774ff 0%, #033aa7 100%);
  --cta-gradient: linear-gradient(92deg, #3990ff 3.85%, #2c73fe 101.14%);
  --plan-bg: #f6f9ff;
  --border-color: #e9edff;
  --light-border: #d4dcff;
  --box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  --card-shadow: 0 10px 40px rgba(7, 116, 255, 0.08);
  --transition: all 0.35s ease;
  --radius: 10px;
  --container: 1320px;
  --header-h: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 1.7;
  color: var(--btc);
  background: var(--body-bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  color: var(--color-secondary);
  font-weight: 700;
  line-height: 1.2;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 70px 0;
}

.section-head {
  margin-bottom: 50px;
}

.section-head.center,
.center {
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--color-primary);
}

h1 {
  font-size: clamp(36px, 5vw, 72px);
}

h2 {
  font-size: clamp(28px, 3.4vw, 48px);
  margin-bottom: 16px;
}

h3 {
  font-size: 24px;
}

.lead {
  font-size: 18px;
  max-width: 640px;
}

.center .lead {
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 160px;
  padding: 14px 28px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-family: var(--font-primary);
  font-weight: 600;
  cursor: pointer;
  line-height: 1.2;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background: #055fd4;
}

.btn-gold {
  background: var(--color-third);
  color: var(--color-secondary);
}

.btn-gold:hover {
  background: #ffd34d;
}

.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn-outline {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-third);
  border-color: var(--color-third);
  color: var(--color-secondary);
}

.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Top bar */
.topbar {
  background: #f6f6f6;
  font-size: 14px;
  color: var(--btc);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
}

.topbar a {
  font-weight: 500;
}

.topbar a:hover,
.topbar strong {
  color: var(--color-primary);
}

/* Header */
.site-header {
  background: var(--color-white);
  box-shadow: 0 7px 18px #1810100d;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text strong {
  font-family: var(--font-primary);
  font-size: 18px;
  color: var(--color-secondary);
  line-height: 1.1;
}

.logo-text small {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--btc);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 15px;
  color: var(--btc);
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--color-primary);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--light-border);
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-secondary);
}

.header-cta {
  flex-shrink: 0;
}

/* Hero */
.hero {
  background: var(--hero-gradient);
  padding: 110px 0 160px;
  position: relative;
  overflow: hidden;
  color: var(--color-white);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.hero::before {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -80px;
}

.hero::after {
  width: 280px;
  height: 280px;
  bottom: -80px;
  right: 8%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-weight: 600;
}

.hero-kicker .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-third);
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 18px;
}

.hero h1 span {
  color: var(--color-third);
}

.hero p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  line-height: 1.5;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
}

.video-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
  font-weight: 600;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.video-btn .play {
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  filter: drop-shadow(0 30px 50px rgba(0, 30, 90, 0.35));
}

/* Product cards overlapping hero */
.product-overlap {
  margin-top: -90px;
  position: relative;
  z-index: 2;
}

.product-card {
  background: var(--color-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--card-shadow);
}

.product-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: linear-gradient(147deg, #e8ecff 14%, #d1ffef 80%);
}

.product-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 14px;
  margin-bottom: 14px;
}

.product-card .price {
  color: var(--color-primary);
  font-weight: 700;
  font-family: var(--font-primary);
}

/* Domain search */
.domain-section {
  padding: 90px 0 40px;
}

.domain-box {
  background: var(--color-white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--card-shadow);
}

.domain-form {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  margin: 28px 0 24px;
  align-items: start;
}

.domain-form .field {
  margin-bottom: 0;
}

.domain-form .btn {
  min-height: 50px;
}

.domain-form input,
.domain-form select,
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--light-border);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--color-secondary);
  background: #fff;
  outline: none;
  transition: var(--transition);
}

.domain-form input:focus,
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(7, 116, 255, 0.12);
}

.tld-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
}

.tld-prices li {
  font-weight: 600;
  color: var(--color-secondary);
}

.tld-prices span {
  color: var(--color-primary);
  margin-left: 6px;
}

/* Feature cards */
.feature-card {
  background: var(--plan-bg);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid transparent;
  height: 100%;
}

.feature-card:hover {
  border-color: var(--light-border);
  background: #fff;
  box-shadow: var(--card-shadow);
}

.feature-card h3 {
  margin: 14px 0 10px;
  font-size: 22px;
}

/* Sale banners */
.sale-card {
  border-radius: 18px;
  padding: 36px;
  color: #fff;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.sale-card.blue {
  background: linear-gradient(135deg, #0774ff, #033aa7);
}

.sale-card.navy {
  background: linear-gradient(135deg, #1b2a4a, #0774ff);
}

.sale-card h3 {
  color: #fff;
  font-size: 36px;
}

.sale-card .off {
  font-size: 48px;
  font-weight: 800;
  color: var(--color-third);
}

/* Hosting services list */
.service-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.service-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-color);
}

.service-list h4 {
  font-size: 18px;
  margin-bottom: 4px;
}

.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Differentiators */
.diff-wrap {
  background: var(--plan-bg);
}

.diff-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.diff-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
}

.diff-stat {
  background: var(--hero-gradient);
  color: #fff;
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
}

.diff-stat strong {
  display: block;
  font-size: clamp(48px, 6vw, 72px);
  font-family: var(--font-primary);
  line-height: 1;
}

.diff-stat span {
  display: block;
  margin-top: 10px;
  font-size: 18px;
}

/* Testimonials */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--box-shadow);
  height: 100%;
}

.testimonial-card.featured {
  border-color: var(--color-primary);
  box-shadow: 0 16px 40px rgba(7, 116, 255, 0.15);
}

.testimonial-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}

.testimonial-card p {
  margin-bottom: 18px;
}

.testimonial-card h4 {
  font-size: 16px;
}

.testimonial-card small {
  color: var(--color-primary);
  font-weight: 600;
}

/* FAQ */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: #fff;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 18px 22px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 17px;
  color: var(--color-secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.faq-item .faq-body {
  display: none;
  padding: 0 22px 20px;
}

.faq-item.is-open {
  background: linear-gradient(180deg, #fff, #f1f6ff);
}

.faq-item.is-open .faq-body {
  display: block;
}

.faq-item .chev {
  color: var(--color-primary);
}

/* Articles */
.article-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 100%;
}

.article-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.article-card .body {
  padding: 22px;
}

.tag {
  display: inline-block;
  background: #eaf3ff;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #033aa7, #0b1f4a);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1.2fr;
  gap: 32px;
  padding-bottom: 40px;
}

.site-footer h3,
.site-footer .logo-text strong {
  color: #fff;
}

.site-footer .logo-text small {
  color: rgba(255, 255, 255, 0.7);
}

.footer-about p {
  margin: 16px 0 20px;
}

.socials,
.share-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.socials a,
.share-row a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: #fff;
}

.socials a:hover,
.share-row a:hover {
  background: var(--color-primary);
}

.footer-links h3 {
  font-size: 18px;
  margin-bottom: 18px;
}

.footer-links a {
  display: block;
  padding: 6px 0;
}

.footer-links a:hover {
  color: var(--color-third);
}

.footer-news p {
  margin-bottom: 14px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 8px;
  padding: 12px 14px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.site-footer .field-error {
  color: #fecaca;
}

/* Page hero */
.page-hero {
  background: var(--banner-gradient);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 10px;
}

.page-hero p {
  max-width: 640px;
  margin: 0 auto 12px;
  color: rgba(255, 255, 255, 0.9);
}

.crumbs {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.crumbs a:hover {
  color: var(--color-third);
}

/* Forms */
.form-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--card-shadow);
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 6px;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field-error {
  color: #e11d48;
  font-size: 13px;
  margin-top: 6px;
  display: none;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #e11d48;
}

.field.has-error .field-error {
  display: block;
}

.form-success {
  display: none;
  background: #ecfdf3;
  border: 1px solid #26cf4b;
  color: #166534;
  border-radius: 10px;
  padding: 16px 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.form-success.is-visible {
  display: block;
}

.domain-form .form-success,
.domain-form .field .field-error {
  grid-column: 1 / -1;
}

.newsletter-form .form-success,
form[data-validate] > .form-success {
  grid-column: 1 / -1;
}

/* About */
.story-photo {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 28px;
}

.story-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}

.tab-btn {
  border: 1px solid var(--color-primary);
  background: #fff;
  color: var(--color-primary);
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 700;
  cursor: pointer;
}

.tab-btn.is-active {
  background: var(--color-primary);
  color: #fff;
}

.tab-panel {
  display: none;
  max-width: 820px;
  margin: 0 auto;
}

.tab-panel.is-active {
  display: block;
}

.team-card {
  text-align: center;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
}

.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.team-card .body {
  padding: 18px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-box {
  background: var(--plan-bg);
  border-radius: 16px;
  padding: 28px 16px;
  text-align: center;
}

.stat-box strong {
  display: block;
  font-size: 36px;
  color: var(--color-primary);
  font-family: var(--font-primary);
}

/* Pricing */
.billing-toggle {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
}

.billing-toggle button {
  border: 1px solid var(--light-border);
  background: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  color: var(--color-secondary);
}

.billing-toggle button.is-active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.plan-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.plan-card.popular {
  border-color: var(--color-primary);
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(7, 116, 255, 0.16);
}

.plan-card header {
  background: var(--primary-gradient);
  color: #fff;
  padding: 28px 24px 20px;
}

.plan-card header h3,
.plan-card .amount {
  color: #fff;
}

.plan-card .amount {
  font-size: 40px;
  font-family: var(--font-primary);
  font-weight: 800;
}

.plan-card .amount small {
  font-size: 16px;
  font-weight: 500;
}

.plan-card .body {
  padding: 24px;
  flex: 1;
}

.plan-card li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
}

.plan-card footer {
  padding: 0 24px 24px;
}

/* Tables */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.price-table th,
.price-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.price-table th {
  background: var(--plan-bg);
  color: var(--color-secondary);
  font-family: var(--font-primary);
}

/* Help */
.help-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.help-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
}

.side-nav button {
  width: 100%;
  text-align: left;
  border: 1px solid var(--border-color);
  background: #fff;
  padding: 14px 16px;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--color-secondary);
  cursor: pointer;
  border-radius: 0 10px 10px 0;
  clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
}

.side-nav button.is-active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* Legal */
.legal-content h2 {
  font-size: 28px;
  margin: 32px 0 12px;
}

.legal-content h3 {
  font-size: 20px;
  margin: 22px 0 8px;
}

.legal-content p,
.legal-content li {
  margin-bottom: 12px;
}

.legal-content ul {
  padding-left: 20px;
  list-style: disc;
}

.narrow {
  max-width: 760px;
  margin-inline: auto;
}

.media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.tech-badge {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px 22px;
  font-weight: 700;
  color: var(--color-secondary);
  min-width: 140px;
  text-align: center;
}

.note {
  font-size: 13px;
  color: var(--placeholder);
  margin-top: 10px;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: none;
  place-items: center;
  z-index: 50;
  box-shadow: var(--card-shadow);
}

.back-top.is-visible {
  display: grid;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 62, 0.72);
  display: none;
  place-items: center;
  z-index: 2000;
  padding: 24px;
}

.modal.is-open {
  display: grid;
}

.modal-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  max-width: 520px;
  text-align: center;
}

.modal-card img {
  width: 180px;
  margin: 0 auto 16px;
}

.icon-svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.muted { color: var(--btc); }
.white-text, .white-text h2, .white-text p { color: #fff; }
