:root {
  --cb: #00adf2;
  --cb-dark: #0093ce;
  --cg: #2bcc71;
  --cdi: #031b4e;
  --ci: #4e5f83;
  --cli: #929eaf;
  --cub: #d8f1fa;
  --cb3: #f0fafe;
  --cb5: #e9f6fb;
  --cw: #fff;
  --line: #d8f1fa;
  --shadow: 0 14px 34px rgba(3, 27, 78, .12);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ci);
  background: var(--cw);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans TC", "Noto Sans SC", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 32px);
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 80;
  transform: translateY(-150%);
  background: var(--cdi);
  color: var(--cw);
  padding: 10px 14px;
  border-radius: 6px;
}

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

.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;
}

.site-header {
  position: relative;
  z-index: 20;
  background: linear-gradient(180deg, #eefbff 0%, rgba(238, 251, 255, .76) 100%);
}

.header-top {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 32px;
  padding-top: 16px;
}

.logo-brand,
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cdi);
  font-weight: 800;
}

.logo-icon,
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: #0b214e;
  color: var(--cw);
  box-shadow: 0 12px 28px rgba(3, 27, 78, .18);
}

.brand-mark {
  background: var(--cb);
  font-size: 22px;
  font-weight: 900;
}

.logo-icon svg { width: 27px; height: 27px; stroke-width: 2.2; }

.logo-text strong,
.logo-text small {
  display: block;
}

.logo-text strong,
.brand-word {
  color: var(--cb);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  line-height: .95;
}

.logo-text small {
  color: #4bb9df;
  font-size: 12px;
  font-weight: 800;
}

.top-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.support-link,
.nav-pill {
  color: var(--cdi);
  font-weight: 600;
  white-space: nowrap;
}

.support-link:hover,
.nav-pill:hover { color: var(--cb); }

.mini-search {
  display: flex;
  align-items: center;
  width: 190px;
  min-height: 36px;
  border: 1px solid #bfe7f8;
  border-radius: 50rem;
  background: rgba(255, 255, 255, .92);
  overflow: hidden;
}

.mini-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 8px 0 14px;
  color: var(--cdi);
  background: transparent;
}

.mini-search button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 34px;
  border: 0;
  color: var(--cli);
  background: transparent;
  cursor: pointer;
}

.loyalty-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 34px;
  border: 1px solid #d8f1fa;
  border-radius: 50rem;
  background: var(--cw);
  color: var(--ci);
  padding: 0 12px;
  font-weight: 700;
}

.loyalty-pill span { color: #ffb300; }

.tool-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #5b6d90;
}

.nameai-button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border-radius: 10px;
  background: #142b4c;
  color: var(--cw);
  padding: 0 22px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(20, 43, 76, .25);
}

.header-nav-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding-top: 8px;
  padding-bottom: 12px;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding-top: 22px;
  padding-bottom: 22px;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(18px, 2.5vw, 34px);
  font-size: 18px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-label {
  color: var(--cdi);
  font-size: 13px;
  font-weight: 700;
}

.language-select {
  min-height: 40px;
  border: 1px solid #d6eaf6;
  border-radius: 8px;
  background: var(--cw);
  color: var(--cdi);
  padding: 0 34px 0 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: inherit;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
  cursor: pointer;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, transform .15s ease-in-out;
}

.button:hover { text-decoration: none; transform: translateY(-1px); }
.button-lg { padding: 16px 32px; border-radius: 8px; font-size: 16px; }
.bgcb { background: var(--cb); color: var(--cw); }
.bgcg { background: var(--cg); color: var(--cw); }
.button-outline.bgcb { background: transparent; border-color: var(--cb); color: var(--cb); }

.button:focus-visible,
.language-select:focus-visible,
input:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(0, 173, 242, .25);
  outline-offset: 3px;
}

.official-hero {
  position: relative;
  overflow: hidden;
  min-height: 800px;
  background:
    linear-gradient(180deg, rgba(235, 250, 255, .98) 0%, rgba(247, 253, 255, .72) 42%, rgba(235, 250, 255, .95) 100%);
}

