/* ============================================================
   Rehistro.io — Main Stylesheet
   Powered by skyte.uk
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --ink:        #07080f;
  --ink2:       #0e1120;
  --ink3:       #141726;
  --sky:        #0d3d6b;
  --sky-mid:    #1560a8;
  --sky-bright: #1a7fd4;
  --sky-glow:   #3aa8f0;
  --accent:     #00d4aa;
  --accent-lit: #00f5c4;
  --accent2:    #ff6b35;
  --white:      #ffffff;
  --off-white:  #eef2f7;
  --muted:      #7a8fa6;
  --card:       #0f1520;
  --card2:      #131c2e;
  --border:     rgba(255,255,255,0.07);
  --border2:    rgba(255,255,255,0.12);
  --glow-accent: 0 0 40px rgba(0,212,170,0.25);
  --glow-sky:    0 0 40px rgba(26,127,212,0.25);
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ink);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

/* ─── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ink2); }
::-webkit-scrollbar-thumb { background: var(--sky); border-radius: 3px; }

/* ─── CURSOR DOT ─────────────────────────────────────────── */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s, opacity 0.3s;
  mix-blend-mode: exclusion;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(0,212,170,0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.15s ease-out, width 0.2s, height 0.2s, border-color 0.2s;
}

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 5%;
  transition: background var(--transition), border-color var(--transition), padding var(--transition);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7,8,15,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom-color: var(--border);
  padding: 0.8rem 5%;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  display: flex; align-items: center; gap: 2px;
}
.nav-logo .tld { color: var(--accent); }
.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-links a.active { color: var(--white); }
.nav-cta-btn {
  background: var(--accent) !important;
  color: var(--ink) !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.25rem !important;
  font-size: 0.86rem !important;
  border-radius: var(--radius-sm) !important;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}
.nav-cta-btn:hover {
  background: var(--accent-lit) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(0,212,170,0.35) !important;
}
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: white; border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── NOISE OVERLAY ──────────────────────────────────────── */
.noise {
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ─── SECTION UTILITIES ──────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 5%; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  width: 18px; height: 1.5px;
  background: var(--accent);
  border-radius: 1px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.section-title em { font-style: normal; color: var(--sky-glow); }
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 520px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }
.text-center .section-label { display: flex; justify-content: center; }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-sm);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--sky-bright), var(--accent));
  color: white;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,212,170,0.3);
  opacity: 0.92;
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border2);
  color: rgba(255,255,255,0.8);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.35);
  color: white;
  transform: translateY(-2px);
}
.btn-accent {
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
}
.btn-accent:hover {
  background: var(--accent-lit);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,212,170,0.35);
}
.btn-group { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* ─── CARDS ──────────────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: rgba(0,212,170,0.2);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.card-inset {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

/* ─── BADGE ──────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-accent {
  background: rgba(0,212,170,0.1);
  border: 1px solid rgba(0,212,170,0.28);
  color: var(--accent);
}
.badge-sky {
  background: rgba(26,127,212,0.1);
  border: 1px solid rgba(26,127,212,0.25);
  color: var(--sky-glow);
}
.badge-dot::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.45;transform:scale(1.4)} }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%,100% { transform: translateY(0px); }
  50%     { transform: translateY(-10px); }
}
@keyframes glow-pulse {
  0%,100% { box-shadow: 0 0 20px rgba(0,212,170,0.3); }
  50%     { box-shadow: 0 0 40px rgba(0,212,170,0.6); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.anim-up { animation: fadeUp 0.7s ease both; }
.anim-up-1 { animation: fadeUp 0.7s 0.1s ease both; }
.anim-up-2 { animation: fadeUp 0.7s 0.2s ease both; }
.anim-up-3 { animation: fadeUp 0.7s 0.35s ease both; }
.anim-up-4 { animation: fadeUp 0.7s 0.5s ease both; }

/* ─── GRID BACKGROUNDS ───────────────────────────────────── */
.grid-bg {
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
}
.dot-bg {
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ─── STAT PILL ──────────────────────────────────────────── */
.stat-pill {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem 2rem;
  text-align: center;
}
.stat-pill .num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
}
.stat-pill .num sup { font-size: 1rem; }
.stat-pill .label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── SPEC CARD ──────────────────────────────────────────── */
.spec-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.spec-card:hover { transform: translateY(-4px); border-color: rgba(26,127,212,0.35); }
.spec-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--sky-mid), var(--accent));
}
.spec-card .val {
  font-family: 'Syne', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.spec-card .name {
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── FEATURE CARD ───────────────────────────────────────── */
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition);
}
.feature-card:hover { border-color: rgba(0,212,170,0.25); transform: translateY(-4px); }
.feature-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,212,170,0.12), rgba(26,127,212,0.12));
  border: 1px solid rgba(0,212,170,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.3rem;
}
.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.feature-card p { color: var(--muted); font-size: 0.87rem; line-height: 1.65; }

