:root {
  --ink: #142033;
  --muted: #64748b;
  --blue: #0497f9;
  --blue-2: #0f6fe8;
  --orange: #ff5a1f;
  --orange-2: #ff7a1a;
  --green: #16c784;
  --line: #e6eef7;
  --soft: #f5fbff;
  --card: #ffffff;
  --shadow: 0 24px 70px rgba(16, 42, 89, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(4, 151, 249, .11), transparent 30%),
    radial-gradient(circle at 96% 4%, rgba(255, 90, 31, .09), transparent 34%),
    linear-gradient(180deg, #f8fdff 0%, #fff 38%, #f7fbff 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(1210px, calc(100% - 40px)); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  background: rgba(248, 253, 255, .86);
  border-bottom: 1px solid rgba(220, 232, 245, .75);
  backdrop-filter: blur(18px);
}
.nav-shell {
  min-height: 68px;
  border: 1px solid rgba(220, 232, 245, .95);
  border-radius: 999px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 42px rgba(15, 76, 129, .08);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; font-size: 24px; }
.brand img { width: 210px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; font-weight: 800; }
.nav-links a { color: #26364d; display: inline-flex; align-items: center; gap: 7px; }
.nav-links a:hover { color: var(--blue); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.currency {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 10px 14px;
  background: #fff;
  font-weight: 900;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  border-radius: 999px;
  padding: 0 26px;
  font-weight: 900;
  border: 0;
  cursor: pointer;
}
.btn-blue { color: #fff; background: linear-gradient(135deg, var(--blue), var(--blue-2)); box-shadow: 0 18px 36px rgba(4, 151, 249, .26); }
.btn-orange { color: #fff; background: linear-gradient(135deg, var(--orange), var(--orange-2)); box-shadow: 0 18px 36px rgba(255, 90, 31, .24); }
.btn-dark { color: #fff; background: #131b2d; box-shadow: 0 18px 34px rgba(20, 32, 51, .22); }
.btn-ghost { color: var(--ink); background: transparent; padding: 0 10px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 110px;
  background-image:
    linear-gradient(rgba(4,151,249,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4,151,249,.05) 1px, transparent 1px);
  background-size: 42px 42px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 48%;
  background: radial-gradient(circle at 10% 52%, rgba(4,151,249,.14), transparent 48%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 68px;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #bde8ff;
  border-radius: 999px;
  padding: 10px 16px;
  color: #0875b8;
  background: rgba(236, 249, 255, .92);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(4,151,249,.12);
}
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(4,151,249,.12); }
h1 {
  margin: 24px 0 18px;
  font-size: clamp(43px, 5.8vw, 74px);
  line-height: 1.03;
  letter-spacing: 0;
}
.accent-blue { color: var(--blue); }
.accent-orange { color: var(--orange); }
.lead {
  margin: 0;
  color: var(--muted);
  max-width: 620px;
  font-size: 19px;
  line-height: 1.75;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: #fff;
  color: #344258;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15, 76, 129, .06);
}
.hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.rating { margin-top: 18px; color: #55647a; font-weight: 700; }
.stars { color: #ffbd12; letter-spacing: 2px; }

.hero-card {
  position: relative;
  min-height: 500px;
  border: 1px solid #d9e8f5;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 50%, rgba(37, 99, 235, .95), rgba(37, 99, 235, .92) 34%, transparent 35%),
    linear-gradient(145deg, #fff, #f6faff);
  box-shadow: var(--shadow);
  overflow: visible;
}
.hero-person {
  position: absolute;
  inset: auto 8% 0;
  height: 82%;
  border-radius: 32px 32px 0 0;
  background:
    radial-gradient(circle at 50% 16%, #ffe2bd 0 9%, transparent 10%),
    linear-gradient(165deg, transparent 0 23%, #1d4ed8 24% 62%, transparent 63%),
    radial-gradient(ellipse at 50% 100%, #111827 0 38%, transparent 39%);
}
.laptop {
  position: absolute;
  right: 36px;
  bottom: 68px;
  width: 250px;
  height: 145px;
  border-radius: 14px;
  background: linear-gradient(145deg, #e9f2ff, #9bb8df);
  box-shadow: 0 24px 38px rgba(15, 23, 42, .28);
  transform: rotate(4deg);
}
.floating {
  position: absolute;
  z-index: 2;
  border: 1px solid #dbeaf7;
  border-radius: 18px;
  padding: 14px 16px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 76, 129, .14);
  font-weight: 900;
}
.floating small { display: block; color: var(--muted); font-weight: 700; margin-top: 4px; }
.float-uptime { top: 40px; left: 18px; }
.float-fast { right: 18px; top: 178px; }
.float-price { right: 78px; bottom: -20px; border-color: #ffe0bd; }
.float-ssl { left: 18px; bottom: 90px; }

.section { padding: 82px 0; }
.section-title { text-align: center; max-width: 760px; margin: 0 auto 42px; }
.section-title .mini {
  display: inline-block;
  border-radius: 999px;
  padding: 7px 18px;
  color: var(--blue);
  background: #e7f6ff;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .8px;
}
h2 { margin: 14px 0 12px; font-size: clamp(34px, 4.6vw, 56px); line-height: 1.08; }
.section-title p { color: var(--muted); font-size: 18px; line-height: 1.7; margin: 0; }
.domain-box {
  display: grid;
  grid-template-columns: 1fr 170px;
  max-width: 720px;
  margin: 0 auto 30px;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--line);
}
.domain-box input { border: 0; padding: 0 26px; min-height: 64px; font-size: 16px; outline: 0; }
.domain-box button { border-radius: 0; min-height: 64px; }
.tld-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 840px; margin: 0 auto; }
.tld {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16,42,89,.07);
}
.tld b { display: block; font-size: 25px; margin-bottom: 8px; }

.plans { background: linear-gradient(180deg, #fff, #f4fbff); }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.plan {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 30px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(16,42,89,.09);
}
.plan.popular { border-color: rgba(4,151,249,.45); transform: translateY(-10px); }
.plan-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 999px;
  padding: 7px 12px;
  background: #e7f6ff;
  color: var(--blue);
  font-weight: 900;
  font-size: 12px;
}
.plan h3 { margin: 0 0 8px; font-size: 25px; }
.plan p { color: var(--muted); line-height: 1.6; min-height: 50px; }
.price { font-size: 42px; font-weight: 950; margin: 20px 0; }
.price span { font-size: 16px; color: var(--muted); }
.features { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; color: #344258; font-weight: 700; }
.features li::before { content: "✓"; color: var(--green); font-weight: 950; margin-right: 9px; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(16,42,89,.07);
}
.icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  font-weight: 950;
  margin-bottom: 18px;
}
.feature-card h3 { margin: 0 0 8px; }
.feature-card p { color: var(--muted); line-height: 1.6; margin: 0; }

.support-band {
  border-radius: 34px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background:
    radial-gradient(circle at 86% 18%, rgba(255,255,255,.23), transparent 30%),
    linear-gradient(135deg, #083c74, #079af5);
  color: #fff;
  box-shadow: 0 24px 70px rgba(4,151,249,.24);
}
.support-band h2 { color: #fff; margin-top: 0; }
.support-band p { color: rgba(255,255,255,.86); font-size: 18px; line-height: 1.7; max-width: 680px; }

.footer {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 24px; }
.footer h4 { margin: 0 0 14px; }
.footer a, .footer p { display: block; color: var(--muted); margin: 9px 0; }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .hero-grid, .support-band, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
  .hero-card { min-height: 420px; }
  .plan-grid, .feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .wrap { width: min(100% - 24px, 480px); }
  .nav-shell { border-radius: 22px; }
  .brand img { width: 174px; }
  .currency { display: none; }
  .hero { padding-bottom: 54px; }
  .hero-card { min-height: 360px; }
  .floating { font-size: 12px; padding: 10px 12px; }
  .float-uptime { left: 8px; }
  .float-fast { right: 8px; }
  .float-ssl { left: 8px; }
  .float-price { right: 18px; }
  .domain-box { grid-template-columns: 1fr; border-radius: 22px; }
  .domain-box button { border-radius: 0; }
  .tld-row, .plan-grid, .feature-grid { grid-template-columns: 1fr; }
  .plan.popular { transform: none; }
  .support-band { padding: 30px; border-radius: 24px; }
}