.wave-layer,
.official-hero::before,
.official-hero::after,
.help-section::before,
.help-section::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.wave-layer {
  inset: 0;
  background:
    repeating-radial-gradient(ellipse at 26% 18%, transparent 0 12px, rgba(150, 199, 219, .18) 13px 14px, transparent 15px 25px),
    repeating-radial-gradient(ellipse at 76% 18%, transparent 0 12px, rgba(150, 199, 219, .16) 13px 14px, transparent 15px 25px);
  mask-image: linear-gradient(180deg, transparent 5%, #000 18%, #000 82%, transparent 98%);
  opacity: .65;
}

.official-hero::before {
  left: -8%;
  right: -8%;
  top: 252px;
  height: 180px;
  background: var(--cw);
  transform: skewY(-5deg);
  z-index: 0;
}

.official-hero::after {
  left: -10%;
  right: -10%;
  bottom: -72px;
  height: 160px;
  background: var(--cw);
  transform: skewY(-4deg);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 58px;
}

.hero-title {
  max-width: 1080px;
  margin: 0 auto 20px;
  color: var(--cdi);
  font-size: clamp(42px, 5.8vw, 66px);
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
}

.hero-subtitle {
  max-width: 920px;
  margin: 0 auto 42px;
  color: var(--cdi);
  font-size: clamp(24px, 3.1vw, 38px);
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

.hero-subtitle span:first-child {
  color: var(--cb);
}

.home-search-panel {
  max-width: 1390px;
  margin: 0 auto 64px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 16% 40%, rgba(255, 255, 255, .18), transparent 28%),
    radial-gradient(circle at 76% 52%, rgba(255, 255, 255, .16), transparent 32%),
    var(--cb);
  padding: clamp(24px, 3vw, 40px) clamp(24px, 5vw, 64px);
  box-shadow: 0 22px 48px rgba(0, 173, 242, .18);
}

.home-input-group {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 240px);
  min-height: 70px;
  overflow: hidden;
  border-radius: 8px;
}

.home-input-group input {
  min-width: 0;
  border: 0;
  background: var(--cw);
  color: var(--cdi);
  padding: 0 26px;
  font-size: clamp(20px, 2vw, 28px);
  outline: 0;
}

.home-input-group button {
  border: 0;
  background: var(--cg);
  color: var(--cw);
  padding: 0 18px;
  font-size: clamp(15px, 1.15vw, 19px);
  font-weight: 900;
  cursor: pointer;
  white-space: normal;
}

.promo-tlds {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin-top: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .24);
  padding: 18px 24px;
}

.promo-tlds a {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  color: var(--cw);
  font-size: 20px;
  font-weight: 800;
  white-space: nowrap;
}

.promo-tlds strong { color: var(--cdi); font-size: 24px; }
.promo-tlds del { color: rgba(255, 255, 255, .72); font-size: 14px; }

.official-feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 70px);
  max-width: 1390px;
  margin: 0 auto;
  text-align: center;
}

.feature-card {
  background: transparent;
  border: 0;
  padding: 0;
}

.feature-card .icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  color: #62799b;
}

.feature-card .icon svg {
  width: 62px;
  height: 62px;
  stroke-width: 1.6;
}

.feature-card h3 {
  margin: 0 0 14px;
  color: var(--cdi);
  font-size: 20px;
  line-height: 1.2;
}

.feature-card p {
  margin: 0;
  color: #6a7895;
  font-size: 18px;
  line-height: 1.5;
}

.feature-card a {
  color: var(--cb);
  font-weight: 700;
}

.trust-section {
  display: grid;
  place-items: center;
  min-height: 280px;
  background: var(--cw);
  text-align: center;
}

.trust-title {
  color: #111;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.trust-title span { color: #00b67a; }

.trust-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 16px 0 8px;
}

.trust-stars span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  background: #00b67a;
  color: #fff;
  font-size: 34px;
  line-height: 1;
}