/* ─── PRICING CARD ───────────────────────────────────────── */
.pkg-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.pkg-card.featured {
  border-color: rgba(0,212,170,0.35);
  background: linear-gradient(160deg, rgba(0,212,170,0.07) 0%, var(--card) 60%);
}
.pkg-card.featured:hover { border-color: rgba(0,212,170,0.6); box-shadow: 0 24px 60px rgba(0,212,170,0.15); }
.pkg-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--sky-bright), var(--accent));
  color: white;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.28rem 1rem; border-radius: 100px;
  white-space: nowrap;
}
.pkg-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem; font-weight: 800;
  letter-spacing: -0.02em;
}
.pkg-tagline { color: var(--muted); font-size: 0.84rem; margin-top: 0.3rem; margin-bottom: 1.5rem; }
.pkg-price-row { display: flex; align-items: flex-end; gap: 0.2rem; }
.pkg-price {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem; font-weight: 800; color: var(--white);
  line-height: 1;
}
.pkg-price .currency { font-size: 1.4rem; vertical-align: super; font-weight: 600; }
.pkg-period { color: var(--muted); font-size: 0.85rem; margin-bottom: 0.3rem; }
.pkg-divider { border: none; border-top: 1px solid var(--border); margin: 1.8rem 0; }
.pkg-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.pkg-features li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.88rem; color: rgba(255,255,255,0.78); line-height: 1.5;
}
.pkg-features li .check {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(0,212,170,0.15);
  border: 1px solid rgba(0,212,170,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
  font-size: 0.65rem; color: var(--accent); font-weight: 700;
}
.pkg-btn {
  display: block; text-align: center;
  margin-top: 2rem;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.03em;
  cursor: pointer; transition: all var(--transition);
  text-decoration: none;
  border: 1.5px solid var(--border2);
  color: white; background: transparent;
}
.pkg-card.featured .pkg-btn {
  background: linear-gradient(135deg, var(--sky-bright), var(--accent));
  border-color: transparent;
  color: white;
}
.pkg-btn:hover { opacity: 0.88; transform: scale(1.02); }

/* ─── REVIEW CARD ────────────────────────────────────────── */
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  display: flex; flex-direction: column;
}
.review-card:hover { border-color: rgba(0,212,170,0.2); transform: translateY(-4px); }
.review-card .quote-mark {
  position: absolute; top: 0.8rem; right: 1.2rem;
  font-family: Georgia, serif;
  font-size: 6rem; line-height: 1;
  color: rgba(0,212,170,0.06);
  pointer-events: none;
}
.review-stars { font-size: 0.85rem; color: #f59e0b; letter-spacing: 3px; margin-bottom: 1rem; }
.review-text {
  font-size: 0.9rem; color: rgba(255,255,255,0.72);
  line-height: 1.75; font-style: italic;
  flex: 1; margin-bottom: 1.5rem;
}
.reviewer { display: flex; align-items: center; gap: 0.9rem; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.95rem;
  flex-shrink: 0; border: 2px solid rgba(255,255,255,0.08);
}
.reviewer-name { font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 700; }
.reviewer-role { font-size: 0.76rem; color: var(--muted); margin-top: 0.15rem; }

/* ─── SERVICE BLOCK ──────────────────────────────────────── */
.service-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.8rem;
  transition: border-color var(--transition), transform var(--transition);
}
.service-block:hover { border-color: rgba(58,168,240,0.3); transform: translateY(-5px); }
.service-block .icon-xl { font-size: 2.8rem; margin-bottom: 1.4rem; }
.service-block h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem; font-weight: 800; margin-bottom: 0.9rem;
}
.service-block p { color: var(--muted); font-size: 0.9rem; line-height: 1.75; margin-bottom: 1.2rem; }
.tag-list { display: flex; gap: 0.45rem; flex-wrap: wrap; margin-top: 1.5rem; }
.tag {
  font-size: 0.73rem;
  background: rgba(58,168,240,0.09);
  border: 1px solid rgba(58,168,240,0.2);
  color: var(--sky-glow);
  padding: 0.28rem 0.75rem; border-radius: 100px;
  font-weight: 500;
}

