/* ============================================================
   gname.ge — "Aurora Dark"
   Deep midnight base · glowing indigo→fuchsia→cyan gradients ·
   glassmorphic cards · soft glows · smooth modern geometry.
   Display font: Noto Sans Georgian (cikli.ge).
   ============================================================ */

@font-face {
  font-family: "NSG";
  src: url("https://cikli.ge/fonts/noto-sans-georgian-georgian.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg:        #07060F;
  --bg-2:      #0C0A1A;
  --surface:   rgba(255,255,255,0.045);
  --surface-2: rgba(255,255,255,0.075);
  --border:    rgba(255,255,255,0.10);
  --border-2:  rgba(255,255,255,0.18);
  --text:      #F3F2FF;
  --muted:     #A7A3C8;

  --indigo:  #6D5CFF;
  --violet:  #9B5BFF;
  --fuchsia: #DD4BD8;
  --pink:    #FF5CA8;
  --cyan:    #2DE2E6;
  --blue:    #4F7BFF;

  --aurora: linear-gradient(115deg, #6D5CFF 0%, #DD4BD8 48%, #2DE2E6 100%);
  --aurora-soft: linear-gradient(115deg, rgba(109,92,255,.18), rgba(221,75,216,.16) 50%, rgba(45,226,230,.16));

  --maxw: 1140px;
  --r: 20px;

  --display: "NSG", "Noto Sans Georgian", system-ui, sans-serif;
  --body: "NSG", "Noto Sans Georgian", system-ui, -apple-system, sans-serif;
  --mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;
}

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

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}
/* fixed aurora mesh behind everything */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60% 50% at 12% 0%, rgba(109,92,255,.30), transparent 60%),
    radial-gradient(55% 45% at 92% 8%, rgba(221,75,216,.24), transparent 60%),
    radial-gradient(60% 55% at 70% 100%, rgba(45,226,230,.18), transparent 60%),
    var(--bg);
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

/* ---------- type ---------- */
h1, h2, h3 { font-family: var(--display); font-weight: 800; line-height: 1.06; color: var(--text); margin: 0 0 .5em; letter-spacing: -.025em; }
h1 { font-size: clamp(2.4rem, 1.3rem + 4.6vw, 4.6rem); }
h2 { font-size: clamp(1.8rem, 1.1rem + 2.8vw, 3rem); }
h3 { font-size: 1.22rem; font-weight: 700; }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.08rem, 1rem + .5vw, 1.32rem); color: #C9C6E6; font-weight: 400; }
.mono { font-family: var(--mono); font-weight: 600; }
.grad-text { background: var(--aurora); -webkit-background-clip: text; background-clip: text; color: transparent; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--display); font-weight: 600; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase; color: #D7D3F5;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; padding: 7px 16px; margin: 0 0 1.2rem;
  backdrop-filter: blur(10px);
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }

