/* gyeko.com — domain registrar
   Modern SaaS look: soft gradient backdrop, glass search card,
   large rounded search box as the clear focal point. */

:root {
  --bg-top: #EEF2FF;
  --bg-bottom: #FDF4FF;
  --ink: #14152B;
  --muted: #6B7089;
  --card: #FFFFFF;
  --border: rgba(20, 21, 43, 0.08);
  --violet: #6D5EF6;
  --violet-deep: #5646E8;
  --pink: #F65EA9;
  --cyan: #34C6E8;
  --success: #16B981;

  --font-display: "Sora", "Inter", -apple-system, sans-serif;
  --font-body: "Inter", -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 55%, #ffffff 100%);
}

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Header ---------- */

header.site {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 2px;
}

.logo .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  margin-left: 4px;
}

nav.primary {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14.5px;
  font-weight: 500;
}

nav.primary a {
  text-decoration: none;
  color: var(--muted);
  transition: color 0.15s ease;
}

nav.primary a:hover,
nav.primary a:focus-visible { color: var(--ink); }

.nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13.5px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 84px 0 60px;
  overflow: hidden;
  text-align: center;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  z-index: 0;
  animation: float 14s ease-in-out infinite;
}

.blob-a {
  width: 420px; height: 420px;
  top: -160px; left: -120px;
  background: radial-gradient(circle, var(--violet), transparent 70%);
}

.blob-b {
  width: 380px; height: 380px;
  top: -80px; right: -140px;
  background: radial-gradient(circle, var(--pink), transparent 70%);
  animation-delay: -6s;
}

.blob-c {
  width: 320px; height: 320px;
  top: 220px; left: 40%;
  background: radial-gradient(circle, var(--cyan), transparent 70%);
  opacity: 0.35;
  animation-delay: -3s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, 30px) scale(1.06); }
}

.hero-content { position: relative; z-index: 1; }

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 26px;
}

.eyebrow-pill .sparkle { color: var(--violet); }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5.6vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 auto 18px;
  max-width: 18ch;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--violet) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 46ch;
  margin: 0 auto 44px;
}

/* ---------- Search card (the focal point) ---------- */

.search-card {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  background: var(--card);
  border-radius: 28px;
  padding: 10px;
  box-shadow:
    0 1px 2px rgba(20,21,43,0.04),
    0 24px 48px -16px rgba(76, 62, 210, 0.28);
  border: 1px solid rgba(255,255,255,0.6);
}

.search-card-inner {
  background: linear-gradient(180deg, #FFFFFF 0%, #FBFAFF 100%);
  border-radius: 20px;
  padding: 30px 26px 22px;
}

/* Style the widget's own input to feel native to the card.
   The widget renders its own markup inside #tld-search, so we
   target generously and let its real classes cascade on top. */
#tld-search {
  min-height: 60px;
}

#tld-search input[type="text"],
#tld-search input:not([type]) {
  border-radius: 14px !important;
  border: 1.5px solid var(--border) !important;
  padding: 16px 20px !important;
  font-size: 16px !important;
  font-family: var(--font-body) !important;
  width: 100% !important;
  transition: border-color 0.15s ease, box-shadow 0.15s ease !important;
}

#tld-search input[type="text"]:focus,
#tld-search input:not([type]):focus {
  outline: none !important;
  border-color: var(--violet) !important;
  box-shadow: 0 0 0 4px rgba(109, 94, 246, 0.14) !important;
}

#tld-search button,
#tld-search input[type="submit"],
#tld-search input[type="button"] {
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-deep) 100%) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 14px !important;
  padding: 15px 26px !important;
  font-weight: 600 !important;
  font-family: var(--font-body) !important;
  cursor: pointer !important;
  transition: transform 0.12s ease, box-shadow 0.12s ease !important;
  box-shadow: 0 10px 24px -8px rgba(86, 70, 232, 0.55) !important;
}

#tld-search button:hover,
#tld-search input[type="submit"]:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 14px 28px -8px rgba(86, 70, 232, 0.6) !important;
}

.tld-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.tld-chip {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--violet-deep);
  background: rgba(109, 94, 246, 0.08);
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(109, 94, 246, 0.14);
}

.trust-row {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 40px;
  font-size: 13.5px;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.trust-row span { display: flex; align-items: center; gap: 8px; }
.trust-row .check { color: var(--success); font-weight: 700; }

/* ---------- Steps ---------- */

.steps { padding: 100px 0 90px; }

.section-head {
  max-width: 60ch;
  margin: 0 auto 56px;
  text-align: center;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--violet-deep);
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 38px);
  margin: 10px 0 0;
  letter-spacing: -0.015em;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 26px 32px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -20px rgba(20,21,43,0.18);
}

.step .num {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  margin-bottom: 18px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 19px;
  margin: 0 0 10px;
}

.step p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

/* ---------- About ---------- */

.about-block { padding: 20px 0 100px; }

.about-card {
  background: linear-gradient(135deg, #14152B 0%, #2A215E 100%);
  border-radius: 28px;
  padding: 48px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: center;
}

.about-card h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.about-card p {
  color: rgba(255,255,255,0.72);
  margin: 0;
  font-size: 15.5px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-stats .stat-label {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}

.about-stats .stat-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}

/* ---------- Footer ---------- */

footer.site {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13.5px;
  color: var(--muted);
}

.footer-inner a { text-decoration: none; color: var(--muted); }
.footer-inner a:hover { color: var(--ink); }

@media (max-width: 760px) {
  nav.primary a:not(.nav-cta) { display: none; }
  .step-grid { grid-template-columns: 1fr; }
  .about-card { grid-template-columns: 1fr; padding: 32px 24px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero { padding: 56px 0 40px; }
  .search-card-inner { padding: 22px 16px 18px; }
}