/* ─── CONTACT ─────────────────────────────────────────────── */
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: border-color var(--transition);
}
.contact-item:hover { border-color: rgba(0,212,170,0.25); }
.contact-icon-wrap {
  width: 46px; height: 46px; border-radius: 10px;
  background: rgba(0,212,170,0.08);
  border: 1px solid rgba(0,212,170,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-detail h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.88rem; font-weight: 700; margin-bottom: 0.3rem;
}
.contact-detail a, .contact-detail span {
  font-size: 0.86rem; color: var(--muted);
  transition: color var(--transition);
}
.contact-detail a:hover { color: var(--accent); }

/* ─── FORM ────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.8rem; font-weight: 500; color: var(--muted); }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  color: white;
  font-size: 0.9rem;
  padding: 0.82rem 1rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(0,212,170,0.45);
  box-shadow: 0 0 0 3px rgba(0,212,170,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: #0e1120; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--sky-bright), var(--accent));
  border: none;
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 0.95rem;
  padding: 0.95rem 2rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
}
.form-submit:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,212,170,0.3);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--ink2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 1.4rem;
  letter-spacing: -0.03em; margin-bottom: 0.8rem;
}
.footer-brand .logo span { color: var(--accent); }
.footer-brand p { color: var(--muted); font-size: 0.84rem; line-height: 1.7; max-width: 260px; }
.footer-brand .powered {
  margin-top: 1.2rem;
  font-size: 0.78rem; color: var(--muted);
}
.footer-brand .powered a { color: var(--sky-glow); }
.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.84rem; font-weight: 700;
  margin-bottom: 1.1rem; color: rgba(255,255,255,0.8);
  letter-spacing: 0.03em;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.83rem; color: var(--muted); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 2rem; flex-wrap: wrap; gap: 0.8rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }
.footer-bottom a { color: var(--sky-glow); }

/* ─── TOAST ──────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  background: var(--accent); color: var(--ink);
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600; font-size: 0.88rem;
  box-shadow: 0 12px 36px rgba(0,212,170,0.4);
  transform: translateY(80px); opacity: 0;
  transition: all 0.4s cubic-bezier(0.34,1.4,0.64,1);
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ─── HERO (SHARED) ──────────────────────────────────────── */
.inner-hero {
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.inner-hero .hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(13,61,107,0.55) 0%, transparent 70%);
  pointer-events: none;
}
.inner-hero .grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}
.inner-hero .container { position: relative; z-index: 2; text-align: center; }

/* ─── DOMAIN SEARCH ──────────────────────────────────────── */
.domain-search {
  width: 100%; max-width: 660px; margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  display: flex; gap: 0.5rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,212,170,0.08);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.domain-search:focus-within {
  border-color: rgba(0,212,170,0.3);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,212,170,0.2);
}
.domain-search input {
  flex: 1;
  background: transparent; border: none; outline: none;
  color: white; font-size: 1rem; font-family: 'DM Sans', sans-serif;
  padding: 0.65rem 1rem;
}
.domain-search input::placeholder { color: rgba(255,255,255,0.3); }
.domain-search button {
  background: linear-gradient(135deg, var(--sky-bright), var(--accent));
  border: none; color: white;
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.88rem; letter-spacing: 0.03em;
  padding: 0.7rem 1.6rem; border-radius: 10px;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
  white-space: nowrap;
}
.domain-search button:hover { opacity: 0.9; transform: scale(1.03); }

.tld-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin-top: 1rem; }
.tld-pill {
  font-size: 0.76rem; color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 100px; padding: 0.22rem 0.7rem;
}
.tld-pill strong { color: var(--accent); font-weight: 600; }

/* ─── UPTIME BAR ─────────────────────────────────────────── */
.uptime-bar {
  display: inline-flex; align-items: center; gap: 0.9rem;
  background: rgba(0,212,170,0.07);
  border: 1px solid rgba(0,212,170,0.18);
  border-radius: var(--radius-md);
  padding: 0.65rem 1.4rem;
  font-size: 0.83rem; color: rgba(255,255,255,0.7);
}
.uptime-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  flex-shrink: 0;
  animation: blink 2s infinite;
}
.uptime-bar strong { color: var(--accent); }

/* ─── DIVIDER ────────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(7,8,15,0.97);
    backdrop-filter: blur(24px);
    padding: 1.5rem 5%;
    border-bottom: 1px solid var(--border);
    gap: 0.2rem;
  }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cursor-dot, .cursor-ring { display: none; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .domain-search { flex-direction: column; }
  .domain-search button { width: 100%; justify-content: center; padding: 0.85rem; }
}
