:root {
  --void: #070a0f;
  --night: #0a0e15;
  --panel: #0e141d;
  --panel-2: #121a26;
  --panel-3: #182231;
  --line: #253244;
  --line-bright: #34465e;
  --ink: #f4f8fb;
  --text: #d9e2e9;
  --muted: #8f9eac;
  --muted-2: #667687;
  --primary: #24e5ff;
  --primary-2: #7a63ff;
  --lime: #b8ff5e;
  --danger: #ff647c;
  --warning: #ffca6c;
  --success: #71efb3;
  --white: #fff;
  --container: 1440px;
  --radius: 26px;
  --radius-sm: 16px;
  --shadow-sm: 0 16px 42px rgba(0, 0, 0, .22);
  --shadow: 0 26px 74px rgba(0, 0, 0, .34);
  --shadow-lg: 0 42px 120px rgba(0, 0, 0, .48);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 116px; background: var(--void); }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(36, 229, 255, .055), transparent 27rem),
    radial-gradient(circle at 88% 35%, rgba(122, 99, 255, .055), transparent 32rem),
    var(--void);
  font-family: Inter, "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
::selection { color: var(--void); background: var(--primary); }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--line-bright); border: 3px solid var(--void); border-radius: 999px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, h4 {
  color: var(--ink);
  font-family: "Segoe UI Variable Display", "Arial Black", "Segoe UI", Arial, sans-serif;
  line-height: 1.02;
  letter-spacing: -.055em;
}
h1, h2, h3, p { margin-top: 0; }
h2 { font-size: clamp(36px, 4.6vw, 68px); margin-bottom: 20px; }
h3 { font-size: 22px; }
p { color: var(--muted); }
ul { accent-color: var(--primary); }