.cloison { height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent); border: 0; margin: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--display); font-weight: 700; font-size: 1rem;
  padding: 13px 26px; border-radius: 13px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease;
}
.btn-gold { background: var(--aurora); color: #fff; box-shadow: 0 8px 30px -8px rgba(157,91,255,.7), inset 0 1px 0 rgba(255,255,255,.25); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -8px rgba(221,75,216,.85), inset 0 1px 0 rgba(255,255,255,.3); }
.btn-ink { background: var(--surface-2); color: var(--text); border-color: var(--border-2); backdrop-filter: blur(10px); }
.btn-ink:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.35); box-shadow: 0 10px 30px -12px rgba(0,0,0,.7); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-2); }
.btn-ghost:hover { border-color: var(--cyan); box-shadow: 0 0 22px -6px var(--cyan); }
.btn-pink { background: var(--fuchsia); color: #fff; box-shadow: 0 8px 28px -10px var(--fuchsia); }
.btn-lime { background: var(--cyan); color: #07221F; box-shadow: 0 8px 28px -10px var(--cyan); }

.menu-toggle { display: none; background: var(--surface-2); border: 1px solid var(--border-2); color: var(--text); border-radius: 12px; padding: 8px 12px; cursor: pointer; font-size: 1.1rem; backdrop-filter: blur(10px); }

/* ---------- header ---------- */
.site-head { position: sticky; top: 0; z-index: 50; background: rgba(7,6,15,0.72); border-bottom: 1px solid var(--border); backdrop-filter: blur(16px) saturate(140%); }
.site-head .wrap { display: flex; align-items: center; gap: 24px; min-height: 72px; }
.brand { display: inline-flex; align-items: baseline; gap: 0; font-family: var(--display); font-weight: 800; font-size: 1.5rem; color: #fff; text-decoration: none; letter-spacing: -.03em; }
.brand .dot { background: var(--aurora); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand .tld { font-family: var(--mono); font-size: .82em; font-weight: 700; background: var(--aurora); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav { display: flex; gap: 2px; margin-left: auto; align-items: center; }
.nav a { text-decoration: none; color: #C7C3E6; padding: 9px 14px; border-radius: 10px; font-weight: 500; font-size: .97rem; transition: color .15s, background .15s; }
.nav a:hover { color: #fff; background: var(--surface); }
.nav a[aria-current="page"] { color: #fff; background: var(--surface-2); border: 1px solid var(--border); }
.nav .btn { margin-left: 8px; padding: 10px 20px; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero .blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .65; z-index: 0; border: 0; }
.hero .b1 { width: 420px; height: 420px; background: radial-gradient(circle, var(--indigo), transparent 70%); right: -80px; top: -60px; animation: drift1 16s ease-in-out infinite; }
.hero .b2 { width: 360px; height: 360px; background: radial-gradient(circle, var(--fuchsia), transparent 70%); left: -100px; bottom: -120px; animation: drift2 20s ease-in-out infinite; }
.hero .b3 { width: 300px; height: 300px; background: radial-gradient(circle, var(--cyan), transparent 70%); right: 28%; bottom: -40px; animation: drift1 24s ease-in-out infinite reverse; }
.hero .wrap { position: relative; z-index: 1; padding-block: clamp(60px, 8vw, 120px); max-width: 900px; }
.hero h1 { color: #fff; }
.hero h1 .ge { background: var(--aurora); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { color: #CFCBEC; max-width: 56ch; }

@keyframes drift1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-24px, 26px); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px, -20px); } }

/* search bar — glass + glow */
.search { margin-top: 32px; max-width: 640px; position: relative; z-index: 1; }
.search-bar { display: flex; align-items: stretch; gap: 8px; padding: 9px; border-radius: 18px; background: var(--surface-2); border: 1px solid var(--border-2); backdrop-filter: blur(16px); box-shadow: 0 24px 70px -28px rgba(109,92,255,.6); }
.search-field { display: flex; align-items: center; flex: 1; padding-inline: 16px; min-width: 0; }
.search-field input { flex: 1; min-width: 0; border: 0; outline: 0; font-family: var(--mono); font-weight: 600; font-size: 1.1rem; color: #fff; background: transparent; padding: 11px 0; }
.search-field input::placeholder { color: #8E89B5; }
.search-field .suffix { font-family: var(--mono); font-weight: 700; font-size: 1.1rem; background: var(--aurora); -webkit-background-clip: text; background-clip: text; color: transparent; }
.search .btn-gold { border-radius: 13px; padding-inline: 26px; }
.search-note { margin-top: 16px; font-size: .9rem; color: var(--muted); font-family: var(--mono); }
.search-note span { color: #fff; background: var(--surface-2); border: 1px solid var(--border); padding: 1px 8px; border-radius: 7px; }
.search-result { margin-top: 16px; font-weight: 500; min-height: 1.2em; color: #fff; }
.search-result strong { font-family: var(--mono); }
.search-result .free { color: var(--cyan); }
.search-result .taken { color: var(--pink); }

/* ---------- sections ---------- */
section { padding-block: clamp(56px, 6.5vw, 96px); position: relative; }
.section-light { background: transparent; }
.section-paper { background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-ink { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-cyan { background: var(--bg-2); }
.section-head { max-width: 62ch; margin-bottom: 40px; }

/* glass card base */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.feature {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r);
  padding: 28px; backdrop-filter: blur(12px);
  transition: transform .2s, border-color .2s, box-shadow .3s;
}
.feature:hover { transform: translateY(-4px); border-color: var(--border-2); }
.feature:nth-child(1):hover { box-shadow: 0 20px 50px -24px var(--indigo); }
.feature:nth-child(2):hover { box-shadow: 0 20px 50px -24px var(--fuchsia); }
.feature:nth-child(3):hover { box-shadow: 0 20px 50px -24px var(--cyan); }
.feature:nth-child(4):hover { box-shadow: 0 20px 50px -24px var(--blue); }
.feature .ic { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; margin-bottom: 18px; font-size: 1.5rem; border: 1px solid var(--border); }
.feature:nth-child(1) .ic { background: rgba(109,92,255,.18); box-shadow: 0 0 24px -6px var(--indigo); }
.feature:nth-child(2) .ic { background: rgba(221,75,216,.16); box-shadow: 0 0 24px -6px var(--fuchsia); }
.feature:nth-child(3) .ic { background: rgba(45,226,230,.16); box-shadow: 0 0 24px -6px var(--cyan); }
.feature:nth-child(4) .ic { background: rgba(79,123,255,.16); box-shadow: 0 0 24px -6px var(--blue); }
.feature h3 { margin-bottom: 7px; }
.feature p { margin: 0; color: var(--muted); font-size: .98rem; }

/* extension cards — glass with colored glow + gradient edge */
.ext-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ext {
  position: relative; overflow: hidden; border: 1px solid var(--border); border-radius: var(--r);
  padding: 24px 22px; text-decoration: none; color: var(--text); display: flex; flex-direction: column; gap: 8px;
  background: var(--surface); backdrop-filter: blur(12px);
  transition: transform .2s, border-color .2s, box-shadow .3s;
}
.ext::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: var(--aurora); opacity: .9; }
.ext:hover { transform: translateY(-4px); border-color: var(--border-2); box-shadow: 0 22px 56px -26px var(--indigo); }
.ext.c-emerald:hover { box-shadow: 0 22px 56px -26px var(--cyan); }
.ext.c-ruby:hover { box-shadow: 0 22px 56px -26px var(--fuchsia); }
.ext.c-turq:hover { box-shadow: 0 22px 56px -26px var(--blue); }
.ext .edge { display: none; }
.ext .tag { font-family: var(--mono); font-size: 1.4rem; font-weight: 700; color: #fff; }
.ext .tag .d { background: var(--aurora); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ext .who { font-size: .9rem; color: var(--muted); }
.ext .price { margin-top: auto; font-family: var(--mono); font-weight: 700; padding-top: 12px; font-size: 1.05rem; color: var(--cyan); }
.ext .price small { font-weight: 400; color: var(--muted); }

/* tables */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r); background: var(--surface); backdrop-filter: blur(12px); }
table { width: 100%; border-collapse: collapse; min-width: 580px; }
th, td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--border); font-size: .98rem; vertical-align: middle; }
th { font-family: var(--display); font-weight: 600; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: var(--surface-2); }
tr:last-child td { border-bottom: 0; }
tbody tr { transition: background .15s; }
tbody tr:hover { background: rgba(255,255,255,.03); }
td { color: var(--muted); }
td .x { font-family: var(--mono); font-weight: 700; color: #fff; }
td .x .d { background: var(--aurora); -webkit-background-clip: text; background-clip: text; color: transparent; }
td .p { font-family: var(--mono); font-weight: 700; color: var(--cyan); white-space: nowrap; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: s; }
.step { position: relative; padding: 32px 22px 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); backdrop-filter: blur(12px); }
.step::before { counter-increment: s; content: counter(s); position: absolute; top: -20px; left: 22px; width: 44px; height: 44px; display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 1.15rem; color: #fff; background: var(--aurora); border-radius: 14px; box-shadow: 0 8px 24px -8px var(--fuchsia); }
.step h3 { margin: 8px 0 6px; font-size: 1.08rem; color: #fff; }
.step p { margin: 0; color: var(--muted); font-size: .95rem; }

/* faq */
.faq { max-width: 820px; }
.faq details { border: 1px solid var(--border); border-radius: 16px; margin-bottom: 14px; background: var(--surface); backdrop-filter: blur(12px); overflow: hidden; transition: border-color .2s, box-shadow .3s; }
.faq details[open] { border-color: var(--border-2); box-shadow: 0 18px 50px -28px var(--indigo); }
.faq summary { cursor: pointer; list-style: none; padding: 20px 22px; font-family: var(--display); font-weight: 700; font-size: 1.06rem; color: #fff; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { flex: none; width: 30px; height: 30px; border-radius: 10px; border: 1px solid var(--border-2); display: grid; place-items: center; color: var(--cyan); font-weight: 700; transition: transform .25s, background .25s, color .25s; }
.faq details[open] summary .chev { transform: rotate(45deg); background: var(--aurora); color: #fff; border-color: transparent; }
.faq .a { padding: 0 22px 22px; color: var(--muted); max-width: 72ch; }
.faq .a p:last-child { margin-bottom: 0; }

/* prose */
.prose { max-width: 72ch; }
.prose p, .prose li { color: #CDC9E8; }
.prose h2 { margin-top: 1.5em; }
.prose h3 { margin-top: 1.3em; color: #fff; }
.prose ul { padding-left: 1.1em; }
.prose li { margin-bottom: .5em; }
.prose strong { color: #fff; font-weight: 700; }
.prose a { color: var(--cyan); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(45,226,230,.4); transition: color .15s, border-color .15s, text-shadow .15s; }
.prose a:hover { color: #fff; border-color: #fff; text-shadow: 0 0 14px rgba(45,226,230,.8); }

/* breadcrumb */
.crumbs { font-family: var(--mono); font-size: .85rem; color: var(--muted); padding-top: 26px; }
.crumbs a { color: var(--cyan); text-decoration: none; }
.crumbs a:hover { text-shadow: 0 0 12px rgba(45,226,230,.7); }
.crumbs span { margin-inline: 8px; opacity: .5; }

/* cta band */
.cta-band { position: relative; overflow: hidden; border: 1px solid var(--border-2); border-radius: 26px; padding: clamp(38px, 5vw, 66px); text-align: center; background: var(--surface-2); backdrop-filter: blur(16px); box-shadow: 0 30px 90px -40px var(--fuchsia); }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: 0; background: var(--aurora-soft); opacity: .9; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band h2 .grad-text { display: inline; }
.cta-band p { color: #D7D3F0; max-width: 52ch; margin-inline: auto; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 26px; align-items: start; }
.info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 26px; backdrop-filter: blur(12px); }
.info-card .row { display: flex; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--border); }
.info-card .row:last-child { border-bottom: 0; }
.info-card .row .k { font-family: var(--display); font-weight: 600; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--cyan); width: 104px; flex: none; padding-top: 2px; }
.info-card .row .v { color: #E9E7F8; }
.info-card a { color: var(--cyan); }
.info-card input, .info-card textarea { background: rgba(0,0,0,.25) !important; border: 1px solid var(--border-2) !important; border-radius: 12px !important; font-family: var(--body) !important; color: #fff !important; }
.info-card input::placeholder, .info-card textarea::placeholder { color: #8E89B5; }
.info-card input:focus, .info-card textarea:focus { outline: none; border-color: var(--cyan) !important; box-shadow: 0 0 0 3px rgba(45,226,230,.15); }

/* footer */
.site-foot { background: var(--bg-2); color: var(--muted); padding-block: 58px 30px; border-top: 1px solid var(--border); }
.foot-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 30px; }
.site-foot a { color: var(--muted); text-decoration: none; font-weight: 400; transition: color .15s; }
.site-foot a:hover { color: var(--cyan); }
.foot-col h4 { font-family: var(--display); font-weight: 600; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin: 0 0 16px; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.site-foot .brand { color: #fff; margin-bottom: 14px; }
.foot-about { font-size: .95rem; color: var(--muted); max-width: 34ch; }
.foot-bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .86rem; color: #7E7AA0; }

/* utility */
.center { text-align: center; }
.mt-s { margin-top: 12px; } .mt-m { margin-top: 28px; } .mt-l { margin-top: 44px; }
.pill { display: inline-block; font-family: var(--mono); font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--cyan); background: var(--surface-2); border: 1px solid var(--border); padding: 5px 12px; border-radius: 999px; }

/* responsive */
@media (max-width: 940px) {
  .grid-3, .grid-4, .ext-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav { position: fixed; inset: 73px 0 auto 0; flex-direction: column; background: rgba(7,6,15,.96); padding: 16px 22px 24px; gap: 2px; border-bottom: 1px solid var(--border); backdrop-filter: blur(16px); display: none; }
  .nav.open { display: flex; }
  .nav a { padding: 13px 10px; }
  .nav .btn { margin: 10px 0 0; justify-content: center; }
  .menu-toggle { display: inline-block; margin-left: auto; }
  .search-bar { flex-direction: column; gap: 9px; }
  .search .btn-gold { justify-content: center; }
  .hero .blob { filter: blur(50px); }
}
@media (max-width: 540px) {
  .grid-3, .grid-4, .ext-grid, .steps, .grid-2 { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, .hero .blob { animation: none !important; transition: none !important; scroll-behavior: auto; }
}
.reveal { opacity: 0; transform: translateY(16px); animation: rise .7s cubic-bezier(.2,.7,.2,1) forwards; }
.reveal.d1 { animation-delay: .08s; } .reveal.d2 { animation-delay: .16s; } .reveal.d3 { animation-delay: .24s; }
@keyframes rise { to { opacity: 1; transform: none; } }

:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 6px; }