.trust-stars .half { background: linear-gradient(90deg, #00b67a 55%, #d8d8e5 55%); }
.trust-box p { margin: 0; color: #222; font-size: 20px; }
.trust-box a { text-decoration: underline; }

.help-section {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding: 138px 0 0;
  background: linear-gradient(180deg, #eafdff 0%, #f5fdff 100%);
}

.help-section::before {
  left: -8%;
  right: -8%;
  top: -74px;
  height: 142px;
  background: var(--cw);
  transform: skewY(-4deg);
}

.help-section::after {
  left: 0;
  right: 0;
  bottom: 18%;
  height: 220px;
  background:
    repeating-radial-gradient(ellipse at 30% 40%, transparent 0 12px, rgba(150, 199, 219, .18) 13px 14px, transparent 15px 25px),
    repeating-radial-gradient(ellipse at 74% 34%, transparent 0 12px, rgba(150, 199, 219, .14) 13px 14px, transparent 15px 25px);
  opacity: .55;
}

.help-section .container {
  position: relative;
  z-index: 1;
}

.help-section h2 {
  margin: 0 0 56px;
  color: var(--cdi);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 900;
  text-align: center;
}

.help-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1090px;
  margin: 0 auto 54px;
  border: 2px solid var(--cb);
  border-radius: 9px;
  overflow: hidden;
}

.help-tabs button {
  min-height: 58px;
  border: 0;
  background: transparent;
  color: #63708c;
  padding: 0 14px;
  font-size: clamp(16px, 1.35vw, 24px);
  font-weight: 700;
  line-height: 1.15;
  cursor: pointer;
}

.help-tabs .active {
  background: var(--cb);
  color: var(--cw);
}

.help-section h3 {
  margin: 0 0 70px;
  color: var(--cdi);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  text-align: center;
}

.help-content {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 70px;
  align-items: center;
}

.help-content h4 {
  margin: 0 0 28px;
  color: var(--cdi);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
}

.help-content p {
  max-width: 680px;
  color: #5f6f8f;
  font-size: 24px;
  line-height: 1.5;
}

.help-visual {
  position: relative;
  min-height: 280px;
}

.rocket-scene {
  position: relative;
  min-height: 280px;
}

.moon {
  position: absolute;
  left: 0;
  bottom: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: #cfeef8;
}

.rocket {
  position: absolute;
  left: 210px;
  bottom: 54px;
  width: 62px;
  height: 220px;
  border-radius: 60% 60% 12px 12px;
  background: #fff;
  transform: rotate(58deg);
  box-shadow: inset 0 0 0 8px #c0e4f5;
}

.rocket::before,
.rocket::after {
  position: absolute;
  content: "";
  bottom: 22px;
  width: 42px;
  height: 70px;
  background: #74add3;
}

.rocket::before { left: -30px; border-radius: 70% 0 0 30%; }
.rocket::after { right: -30px; border-radius: 0 70% 30% 0; }

.rocket span {
  position: absolute;
  top: 64px;
  left: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: #a9e6fa;
  border: 8px solid #79b8d9;
}

.domain-stack-visual {
  position: relative;
  min-height: 300px;
}

.stack-card,
.tld-chip {
  position: absolute;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(3, 27, 78, .12);
}

.stack-card {
  width: 300px;
  height: 168px;
  left: 80px;
  top: 70px;
  background: var(--cw);
  border: 1px solid var(--cub);
}

.stack-card::before,
.stack-card::after {
  position: absolute;
  content: "";
  left: 26px;
  right: 26px;
  height: 14px;
  border-radius: 99px;
  background: #e6f6fb;
}

.stack-card::before { top: 44px; }
.stack-card::after { top: 86px; width: 54%; }
.stack-card.one { transform: rotate(-8deg); }
.stack-card.two { transform: translate(34px, 22px) rotate(4deg); }
.stack-card.three { transform: translate(70px, 48px); }

.tld-chip {
  z-index: 2;
  display: grid;
  place-items: center;
  width: 86px;
  height: 54px;
  background: var(--cb);
  color: var(--cw);
  font-size: 22px;
  font-weight: 900;
}

.tld-chip:nth-child(1) { left: 28px; top: 28px; }
.tld-chip:nth-child(2) { left: 248px; top: 14px; background: var(--cg); }
.tld-chip:nth-child(3) { left: 22px; top: 210px; background: #74add3; }
.tld-chip:nth-child(4) { left: 340px; top: 218px; background: #0b214e; }

.api-visual {
  position: relative;
  width: min(420px, 100%);
  min-height: 280px;
  border-radius: 14px;
  background: #071d48;
  padding: 70px 28px 28px;
  box-shadow: 0 22px 46px rgba(3, 27, 78, .18);
}

.api-bar {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 48px;
  border-radius: 14px 14px 0 0;
  background: #0d2a62;
}

.api-bar::before {
  position: absolute;
  content: "";
  left: 22px;
  top: 17px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5b5b;
  box-shadow: 22px 0 #ffbd2e, 44px 0 #2bcc71;
}

.api-visual code {
  display: block;
  margin-bottom: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: #dff7ff;
  padding: 14px 16px;
  font-size: 18px;
}

.service-showcase {
  position: relative;
  overflow: hidden;
  padding: 96px 0 88px;
  background: var(--cw);
}

.service-showcase::before {
  position: absolute;
  content: "";
  left: 48%;
  top: 40px;
  width: 260px;
  height: 720px;
  border: 6px dashed rgba(0, 173, 242, .12);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 180px 0 0;
  transform: rotate(18deg);
  pointer-events: none;
}

.service-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(320px, 1fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
  margin-bottom: 92px;
}

.service-row-alt {
  grid-template-columns: minmax(320px, 1fr) minmax(300px, .9fr);
}

.service-copy h2 {
  margin: 0 0 18px;
  color: var(--cdi);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
}

.price-line {
  margin: 0 0 26px;
  color: var(--cb);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
}

.service-copy p:not(.price-line) {
  max-width: 680px;
  margin: 0 0 34px;
  color: #596a8c;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.55;
}

.ssl-visual,
.hosting-visual {
  position: relative;
  min-height: 360px;
}

.ssl-visual::before,
.hosting-visual::before {
  position: absolute;
  content: "";
  inset: 0 auto auto 48px;
  width: 390px;
  height: 300px;
  border-radius: 50%;
  background: #d6f2fb;
}

.browser-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 42px auto 1fr;
  align-items: center;
  gap: 16px;
  width: min(600px, 100%);
  min-height: 88px;
  margin: 42px 0 0 28px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .94);
  padding: 18px 28px;
  box-shadow: 0 18px 40px rgba(3, 27, 78, .12);
}

.browser-card + .browser-card { margin-top: 24px; }
.browser-card svg { width: 36px; height: 36px; }
.browser-card.secure svg { color: var(--cg); }
.browser-card.danger svg { color: #f0322f; }
.browser-card strong { color: #202a3b; font-size: clamp(18px, 2vw, 26px); font-weight: 700; }
.lock-dot,
.warning-dot {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #eff8fb;
}

.lock-dot::before,
.warning-dot::before {
  font-family: system-ui, sans-serif;
  font-weight: 900;
}

.lock-dot::before {
  content: "";
  width: 18px;
  height: 14px;
  border-radius: 3px;
  background: #2f3748;
  box-shadow: 0 -10px 0 -5px #2f3748;
}

.lock-dot::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 12px;
  border: 3px solid #2f3748;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  transform: translateY(-8px);
}

.warning-dot::before { content: "!"; color: #f0322f; font-size: 28px; }

.hosting-visual {
  display: grid;
  place-items: center;
}

.site-window {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  min-height: 270px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .95);
  padding: 54px 34px 34px;
  box-shadow: 0 18px 40px rgba(3, 27, 78, .12);
}

.site-window > span {
  position: absolute;
  top: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f0322f;
}

.site-window > span:nth-child(1) { left: 24px; }
.site-window > span:nth-child(2) { left: 46px; background: #dff7ff; width: 42px; }
.site-window > span:nth-child(3) { right: 28px; background: var(--cb); width: 54px; border-radius: 99px; }

.window-body {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 30px;
  align-items: center;
}

.mail-block {
  position: relative;
  height: 148px;
  border-radius: 8px;
  background: #53658b;
  transform: rotate(-11deg);
}

.mail-block::before,
.mail-block::after {
  position: absolute;
  content: "";
}

.line-stack b {
  display: block;
  height: 24px;
  margin-bottom: 18px;
  border-radius: 99px;
  background: #edf1f5;
}

.line-stack b:last-child {
  width: 70%;
  background: #0b214e;
}

.gear {
  position: absolute;
  border-radius: 50%;
  border: 28px solid #88c3e7;
  opacity: .75;
}

.gear-one {
  right: 90px;
  bottom: 8px;
  width: 150px;
  height: 150px;
}

.gear-two {
  left: 130px;
  top: 70px;
  width: 74px;
  height: 74px;
  border-width: 14px;
  border-color: #cdeefa;
}

.registrar-compare {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--cub);
  padding-top: 42px;
}

.registrar-compare h2 {
  margin: 0 0 34px;
  color: var(--cdi);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  text-align: center;
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--cub);
  border-radius: 8px;
  background: var(--cw);
  box-shadow: 0 12px 30px rgba(3, 27, 78, .08);
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: var(--ci);
}

.compare-table th,
.compare-table td {
  padding: 22px 24px;
  border-bottom: 1px solid var(--cub);
  text-align: left;
  vertical-align: top;
}

.compare-table thead th {
  color: var(--cdi);
  background: var(--cb3);
  font-size: 18px;
}

.compare-table tbody th {
  color: var(--cdi);
  font-weight: 900;
}

.compare-table td {
  font-size: 17px;
}

.compare-table td svg {
  margin-right: 8px;
  vertical-align: -2px;
}

.compare-table td:nth-child(2) svg { color: var(--cg); }
.compare-table td:nth-child(3) svg { color: var(--cli); }
.compare-table tr:last-child th,
.compare-table tr:last-child td { border-bottom: 0; }

.section {
  padding: 92px 0;
  border-top: 1px solid var(--cb5);
}

.section-title {
  margin: 0 auto 26px;
  color: var(--cdi);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.section-desc {
  max-width: 860px;
  margin: 0 auto 48px;
  color: var(--ci);
  font-size: 20px;
  text-align: center;
}

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

.check-item,
.faq-item {
  border: 1px solid var(--cub);
  border-radius: 8px;
  background: var(--cw);
}

.check-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 22px;
}

.check-item svg { color: var(--cg); }
.check-item strong { display: block; color: var(--cdi); margin-bottom: 4px; }
.check-item span { color: var(--ci); }

.faq-list {
  display: grid;
  max-width: 920px;
  margin: 0 auto;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  color: var(--cdi);
  cursor: pointer;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--cb); font-size: 22px; }
.faq-item[open] summary::after { content: "-"; }
.faq-item p { margin: 0; padding: 0 22px 22px; color: var(--ci); }

.site-footer {
  background: var(--cb3);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 2fr) repeat(3, minmax(150px, 1fr));
  gap: 32px;
}

.footer-brand { margin-bottom: 20px; }
.site-footer p { margin: 0; color: var(--ci); }
.site-footer strong { display: block; color: var(--cdi); margin-bottom: 20px; }
.site-footer a { display: block; color: var(--ci); margin-bottom: 12px; }
.site-footer a:hover { color: var(--cb); }

.legal-main {
  width: min(900px, calc(100% - 36px));
  margin: 0 auto;
}

.legal-hero {
  padding: 88px 0 32px;
}

.legal-hero h1 {
  color: var(--cdi);
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.2;
}

.legal-hero p:not(.eyebrow) {
  color: var(--ci);
  font-size: 18px;
}

.eyebrow {
  color: var(--cb);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-panel {
  border: 1px solid var(--cub);
  border-radius: 8px;
  background: var(--cw);
  padding: clamp(24px, 5vw, 42px);
  box-shadow: var(--shadow);
}

.legal-block {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.legal-block:last-child { border-bottom: 0; }
.legal-block h2 { color: var(--cdi); font-size: clamp(22px, 3vw, 32px); }
.legal-block p, .legal-block li { color: var(--ci); }
.legal-actions { display: flex; flex-wrap: wrap; gap: 12px; }

svg {
  width: 1.08em;
  height: 1.08em;
  stroke-width: 2.2;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .header-top,
  .header-inner,
  .header-nav-row {
    grid-template-columns: 1fr;
  }

  .top-tools,
  .main-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .official-feature-row,
  .promo-tlds {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .help-content {
    grid-template-columns: 1fr;
  }

  .service-row,
  .service-row-alt {
    grid-template-columns: 1fr;
  }

  .service-row-alt .service-copy {
    order: 2;
  }

  .service-row-alt .hosting-visual {
    order: 1;
  }
}

@media (max-width: 760px) {
  .container {
    padding: 0 16px;
  }

  .logo-text strong,
  .brand-word {
    font-size: 24px;
  }

  .logo-text small,
  .loyalty-pill,
  .tool-icon,
  .nameai-button,
  .support-link,
  .mini-search {
    display: none;
  }

  .header-nav-row {
    padding-top: 4px;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 18px;
    font-size: 15px;
    overflow: visible;
  }

  .official-hero {
    min-height: 0;
  }

  .official-hero::before {
    top: 360px;
  }

  .hero-inner {
    padding-top: 60px;
  }

  .hero-title {
    font-size: clamp(34px, 11vw, 48px);
    text-align: left;
  }

  .hero-subtitle {
    font-size: 21px;
    text-align: left;
  }

  .home-search-panel {
    margin-bottom: 52px;
    padding: 22px 16px;
  }

  .home-input-group {
    grid-template-columns: 1fr;
    gap: 12px;
    overflow: visible;
  }

  .home-input-group input,
  .home-input-group button {
    min-height: 58px;
    border-radius: 8px;
  }

  .promo-tlds,
  .official-feature-row,
  .check-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .promo-tlds {
    gap: 10px;
  }

  .promo-tlds a {
    justify-content: flex-start;
  }

  .trust-section {
    min-height: 220px;
  }

  .trust-title {
    font-size: 28px;
  }

  .trust-stars span {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }

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

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

  .help-tabs {
    grid-template-columns: 1fr;
  }

  .help-tabs button {
    min-height: 50px;
    font-size: 17px;
  }

  .rocket-scene {
    min-height: 190px;
  }

  .help-visual,
  .ssl-visual,
  .hosting-visual {
    min-height: 230px;
  }

  .moon {
    width: 240px;
    height: 240px;
  }

  .rocket {
    left: 150px;
    bottom: 42px;
    transform: rotate(58deg) scale(.72);
  }

  .domain-stack-visual {
    min-height: 230px;
    transform: scale(.78);
    transform-origin: left top;
  }

  .api-visual {
    min-height: 220px;
    padding: 62px 18px 18px;
  }

  .api-visual code {
    font-size: 14px;
  }

  .service-showcase {
    padding: 64px 0;
  }

  .service-showcase::before {
    display: none;
  }

  .service-row {
    gap: 24px;
    margin-bottom: 70px;
  }

  .ssl-visual::before,
  .hosting-visual::before {
    left: 0;
    width: 270px;
    height: 210px;
  }

  .browser-card {
    grid-template-columns: 30px auto 1fr;
    gap: 10px;
    min-height: 70px;
    margin-left: 0;
    padding: 14px 16px;
  }

  .browser-card strong {
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .browser-card svg {
    width: 28px;
    height: 28px;
  }

  .lock-dot,
  .warning-dot {
    width: 32px;
    height: 32px;
  }

  .site-window {
    min-height: 220px;
    padding: 50px 22px 24px;
  }

  .window-body {
    grid-template-columns: 92px 1fr;
    gap: 18px;
  }

  .mail-block {
    height: 112px;
  }

  .gear-one {
    right: 20px;
    width: 108px;
    height: 108px;
    border-width: 20px;
  }

  .gear-two {
    left: 42px;
    top: 38px;
  }

  .compare-table {
    min-width: 620px;
  }

  .compare-table th,
  .compare-table td {
    padding: 16px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