.container { width: min(calc(100% - 96px), var(--container)); margin-inline: auto; }
section { position: relative; padding: 118px 0; }
.soft-section {
  background:
    linear-gradient(rgba(36, 229, 255, .024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 229, 255, .024) 1px, transparent 1px),
    linear-gradient(180deg, #0b1018, #080c12);
  background-size: 48px 48px, 48px 48px, auto;
  border-block: 1px solid rgba(143, 158, 172, .1);
  overflow: hidden;
}
.soft-section::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -300px;
  top: -280px;
  border: 1px solid rgba(122, 99, 255, .15);
  border-radius: 50%;
  box-shadow: 0 0 0 88px rgba(122, 99, 255, .025), 0 0 0 176px rgba(36, 229, 255, .018);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
  color: var(--primary);
  font-family: "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .19em;
  line-height: 1.35;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  box-shadow: 9px 0 12px currentColor;
}
.eyebrow.light { color: var(--lime); }
.section-head { max-width: 820px; margin: 0 auto 60px; text-align: center; }
.section-head p { max-width: 710px; margin-inline: auto; font-size: 17px; }

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 23px;
  overflow: hidden;
  border: 1px solid var(--line-bright);
  border-radius: 14px;
  background: rgba(18, 26, 38, .76);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.btn::after {
  content: "↗";
  font-size: 15px;
  transition: transform .25s var(--ease);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, .18), transparent 80%);
  transform: translateX(-130%);
  transition: transform .7s var(--ease);
}
.btn:hover { transform: translateY(-3px); border-color: rgba(36, 229, 255, .52); box-shadow: 0 16px 34px rgba(0, 0, 0, .28); }
.btn:hover::before { transform: translateX(130%); }
.btn:hover::after { transform: translate(2px, -2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  color: #031015;
  border-color: transparent;
  background: linear-gradient(135deg, var(--primary), #67f3ff);
  box-shadow: 0 14px 36px rgba(36, 229, 255, .2);
}
.btn-primary:hover { border-color: transparent; box-shadow: 0 18px 46px rgba(36, 229, 255, .3); }
.btn-outline { color: var(--ink); border-color: var(--line-bright); background: rgba(12, 17, 26, .68); backdrop-filter: blur(12px); }
.btn-light { color: #0b0f15; border-color: var(--lime); background: var(--lime); box-shadow: 0 16px 38px rgba(184, 255, 94, .16); }
.btn-block { width: 100%; }
.btn:focus-visible, .menu-toggle:focus-visible, .faq-question:focus-visible, .billing-toggle button:focus-visible, .dropdown > button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, a:focus-visible {
  outline: 3px solid rgba(36, 229, 255, .6);
  outline-offset: 3px;
}

.topbar { border-bottom: 1px solid rgba(143, 158, 172, .12); background: #05080d; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; min-height: 38px; }
.topbar a { color: var(--text); transition: color .2s; }
.topbar a:hover { color: var(--primary); }
.topbar-inner > div:last-child { display: flex; align-items: center; gap: 9px; }
.topbar-inner > div:last-child::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px rgba(184, 255, 94, .9); animation: signalPulse 2.6s ease-in-out infinite; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 82px;
  border-bottom: 1px solid rgba(143, 158, 172, .14);
  background: rgba(7, 10, 15, .84);
  backdrop-filter: blur(20px);
  transition: background .25s, box-shadow .25s;
}
.site-header.scrolled { background: rgba(7, 10, 15, .96); box-shadow: 0 18px 54px rgba(0, 0, 0, .34); }
.nav-wrap { position: relative; display: flex; align-items: center; gap: 28px; height: 100%; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; overflow: visible; border-radius: 0; background: transparent; color: var(--ink); white-space: nowrap; }
.brand img { display: block; width: 230px; height: auto; max-height: 46px; object-fit: contain; object-position: left center; border-radius: 0; }
.main-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; font-size: 13px; font-weight: 750; }
.main-nav > a, .dropdown > button { position: relative; padding: 12px 11px; border: 0; background: none; color: var(--muted); cursor: pointer; transition: color .2s; }
.main-nav > a:hover, .dropdown > button:hover, .main-nav > a.active { color: var(--ink); }
.main-nav > a.active::after { content: ""; position: absolute; left: 11px; right: 11px; bottom: 4px; height: 2px; background: linear-gradient(90deg, var(--primary), var(--primary-2)); box-shadow: 0 0 10px rgba(36, 229, 255, .6); }
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: 256px;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(13, 19, 28, .98);
  box-shadow: var(--shadow);
  transform: translate(-50%, -8px);
  transition: .22s var(--ease);
}
.dropdown-menu::before { content: ""; position: absolute; top: -6px; left: 50%; width: 11px; height: 11px; border-left: 1px solid var(--line); border-top: 1px solid var(--line); background: var(--panel); transform: translateX(-50%) rotate(45deg); }
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu { visibility: visible; opacity: 1; transform: translate(-50%, 0); }
.dropdown-menu a { display: flex; padding: 11px 12px; border-radius: 11px; color: var(--muted); font-weight: 700; transition: .18s; }
.dropdown-menu a:hover { padding-left: 16px; background: var(--panel-3); color: var(--primary); }
.nav-cta { min-height: 44px; padding: 11px 18px; }
.menu-toggle { display: none; width: 46px; height: 46px; margin-left: auto; border: 1px solid var(--line); border-radius: 14px; background: var(--panel); font-size: 0; cursor: pointer; position: relative; }
.menu-toggle::before, .menu-toggle::after, .menu-toggle span { content: ""; position: absolute; left: 12px; width: 20px; height: 2px; border-radius: 2px; background: var(--ink); transition: .25s; }
.menu-toggle::before { top: 14px; }
.menu-toggle span { top: 21px; }
.menu-toggle::after { top: 28px; }
.menu-toggle.is-open::before { top: 21px; transform: rotate(45deg); }
.menu-toggle.is-open span { opacity: 0; }
.menu-toggle.is-open::after { top: 21px; transform: rotate(-45deg); }

.hero {
  padding: 104px 0 122px;
  overflow: hidden;
  border-bottom: 1px solid rgba(143, 158, 172, .12);
  background:
    radial-gradient(circle at 79% 44%, rgba(36, 229, 255, .12), transparent 21rem),
    radial-gradient(circle at 75% 46%, rgba(122, 99, 255, .14), transparent 35rem),
    linear-gradient(135deg, #070a0f 0%, #080d16 55%, #0d1120 100%);
  color: var(--ink);
}
.hero::before, .service-hero::before, .domain-hero::before, .inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(36, 229, 255, .034) 1px, transparent 1px), linear-gradient(90deg, rgba(36, 229, 255, .034) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 70px; }
.hero h1 { max-width: 820px; margin: 0 0 27px; color: var(--ink); font-size: clamp(54px, 6vw, 96px); line-height: .95; }
.hero h1 { background: linear-gradient(100deg, #f5f9fb 5%, #f5f9fb 56%, var(--primary) 77%, #9b86ff 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { max-width: 650px; margin-bottom: 34px; color: #aebbc7; font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.domain-prices { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 38px; }
.domain-prices span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(14, 20, 29, .76); color: var(--muted); font-family: "Arial Narrow", sans-serif; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.domain-prices b { color: var(--ink); }
.hero-art { position: relative; display: flex; align-items: center; justify-content: center; min-height: 570px; padding: 58px; border: 1px solid var(--line); border-radius: 32px; background: linear-gradient(145deg, rgba(18, 26, 38, .88), rgba(8, 13, 20, .92)); box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255, 255, 255, .018); }
.hero-art::before { content: ""; position: absolute; width: 74%; aspect-ratio: 1; border: 1px solid rgba(36, 229, 255, .22); border-radius: 50%; box-shadow: 0 0 0 45px rgba(36, 229, 255, .025), 0 0 0 90px rgba(122, 99, 255, .025), 0 0 70px rgba(36, 229, 255, .08); animation: orbitTurn 18s linear infinite; }
.hero-art::after { content: "TL—01 / CLOUD COMMAND"; position: absolute; top: 23px; left: 25px; color: var(--muted); font-family: "Arial Narrow", sans-serif; font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.hero-art img { position: relative; z-index: 2; width: min(100%, 590px); filter: drop-shadow(0 34px 42px rgba(0, 0, 0, .5)); animation: float 6s ease-in-out infinite; }
.hero-chip { position: absolute; z-index: 3; min-width: 145px; padding: 14px 17px; border: 1px solid var(--line-bright); border-radius: 14px; background: rgba(7, 12, 19, .86); box-shadow: var(--shadow-sm); backdrop-filter: blur(14px); color: var(--ink); font-size: 26px; font-weight: 900; }
.hero-chip::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px rgba(184, 255, 94, .8); vertical-align: 4px; }
.hero-chip small { display: block; margin-top: 4px; color: var(--muted); font-family: "Arial Narrow", sans-serif; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.hero-chip.one { top: 78px; left: -28px; }
.hero-chip.two { right: -24px; bottom: 72px; }

.domain-search-band { position: relative; z-index: 6; margin-top: -49px; }
.domain-search-card, .domain-box { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 11px; padding: 12px; border: 1px solid var(--line-bright); border-radius: 20px; background: rgba(14, 20, 29, .94); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.domain-search-card::before { content: "DOMAIN SIGNAL"; padding-left: 15px; grid-column: 1 / -1; color: var(--primary); font-family: "Arial Narrow", sans-serif; font-size: 9px; font-weight: 800; letter-spacing: .18em; }
.domain-search-card input, .domain-box input { width: 100%; min-height: 54px; padding: 13px 17px; border: 1px solid var(--line); border-radius: 13px; outline: 0; background: #090e15; color: var(--ink); }
.domain-search-card input::placeholder, .domain-box input::placeholder { color: #617181; }
.domain-search-result { grid-column: 1 / -1; min-height: 20px; padding: 0 17px 6px; color: var(--muted); font-size: 12px; }
.domain-search-result.is-loading { color: var(--primary); }
.domain-search-result.is-success { color: var(--success); }
.domain-search-result.is-danger { color: var(--danger); }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card, .service-card, .content-card, .step, .contact-card, .support-card, .tld-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(18, 26, 38, .86), rgba(10, 15, 22, .9));
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.feature-card::after, .service-card::after, .content-card::after, .step::after, .contact-card::after, .support-card::after, .tld-card::after { content: ""; position: absolute; right: -52px; bottom: -52px; width: 108px; height: 108px; border: 1px solid rgba(36, 229, 255, .1); border-radius: 50%; box-shadow: 0 0 0 22px rgba(122, 99, 255, .02); }
.feature-card:hover, .service-card:hover, .content-card:hover, .step:hover, .contact-card:hover, .support-card:hover, .tld-card:hover { z-index: 2; transform: translateY(-7px); border-color: rgba(36, 229, 255, .35); box-shadow: var(--shadow); }
.feature-card { padding: 34px; }
.feature-card h3, .service-card h3, .content-card h3, .step h3, .contact-card h3, .support-card h3 { margin-bottom: 11px; }
.feature-icon, .big-icon { display: grid; place-items: center; width: 60px; height: 60px; margin-bottom: 25px; border: 1px solid rgba(36, 229, 255, .22); border-radius: 17px; background: linear-gradient(145deg, rgba(36, 229, 255, .1), rgba(122, 99, 255, .1)); color: var(--primary); box-shadow: inset 0 0 20px rgba(36, 229, 255, .04); font-size: 25px; }
.feature-icon img { width: 34px; height: 34px; object-fit: contain; filter: drop-shadow(0 0 8px rgba(36, 229, 255, .25)); }

.pricing-toolbar { display: flex; justify-content: center; margin: -13px 0 48px; }
.pricing-disclosure { max-width: 920px; margin: 22px auto 0; padding: 14px 17px; border: 1px solid rgba(36, 229, 255, .18); border-radius: 13px; background: rgba(36, 229, 255, .045); color: #9eafbd; font-size: 12px !important; line-height: 1.65; }
.pricing-disclosure strong { color: var(--primary); }
.service-offer .pricing-disclosure { margin: -4px 0 22px; text-align: left; }
.billing-toggle { display: inline-flex; gap: 4px; padding: 5px; border: 1px solid var(--line); border-radius: 15px; background: #090e15; }
.billing-toggle button { padding: 11px 16px; border: 0; border-radius: 10px; background: transparent; color: var(--muted); font-size: 12px; font-weight: 800; cursor: pointer; transition: .2s; }
.billing-toggle button.active { background: var(--panel-3); color: var(--primary); box-shadow: inset 0 0 0 1px rgba(36, 229, 255, .16), 0 8px 22px rgba(0, 0, 0, .25); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 31px 26px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(155deg, rgba(18, 26, 38, .94), rgba(9, 14, 21, .96)); box-shadow: var(--shadow-sm); transition: .3s var(--ease); }
.price-card::before { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; background: linear-gradient(135deg, rgba(36, 229, 255, .045), transparent 40%, rgba(122, 99, 255, .035)); }
.price-card:hover { transform: translateY(-8px); border-color: rgba(36, 229, 255, .36); box-shadow: var(--shadow); }
.price-card.popular { border-color: var(--primary); box-shadow: 0 25px 70px rgba(36, 229, 255, .11); transform: translateY(-9px); }
.price-card.popular:hover { transform: translateY(-13px); }
.popular-badge { position: absolute; top: -14px; left: 50%; z-index: 2; padding: 7px 14px; border-radius: 999px; background: var(--lime); color: #11170b; box-shadow: 0 8px 22px rgba(184, 255, 94, .2); font-family: "Arial Narrow", sans-serif; font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; white-space: nowrap; transform: translateX(-50%); }
.price-card h3 { position: relative; margin: 6px 0 7px; font-size: 24px; }
.plan-tag { position: relative; min-height: 44px; font-size: 13px; }
.price { position: relative; display: flex; align-items: flex-end; gap: 3px; margin: 14px 0 22px; color: var(--ink); }
.price .currency { align-self: flex-start; margin-top: 8px; color: var(--primary); font-weight: 900; }
.price strong { color: var(--ink); font-size: 52px; font-weight: 900; letter-spacing: -.065em; line-height: 1; }
.price > span:last-child { margin-bottom: 6px; color: var(--muted); font-size: 12px; }
.price-card ul { position: relative; display: grid; flex: 1; gap: 10px; margin: 0 0 26px; padding: 0; list-style: none; }
.price-card li { position: relative; padding-left: 23px; color: #a7b4c0; font-size: 13px; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 900; }
.price-card li::first-letter { font-size: 0; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: services; }
.service-card { min-height: 265px; padding: 33px; counter-increment: services; }
.service-card::before { content: "0" counter(services); position: absolute; top: 25px; right: 26px; color: var(--line-bright); font-family: "Arial Narrow", sans-serif; font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.learn-link { position: relative; display: inline-flex; align-items: center; gap: 8px; margin-top: 17px; color: var(--primary); font-size: 13px; font-weight: 800; transition: gap .2s, color .2s; }
.learn-link:hover { gap: 13px; color: var(--lime); }
.split, .about-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 78px; }
.illustration-panel { position: relative; display: flex; align-items: center; justify-content: center; min-height: 520px; padding: 50px; overflow: hidden; border: 1px solid var(--line); border-radius: 32px; background: radial-gradient(circle at 65% 30%, rgba(36, 229, 255, .14), transparent 28%), linear-gradient(145deg, var(--panel-2), #080d14); box-shadow: var(--shadow-lg); }
.illustration-panel::before, .illustration-panel::after { content: ""; position: absolute; width: 390px; height: 390px; border: 1px solid rgba(36, 229, 255, .14); border-radius: 50%; }
.illustration-panel::before { right: -90px; top: -105px; }
.illustration-panel::after { right: -18px; top: -33px; border-color: rgba(122, 99, 255, .14); }
.illustration-panel img { position: relative; z-index: 2; filter: drop-shadow(0 30px 36px rgba(0, 0, 0, .45)); }
.content-block p { font-size: 17px; }
.check-list { display: grid; gap: 13px; margin-top: 30px; }
.check-item { display: flex; align-items: flex-start; gap: 14px; padding: 17px 18px; border: 1px solid var(--line); border-radius: 15px; background: rgba(14, 20, 29, .8); }
.check-item > b { display: grid; place-items: center; flex: 0 0 auto; width: 28px; height: 28px; border: 1px solid rgba(113, 239, 179, .2); border-radius: 50%; background: rgba(113, 239, 179, .08); color: var(--success); }
.check-item span { color: var(--muted); font-size: 13px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 35px; overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: var(--line); }
.stat { padding: 18px; background: var(--panel); color: var(--muted); font-family: "Arial Narrow", sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.stat strong { display: block; margin-bottom: 4px; color: var(--ink); font-family: "Segoe UI Variable Display", sans-serif; font-size: 25px; letter-spacing: -.04em; }

.faq-wrap { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 80px; }
.faq-image { position: relative; padding: 34px; overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: radial-gradient(circle at 50% 45%, rgba(36, 229, 255, .1), transparent 50%), var(--panel); }
.faq-image::after { content: "SUPPORT KNOWLEDGE / ONLINE"; display: block; padding: 14px 4px 0; color: var(--muted); font-family: "Arial Narrow", sans-serif; font-size: 9px; font-weight: 800; letter-spacing: .17em; }
.faq-list { display: grid; gap: 12px; margin-top: 28px; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: rgba(14, 20, 29, .82); }
.faq-item.is-open { border-color: rgba(36, 229, 255, .28); box-shadow: inset 3px 0 var(--primary); }
.faq-question { display: flex; justify-content: space-between; gap: 20px; width: 100%; padding: 20px 21px; border: 0; background: transparent; color: var(--ink); font-weight: 800; text-align: left; cursor: pointer; }
.faq-question b { color: var(--primary); font-size: 22px; transition: .25s; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.faq-answer p { overflow: hidden; margin: 0; padding: 0 21px; color: var(--muted); }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer p { padding-bottom: 20px; }
.faq-item.is-open .faq-question b { color: var(--lime); transform: rotate(45deg); }

.cta-band { padding: 78px 0; overflow: hidden; border-block: 1px solid rgba(36, 229, 255, .2); background: radial-gradient(circle at 82% 50%, rgba(122, 99, 255, .2), transparent 25rem), linear-gradient(135deg, #0d1720, #101426 56%, #151036); color: var(--ink); }
.cta-band::before { content: ""; position: absolute; right: -120px; top: -260px; width: 520px; height: 520px; border: 1px solid rgba(36, 229, 255, .16); border-radius: 50%; box-shadow: 0 0 0 70px rgba(36, 229, 255, .025), 0 0 0 140px rgba(122, 99, 255, .022); }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-inner h2 { max-width: 920px; margin: 0; color: var(--ink); font-size: clamp(38px, 4.6vw, 64px); }
.site-footer { position: relative; overflow: hidden; padding: 82px 0 24px; background: #05080d; color: var(--muted); }
.site-footer::before { content: ""; position: absolute; right: -170px; top: -170px; width: 460px; height: 460px; border-radius: 50%; background: rgba(122, 99, 255, .09); filter: blur(100px); }
.footer-grid { position: relative; display: grid; grid-template-columns: 1.45fr repeat(3, 1fr); gap: 50px; }
.footer-grid h4 { margin: 0 0 18px; color: var(--ink); font-family: "Arial Narrow", sans-serif; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.footer-grid > div > a { display: block; margin: 10px 0; color: var(--muted); transition: .18s; }
.footer-grid > div > a:hover { color: var(--primary); transform: translateX(3px); }
.footer-grid p { color: var(--muted-2); }
.footer-brand { margin-bottom: 18px; overflow: visible; border-radius: 0; background: transparent; }
.footer-brand img { width: 240px; height: auto; max-height: 50px; object-fit: contain; object-position: left center; border-radius: 0; }
.newsletter-title { margin-top: 28px !important; }
.newsletter-form { display: grid; grid-template-columns: 1fr auto; overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: var(--panel); }
.newsletter-form input { min-width: 0; width: 100%; padding: 13px; border: 0; outline: 0; background: transparent; color: var(--ink); }
.newsletter-form button { width: 48px; border: 0; background: var(--primary); color: #041013; font-size: 20px; cursor: pointer; }
.newsletter-note { min-height: 18px; margin-top: 8px !important; font-size: 12px; }
.footer-bottom { position: relative; display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 23px; border-top: 1px solid rgba(143, 158, 172, .14); color: var(--muted-2); font-size: 12px; }

.inner-hero, .service-hero, .domain-hero { position: relative; overflow: hidden; color: var(--ink); background: radial-gradient(circle at 78% 35%, rgba(36, 229, 255, .11), transparent 23rem), radial-gradient(circle at 75% 50%, rgba(122, 99, 255, .14), transparent 40rem), linear-gradient(135deg, #070a0f, #0b111c 56%, #111126); }
.inner-hero { padding: 106px 0 112px; border-bottom: 1px solid var(--line); }
.inner-hero .container, .domain-hero .container, .service-hero-grid { position: relative; z-index: 2; }
.inner-hero .container::after { content: "TL / GLOBAL INFRASTRUCTURE"; position: absolute; right: 0; bottom: 0; color: rgba(143, 158, 172, .4); font-family: "Arial Narrow", sans-serif; font-size: 10px; font-weight: 800; letter-spacing: .18em; writing-mode: vertical-rl; }
.inner-hero h1 { max-width: 900px; margin-bottom: 16px; color: var(--ink); font-size: clamp(54px, 6vw, 90px); }
.inner-hero p { max-width: 760px; color: #aebbc7; font-size: 18px; }
.abstract-card { position: relative; display: flex; flex-direction: column; justify-content: flex-end; min-height: 520px; padding: 43px; overflow: hidden; border: 1px solid var(--line); border-radius: 32px; background: radial-gradient(circle at 72% 24%, rgba(36, 229, 255, .16), transparent 28%), linear-gradient(145deg, #101a27, #0a0d18 62%, #18143c); box-shadow: var(--shadow-lg); color: var(--ink); }
.abstract-card::before, .abstract-card::after { content: ""; position: absolute; border: 1px solid rgba(36, 229, 255, .16); border-radius: 50%; }
.abstract-card::before { right: -130px; top: -130px; width: 440px; height: 440px; }
.abstract-card::after { right: -25px; top: -25px; width: 240px; height: 240px; border-color: rgba(122, 99, 255, .18); }
.abstract-card .metric { position: relative; z-index: 2; color: var(--primary); font-size: 72px; font-weight: 900; letter-spacing: -.07em; }
.abstract-card h2, .abstract-card p { position: relative; z-index: 2; }
.abstract-card p { color: #aebbc7; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 19px; counter-reset: steps; }
.step { min-height: 240px; padding: 31px; }
.step-num { color: var(--primary); font-family: "Arial Narrow", sans-serif; font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.step h3 { margin: 36px 0 9px; }

.service-hero { padding: 106px 0; }
.service-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 68px; }
.service-hero h1 { margin: 0 0 20px; color: var(--ink); font-size: clamp(54px, 6vw, 90px); }
.service-hero p { max-width: 700px; color: #aebbc7; font-size: 18px; }
.service-offer { position: relative; overflow: hidden; padding: 36px; border: 1px solid var(--line-bright); border-radius: 28px; background: linear-gradient(145deg, rgba(18, 26, 38, .95), rgba(8, 13, 20, .96)); box-shadow: var(--shadow-lg); color: var(--ink); }
.service-offer::after { content: "LIVE PLAN / CONFIGURABLE"; position: absolute; right: 25px; top: 25px; color: var(--lime); font-family: "Arial Narrow", sans-serif; font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.service-offer h2 { font-size: 38px; }
.service-offer .price strong { font-size: 62px; }
.service-offer .check-list li { margin: 10px 0; color: #aebbc7; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.content-card { min-height: 190px; padding: 32px; }
.content-card h3 { margin-top: 0; }

.domain-hero { padding: 116px 0; text-align: center; }
.domain-hero h1 { margin: 0 0 18px; color: var(--ink); font-size: clamp(54px, 6vw, 90px); }
.domain-hero p { max-width: 760px; margin-inline: auto; color: #aebbc7; font-size: 18px; }
.domain-box { max-width: 900px; margin: 36px auto 0; }
.domain-hero .domain-search-result { max-width: 900px; margin: 14px auto 0 !important; padding: 11px 16px !important; border: 1px solid rgba(36, 229, 255, .12); border-radius: 11px; background: rgba(7, 12, 19, .72); color: var(--muted) !important; text-align: left; }
.tld-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.tld-card { padding: 29px; text-align: center; }
.tld-card strong { color: var(--primary); font-size: 34px; letter-spacing: -.05em; }
.price-table { width: 100%; overflow: hidden; border: 1px solid var(--line); border-radius: 19px; border-collapse: separate; border-spacing: 0; background: var(--panel); box-shadow: var(--shadow-sm); }
.price-table th, .price-table td { padding: 16px 18px; border-bottom: 1px solid var(--line); text-align: left; }
.price-table th { background: #090e15; color: var(--ink); font-family: "Arial Narrow", sans-serif; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.price-table td { color: var(--muted); }
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody tr { transition: background .2s; }
.price-table tbody tr:hover { background: var(--panel-3); }

.support-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 19px; }
.support-card { min-height: 210px; padding: 30px; }
.status-bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 24px; border: 1px solid rgba(113, 239, 179, .22); border-radius: 16px; background: rgba(113, 239, 179, .055); box-shadow: 0 10px 34px rgba(0, 0, 0, .18); color: var(--success); }
.status-bar strong { display: flex; align-items: center; gap: 10px; }
.status-bar strong::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 6px rgba(184, 255, 94, .08), 0 0 16px rgba(184, 255, 94, .6); }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: start; gap: 58px; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-card { min-height: 170px; padding: 24px; }
.contact-card h3 { font-size: 18px; }
.form-card { padding: 39px; border: 1px solid var(--line); border-radius: 27px; background: linear-gradient(145deg, rgba(18, 26, 38, .92), rgba(9, 14, 21, .94)); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.form-group { display: grid; gap: 8px; color: var(--text); font-size: 13px; font-weight: 750; }
.form-group.full { grid-column: 1 / -1; }
.form-group input, .form-group select, .form-group textarea { width: 100%; min-height: 52px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 13px; outline: 0; background: #090e15; color: var(--ink); transition: border-color .2s, box-shadow .2s; }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #5e6e7d; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(36, 229, 255, .08); }
.form-message { display: none; margin-top: 13px; padding: 12px 14px; border: 1px solid rgba(113, 239, 179, .24); border-radius: 11px; background: rgba(113, 239, 179, .07); color: var(--success); font-weight: 650; }
.form-message.error { border-color: rgba(255, 100, 124, .25); background: rgba(255, 100, 124, .07); color: var(--danger); }
.form-message.show { display: block; }
.legal { max-width: 940px; }
.legal h2 { margin-top: 45px; font-size: 34px; }
.legal p, .legal li { color: var(--muted); }
.legal .notice { padding: 20px; border: 1px solid var(--line); border-left: 3px solid var(--primary); border-radius: 12px; background: var(--panel); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.scroll-progress { position: fixed; left: 0; top: 0; z-index: 2000; width: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--primary-2), var(--lime)); box-shadow: 0 0 16px rgba(36, 229, 255, .6); }
.back-to-top { position: fixed; right: 22px; bottom: 22px; z-index: 900; display: grid; place-items: center; width: 48px; height: 48px; visibility: hidden; opacity: 0; border: 1px solid var(--line-bright); border-radius: 14px; background: rgba(14, 20, 29, .95); box-shadow: var(--shadow); color: var(--primary); cursor: pointer; transform: translateY(10px); transition: .25s; }
.back-to-top.show { visibility: visible; opacity: 1; transform: none; }
.toast-stack { position: fixed; right: 20px; top: 100px; z-index: 3000; display: grid; gap: 10px; width: min(390px, calc(100% - 40px)); }
.toast { padding: 16px 18px; border: 1px solid var(--line); border-left: 3px solid var(--success); border-radius: 14px; background: rgba(14, 20, 29, .98); box-shadow: var(--shadow); color: var(--text); font-size: 14px; animation: toastIn .3s var(--ease); }
.toast.error { border-left-color: var(--danger); }
.modal-backdrop { position: fixed; inset: 0; z-index: 2500; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(2, 5, 9, .78); backdrop-filter: blur(10px); }
.modal-backdrop.open { display: flex; }
.modal { position: relative; width: min(640px, 100%); max-height: min(90vh, 780px); padding: 36px; overflow: auto; border: 1px solid var(--line-bright); border-radius: 27px; background: linear-gradient(145deg, var(--panel-2), #090e15); box-shadow: var(--shadow-lg); animation: modalIn .28s var(--ease); }
.modal-close { position: absolute; right: 18px; top: 18px; display: grid; place-items: center; width: 41px; height: 41px; border: 1px solid var(--line); border-radius: 12px; background: var(--panel); color: var(--ink); font-size: 22px; cursor: pointer; }
.modal h2 { margin-bottom: 8px; padding-right: 48px; font-size: 38px; }
.modal-pricing-tagline { margin-top: 14px; padding: 10px 13px; border: 1px solid rgba(36, 229, 255, .18); border-radius: 11px; background: rgba(36, 229, 255, .045); color: var(--primary); font-size: 12px; font-weight: 800; letter-spacing: .02em; }
.order-summary { display: flex; justify-content: space-between; gap: 16px; margin: 20px 0; padding: 16px 18px; border: 1px solid var(--line); border-radius: 14px; background: #090e15; color: var(--ink); font-weight: 800; }
.loading-dot { display: inline-block; width: 14px; height: 14px; margin-right: 6px; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; animation: spin .65s linear infinite; vertical-align: -2px; }
.skip-link { position: fixed; left: 15px; top: -80px; z-index: 5000; padding: 10px 14px; border: 1px solid var(--line); border-radius: 9px; background: var(--panel); color: var(--ink); box-shadow: var(--shadow); transition: .2s; }
.skip-link:focus { top: 15px; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes orbitTurn { to { transform: rotate(360deg); } }
@keyframes signalPulse { 0%, 100% { opacity: .45; transform: scale(.88); } 50% { opacity: 1; transform: scale(1); } }
@keyframes toastIn { from { opacity: 0; transform: translateX(18px); } }
@keyframes modalIn { from { opacity: 0; transform: translateY(14px) scale(.98); } }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 1180px) {
  .container { width: min(calc(100% - 54px), var(--container)); }
  .brand img { width: 205px; height: auto; max-height: 42px; }
  .main-nav { gap: 0; font-size: 12px; }
  .main-nav > a, .dropdown > button { padding-inline: 8px; }
  .nav-cta { display: none; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .support-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  section { padding: 88px 0; }
  .topbar-inner > div:last-child { display: none; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; top: 122px; left: 26px; right: 26px; display: none; flex-direction: column; align-items: stretch; gap: 2px; max-height: calc(100vh - 148px); margin-left: 0; padding: 12px; overflow: auto; border: 1px solid var(--line-bright); border-radius: 20px; background: #0c111a; box-shadow: var(--shadow-lg); font-size: 15px; }
  .main-nav.open { display: flex; animation: modalIn .25s var(--ease); }
  .main-nav > a, .dropdown > button { width: 100%; padding: 13px 14px; text-align: left; }
  .main-nav > a.active::after { left: 14px; right: auto; bottom: 5px; width: 34px; }
  .dropdown-menu { position: static; display: none; width: auto; padding: 2px 0 7px 16px; visibility: visible; opacity: 1; border: 0; background: #090e15; box-shadow: none; transform: none; }
  .dropdown-menu::before { display: none; }
  .dropdown.open .dropdown-menu { display: block; }
  .dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu { transform: none; }
  .hero-grid, .split, .about-grid, .service-hero-grid, .faq-wrap, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 76px; }
  .hero-art { width: min(660px, 100%); min-height: 480px; margin: auto; }
  .hero-chip.one { left: 15px; }
  .hero-chip.two { right: 15px; }
  .features-grid, .benefit-grid, .services-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .tld-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 31px; }
  .price-card.popular, .price-card.popular:hover { transform: none; }
  .inner-hero .container::after { display: none; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topbar-inner { font-size: 9px; letter-spacing: .07em; }
  .site-header { height: 72px; }
  .brand img { width: 185px; height: auto; max-height: 38px; }
  .footer-brand img { width: 220px; height: auto; max-height: 46px; }
  .main-nav { top: 105px; left: 14px; right: 14px; }
  .hero { padding: 67px 0 98px; }
  .hero h1 { font-size: 48px; letter-spacing: -.055em; }
  .hero p { font-size: 16px; }
  .hero-art { min-height: 360px; padding: 34px 22px; }
  .hero-chip { display: none; }
  .domain-search-band { margin-top: -38px; }
  .features-grid, .benefit-grid, .services-grid, .steps-grid, .pricing-grid, .support-grid, .footer-grid, .form-grid, .contact-cards { grid-template-columns: 1fr !important; }
  .domain-search-card, .domain-box { grid-template-columns: 1fr; }
  .domain-search-card .btn, .domain-box .btn { width: 100%; }
  .footer-bottom { flex-direction: column; gap: 5px; }
  .illustration-panel { min-height: 355px; padding: 26px; }
  .abstract-card { min-height: 410px; }
  .price-table { font-size: 12px; }
  .price-table th, .price-table td { padding: 12px 9px; }
  .tld-grid { grid-template-columns: 1fr; }
  .modal { padding: 29px 20px; }
  .order-summary { flex-direction: column; }
  .back-to-top { right: 14px; bottom: 14px; }
  .status-bar { align-items: flex-start; flex-direction: column; }
  .cta-band { padding: 64px 0; }
  .stats { grid-template-columns: 1fr; }
  .inner-hero, .service-hero, .domain-hero { padding-block: 84px; }
  .inner-hero h1, .service-hero h1, .domain-hero h1 { font-size: 50px; }
}

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