/* Homepage-only styles (navbar + hero) */

:root{
  --home-bg: #070A12;
  --home-surface: rgba(10, 14, 26, 0.72);
  --home-surface-strong: rgba(10, 14, 26, 0.92);
  --home-border: rgba(255, 255, 255, 0.10);
  --home-text: rgba(255, 255, 255, 0.92);
  --home-muted: rgba(255, 255, 255, 0.70);
  --home-primary: #2F6BFF;
  --home-accent: #00D4FF;
  --home-accent-2: #7AA7FF;
  --home-shadow: 0 18px 50px rgba(0, 0, 0, 0.40);
}

/* Keep things predictable regardless of global styles */
*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  background: var(--home-bg);
  color: var(--home-text);
}

/* ---- Navbar ---- */
.navbar{
  position: sticky;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 12px 0;
  background: linear-gradient(
    180deg,
    rgba(7, 10, 18, 0.82) 0%,
    rgba(7, 10, 18, 0.40) 70%,
    rgba(7, 10, 18, 0.00) 100%
  );
  transition: background 300ms ease, border-color 300ms ease, backdrop-filter 300ms ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled{
  background: rgba(7, 10, 18, 0.92);
  border-bottom-color: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-container{
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.nav-logo a{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--home-text);
  font-weight: 800;
  letter-spacing: 0.3px;
  line-height: 1;
}

.nav-logo img{
  max-width: 200px;
  height: auto;
  display: block;
}

.nav-menu-desktop{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border-radius: 999px;
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.28);
}

.nav-link{
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--home-muted);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.nav-link:hover{
  color: var(--home-text);
  background: rgba(255,255,255,0.06);
}

.nav-link:focus-visible,
.navbar .btn:focus-visible,
.nav-toggle:focus-visible{
  outline: 2px solid rgba(47, 107, 255, 0.78);
  outline-offset: 2px;
}

.nav-link:active{ transform: translateY(1px); }

/* ---- Dropdown ---- */
.nav-dropdown{
  position: relative;
}

.nav-dropdown-toggle{
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  font-family: inherit;
}

.nav-dropdown-icon{
  font-size: 11px;
  transition: transform 200ms ease;
}

.nav-dropdown.open .nav-dropdown-icon{
  transform: rotate(180deg);
}

.nav-dropdown-menu{
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  background: rgba(10, 14, 26, 0.96);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 6px;
  list-style: none;
  margin: 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
  z-index: 200;
}

.nav-dropdown.open .nav-dropdown-menu{
  display: block;
}

.nav-dropdown-menu li a{
  display: block;
  padding: 9px 14px;
  border-radius: 9px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 150ms, color 150ms;
}

.nav-dropdown-menu li a:hover{
  background: rgba(47,107,255,0.12);
  color: #fff;
}

.nav-actions{
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Buttons */
.navbar .btn{
  appearance: none;
  /* border: 1px solid transparent; */
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
  white-space: nowrap;
}

.navbar .btn-outline{
  color: var(--home-text);
  border-color: var(--home-border);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar .btn-outline:hover{
  background: rgba(255,255,255,0.09);
  box-shadow: 0 12px 34px rgba(0,0,0,0.32);
  transform: translateY(-1px);
}

.navbar .btn-primary{
  color: #0B1020;
  background: linear-gradient(135deg, var(--home-primary), var(--home-accent));
  box-shadow: 0 14px 36px rgba(47, 107, 255, 0.25);
}

.navbar .btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(47, 107, 255, 0.32);
}

/* Hamburger */
.nav-toggle{
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--home-border);
  background: var(--home-surface);
  color: var(--home-text);
  cursor: pointer;
  padding: 0;
  place-items: center;
  font-size: 1.1rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  flex-shrink: 0;
}

/* ---- Tablet / Mobile — sidebar drawer ---- */
@media (max-width: 980px){
  .navbar{
    position: sticky;
    top: 0;
    background: rgba(7, 10, 18, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 10px 0;
  }

  .nav-container{
    grid-template-columns: 1fr auto;
    grid-template-areas: "logo toggle";
    padding: 0 16px;
    gap: 12px;
  }

  .nav-logo{ grid-area: logo; }
  .nav-toggle{ grid-area: toggle; display: grid; justify-self: end; }
  .nav-actions{ display: none; }
  .nav-menu-desktop{ display: none; }

  /* Overlay */
  .nav-overlay{
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1099;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .nav-overlay.open{ display: block; animation: overlayIn 220ms ease forwards; }

  @keyframes overlayIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  /* Sidebar */
  .nav-sidebar{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 82vw);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    background: rgba(7, 10, 18, 0.98);
    border-left: 1px solid rgba(255,255,255,0.09);
    box-shadow: -24px 0 64px rgba(0,0,0,0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform 300ms cubic-bezier(0.32, 0.72, 0, 1);
    overflow-y: auto;
  }

  .nav-sidebar.open{
    transform: translateX(0);
  }

  .nav-sidebar-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
  }

  .nav-sidebar-brand{
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
  }

  .nav-sidebar-close{
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.7);
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 160ms ease, color 160ms ease;
  }

  .nav-sidebar-close:hover{
    background: rgba(255,255,255,0.12);
    color: #fff;
  }

  .nav-sidebar-links{
    display: flex;
    flex-direction: column;
    padding: 12px;
    flex: 1;
    gap: 2px;
  }

  .nav-sidebar-links .nav-link{
    justify-content: flex-start;
    padding: 13px 14px;
    border-radius: 12px;
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    border: 1px solid transparent;
  }

  .nav-sidebar-links .nav-link:hover{
    background: rgba(47,107,255,0.10);
    border-color: rgba(47,107,255,0.2);
    color: #fff;
  }

  /* Mobile sidebar dropdown */
  .nav-sidebar-dropdown{
    width: 100%;
  }

  .nav-sidebar-dropdown-toggle{
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    justify-content: space-between;
    font-family: inherit;
  }

  .nav-sidebar-dropdown-menu{
    display: none;
    list-style: none;
    margin: 0;
    padding: 4px 0 4px 12px;
  }

  .nav-sidebar-dropdown.open .nav-sidebar-dropdown-menu{
    display: block;
  }

  .nav-sidebar-dropdown.open .nav-dropdown-icon{
    transform: rotate(180deg);
  }

  .nav-sidebar-dropdown-menu li a{
    display: block;
    padding: 10px 14px;
    border-radius: 9px;
    color: rgba(255,255,255,0.70);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 150ms, color 150ms;
  }

  .nav-sidebar-dropdown-menu li a:hover{
    background: rgba(47,107,255,0.10);
    color: #fff;
  }

  .nav-sidebar-actions{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 16px 32px;
    border-top: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
  }

  .nav-sidebar-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 13px 16px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease;
  }

  .nav-sidebar-btn.btn-outline{
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
  }

  .nav-sidebar-btn.btn-primary{
    color: #0B1020;
    background: linear-gradient(135deg, #2f6bff, #00d4ff);
    border: none;
    box-shadow: 0 8px 24px rgba(47,107,255,0.3);
  }

  .nav-sidebar-btn:hover{ transform: translateY(-1px); }
}

/* Desktop — hide mobile-only elements */
@media (min-width: 981px){
  .nav-sidebar,
  .nav-overlay{ display: none !important; }
}

@media (max-width: 560px){
  .nav-logo img{ max-width: 150px; }
}

/* ---- Hero helper (so navbar doesn't overlap content if you add text later) ---- */
.hero{
  /* min-height: 100vh; */
  position: relative;
}

.hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 18% 18%, rgba(47, 107, 255, 0.22), transparent 60%),
    radial-gradient(900px 500px at 82% 12%, rgba(0, 212, 255, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(7,10,18,0.50) 0%, rgba(7,10,18,0.10) 45%, rgba(7,10,18,0.65) 100%);
  pointer-events: none;
}



/* ---------------- Page sections (below hero) ---------------- */
.home{
  position: relative;
  z-index: 1;
}

.home-container{
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
}

.home-section{
  padding: 86px 0;
  position: relative;
}

.home-section-alt{
  background:
    radial-gradient(800px 420px at 15% 0%, rgba(47, 107, 255, 0.16), transparent 55%),
    radial-gradient(700px 380px at 85% 20%, rgba(0, 212, 255, 0.10), transparent 55%),
    rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.home-section-header{
  text-align: center;
  max-width: 860px;
  margin: 0 auto 38px;
}

.home-eyebrow{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.78);
  font-weight: 700;
  letter-spacing: 0.18px;
  margin: 0 0 14px;
}

.home-h2{
  margin: 0 0 10px;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.3px;
}

.home-subtitle{
  margin: 0 auto;
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.6;
}

.home-h3{
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.1px;
}

.home-p{
  margin: 0;
  color: rgba(255,255,255,0.70);
  line-height: 1.6;
  font-size: 14px;
}

.home-grid{
  display: grid;
  gap: 16px;
}

.features-grid{
  grid-template-columns: repeat(12, 1fr);
}

.features-grid .home-card{
  grid-column: span 4;
}

.home-card{
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.home-card::before{
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(520px 260px at 18% 0%, rgba(47, 107, 255, 0.20), transparent 55%),
    radial-gradient(440px 240px at 88% 18%, rgba(0, 212, 255, 0.14), transparent 60%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.home-card:hover::before{
  opacity: 1;
}

.home-card-icon{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.28);
  margin-bottom: 12px;
  color: rgba(255,255,255,0.92);
}

/* How it works — tabbed interactive layout */
.hiw-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  row-gap: 12px;
}

.hiw-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 180ms ease;
}

.hiw-tab:hover {
  background: rgba(47,107,255,0.12);
  border-color: rgba(47,107,255,0.35);
  color: rgba(255,255,255,0.85);
}

.hiw-tab.active {
  background: linear-gradient(135deg, rgba(47,107,255,0.28), rgba(0,212,255,0.14));
  border-color: rgba(47,107,255,0.55);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(47,107,255,0.22);
}

.hiw-tab-num {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  opacity: 0.7;
  font-variant-numeric: tabular-nums;
}

.hiw-tab.active .hiw-tab-num { opacity: 1; }

.hiw-tab-connector {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(47,107,255,0.3), rgba(0,212,255,0.2));
  flex-shrink: 0;
}

/* Panels */
.hiw-panels { position: relative; }

.hiw-panel {
  display: none;
  animation: hiwFadeIn 380ms ease forwards;
}

.hiw-panel.active { display: block; }

@keyframes hiwFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hiw-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 40px;
}

.hiw-panel-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(47,107,255,0.25), rgba(0,212,255,0.12));
  border: 1px solid rgba(47,107,255,0.35);
  color: rgba(0,212,255,0.9);
  margin-bottom: 14px;
}

.hiw-panel-title { margin-bottom: 12px; }

.hiw-checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hiw-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

.hiw-checklist li i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(47,107,255,0.35), rgba(0,212,255,0.2));
  border: 1px solid rgba(47,107,255,0.4);
  display: grid;
  place-items: center;
  font-size: 0.6rem;
  color: #00d4ff;
  flex-shrink: 0;
}

.hiw-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Mock visuals */
.hiw-panel-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hiw-mock {
  width: 100%;
  max-width: 320px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(10,14,26,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(47,107,255,0.08);
}

/* Step 1 — Create mock */
.hiw-mock-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
}
.hiw-mock-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.hiw-mock-bar span:nth-child(1) { background: rgba(255,95,87,0.6); }
.hiw-mock-bar span:nth-child(2) { background: rgba(255,189,46,0.6); }
.hiw-mock-bar span:nth-child(3) { background: rgba(40,200,64,0.6); }

.hiw-mock-avatar-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.hiw-mock-avatar {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(47,107,255,0.5), rgba(0,212,255,0.3));
  border: 1px solid rgba(47,107,255,0.3);
  flex-shrink: 0;
}

.hiw-mock-name-block { flex: 1; display: flex; flex-direction: column; gap: 8px; }

.hiw-mock-line {
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
}
.hiw-mock-line.w80 { width: 80%; }
.hiw-mock-line.w70 { width: 70%; }
.hiw-mock-line.w60 { width: 60%; }
.hiw-mock-line.w50 { width: 50%; }
.hiw-mock-line.w90 { width: 90%; }
.hiw-mock-line.dim { background: rgba(255,255,255,0.07); }

.hiw-mock-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.hiw-mock-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}

.hiw-mock-field i {
  font-size: 0.75rem;
  color: rgba(0,212,255,0.7);
  width: 14px;
  text-align: center;
}

.hiw-mock-socials {
  display: flex;
  gap: 8px;
}

.hiw-mock-social-dot {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(47,107,255,0.2), rgba(0,212,255,0.1));
  border: 1px solid rgba(47,107,255,0.25);
}

/* Step 2 — Publish mock */
.hiw-mock-qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.hiw-mock-qr-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  padding: 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
}

.hiw-qr-cell {
  width: 18px; height: 18px;
  border-radius: 3px;
  background: rgba(255,255,255,0.06);
}

.hiw-qr-cell.on {
  background: linear-gradient(135deg, #2f6bff, #00d4ff);
}

.hiw-mock-qr-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.4px;
}

.hiw-mock-link-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 12px;
  font-size: 0.78rem;
}

.hiw-mock-link-row i { color: rgba(0,212,255,0.7); font-size: 0.72rem; }

.hiw-mock-copy-btn {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(47,107,255,0.25);
  border: 1px solid rgba(47,107,255,0.4);
  color: #7eb3ff;
  cursor: default;
}

.hiw-mock-publish-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(47,107,255,0.5), rgba(0,212,255,0.3));
  border: 1px solid rgba(47,107,255,0.4);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

/* Step 3 — Share mock */
.hiw-mock-stat-row {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.hiw-mock-stat {
  flex: 1;
  padding: 12px 8px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.hiw-mock-stat-val {
  font-size: 1.3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #2f6bff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hiw-mock-stat-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

.hiw-mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
  padding: 10px 10px 0;
  margin-bottom: 14px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
}

.hiw-bar {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, rgba(47,107,255,0.7), rgba(0,212,255,0.35));
  transition: height 600ms ease;
}

.hiw-mock-share-row {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.hiw-share-chip {
  width: 38px; height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: background 180ms ease, border-color 180ms ease;
}

.hiw-share-chip:hover {
  background: rgba(47,107,255,0.2);
  border-color: rgba(47,107,255,0.4);
}



.home-card-preview{
  padding: 16px;
}

.preview-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.preview-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}

.preview-dots span{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
  margin-left: 6px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
}

.preview-body{
  display: grid;
  gap: 14px;
}

.preview-avatar{
  width: 64px;
  height: 64px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(24px 24px at 30% 30%, rgba(255,255,255,0.22), transparent 60%),
    linear-gradient(135deg, rgba(47,107,255,0.38), rgba(0,212,255,0.18));
}

.preview-lines span{
  height: 10px;
  display: block;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.08);
  margin-top: 10px;
}
.preview-lines .l1{ width: 85%; }
.preview-lines .l2{ width: 72%; }
.preview-lines .l3{ width: 66%; }

.preview-actions{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.preview-actions span{
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
}

.preview-qr{
  width: 120px;
  height: 120px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.12) 0 6px, transparent 6px 12px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.10) 0 6px, transparent 6px 12px),
    rgba(255,255,255,0.03);
}

/* Pricing */
.pricing-grid{
  grid-template-columns: repeat(12, 1fr);
  align-items: stretch;
}

.pricing-card{
  grid-column: span 4;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-direction: column;
}

.pricing-head .home-p{
  margin-top: 8px;
}

.pricing-price{
  margin: 8px 0 0;
  font-weight: 900;
  letter-spacing: -0.4px;
  font-size: 34px;
}

.pricing-currency{
  font-size: 18px;
  vertical-align: super;
  opacity: 0.9;
}

.pricing-period{
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,0.62);
}

.pricing-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: rgba(255,255,255,0.78);
  font-weight: 650;
}

.pricing-list li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-list i{
  color: rgba(0, 212, 255, 0.92);
  margin-top: 3px;
}

.pricing-card-featured{
  border-color: rgba(47, 107, 255, 0.40);
  box-shadow: 0 24px 70px rgba(47, 107, 255, 0.18);
}

.pricing-badge{
  align-self: start;
  justify-self: start;
  margin-bottom: -6px;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.3px;
  color: #0B1020;
  background: linear-gradient(135deg, var(--home-primary), var(--home-accent));
}

/* Buttons for sections */
.home-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 14px;
  font-weight: 700;
  /* border: 1px solid transparent; */
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.home-btn:focus-visible{
  outline: 2px solid rgba(47, 107, 255, 0.78);
  outline-offset: 3px;
}

.home-btn-primary{
  color: #0B1020;
  background: linear-gradient(135deg, var(--home-primary), var(--home-accent));
  box-shadow: 0 18px 44px rgba(47, 107, 255, 0.28);
}

.home-btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 56px rgba(47, 107, 255, 0.36);
}

.home-btn-ghost{
  color: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
}

.home-btn-ghost:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.07);
}

/* Testimonials */
.testimonials-grid{
  grid-template-columns: repeat(12, 1fr);
}

.testimonial{
  grid-column: span 4;
}

.testimonial-quote{
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

.testimonial-meta{
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: rgba(255,255,255,0.70);
  font-weight: 800;
}

.testimonial-role{
  font-weight: 650;
  color: rgba(255,255,255,0.58);
}

/* CTA */
.home-cta{
  padding: 70px 0 90px;
  position: relative;
}

.home-cta::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 460px at 30% 30%, rgba(47, 107, 255, 0.22), transparent 60%),
    radial-gradient(760px 420px at 80% 35%, rgba(0, 212, 255, 0.12), transparent 60%);
  pointer-events: none;
}

/* Scroll reveal + micro-animations */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
  will-change: opacity, transform;
}

.reveal.in-view{
  opacity: 1;
  transform: translateY(0);
}

.home-card{
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.home-card:hover{
  transform: translateY(-4px);
  border-color: rgba(47, 107, 255, 0.22);
  box-shadow: 0 24px 70px rgba(0,0,0,0.40);
}

.home-card-icon{
  position: relative;
}

.home-card-icon::after{
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 18px;
  background: radial-gradient(24px 18px at 50% 50%, rgba(47,107,255,0.28), transparent 65%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.home-card:hover .home-card-icon::after{
  opacity: 1;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .reveal{ opacity: 1; transform: none; transition: none; }
  .home-card{ transition: none; }
  .home-card:hover{ transform: none; }
}

.home-cta-inner{
  position: relative;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: 0 24px 70px rgba(0,0,0,0.35);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.home-cta-actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  min-width: 320px;
}

/* ── About Us — Bento Grid ── */

.about-big-headline {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  letter-spacing: -1.5px;
  margin-bottom: 3rem;
  color: rgba(255,255,255,0.95);
}

.about-headline-strike {
  position: relative;
  color: rgba(255,255,255,0.35);
  display: inline-block;
}

.about-headline-strike::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 52%;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #2f6bff, #00d4ff);
  transform: rotate(-2deg);
}

.about-headline-glow {
  background: linear-gradient(135deg, #2f6bff 0%, #00d4ff 60%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Bento grid */
.about-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

/* Base tile */
.ab-tile {
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.ab-tile:hover {
  border-color: rgba(47,107,255,0.3);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

/* Grid placement */
.ab-tile-mission { grid-column: span 7; }
.ab-tile-orbit   { grid-column: span 5; }
.ab-tile-stat    { grid-column: span 3; }
.ab-tile-stat-alt{ grid-column: span 3; }
.ab-tile-ticker  { grid-column: span 3; }
.ab-tile-eco     { grid-column: span 3; }
.ab-tile-share   { grid-column: span 6; }
.ab-tile-quote   { grid-column: span 6; }

/* Tile tag */
.ab-tile-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  width: fit-content;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(0,212,255,0.8);
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 999px;
  padding: 3px 12px;
  margin-bottom: 16px;
}

/* ── Tile A: Mission ── */
.ab-tile-mission {
  background:
    radial-gradient(600px 300px at 0% 50%, rgba(47,107,255,0.14), transparent 60%),
    rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.ab-mission-text {
  font-size: 1.15rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 28px;
  flex: 1;
}

.ab-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
}

/* Decorative grid lines */
.ab-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.06;
}

.ab-grid-lines span {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.6);
}

.ab-grid-lines span:nth-child(1) { left: 25%; }
.ab-grid-lines span:nth-child(2) { left: 50%; }
.ab-grid-lines span:nth-child(3) { left: 75%; }
.ab-grid-lines span:nth-child(4) {
  left: 0; right: 0; width: auto; height: 1px;
  top: 50%; bottom: auto;
}

/* ── Tile B: Orbit ── */
.ab-tile-orbit {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(300px 300px at 50% 50%, rgba(47,107,255,0.12), transparent 70%),
    rgba(255,255,255,0.02);
  min-height: 220px;
}

.ab-orbit-wrap {
  position: relative;
  width: 180px;
  height: 180px;
}

.ab-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.12);
}

.ab-orbit-1 {
  animation: orbitSpin 12s linear infinite;
}

.ab-orbit-2 {
  inset: 28px;
  animation: orbitSpin 8s linear infinite reverse;
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.ab-orbit-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(10,14,26,0.9);
  border: 1px solid rgba(47,107,255,0.4);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  color: #00d4ff;
  transform:
    rotate(var(--angle))
    translateX(80px)
    rotate(calc(-1 * var(--angle)));
  margin: -16px 0 0 -16px;
  box-shadow: 0 4px 16px rgba(47,107,255,0.25);
}

.ab-orbit-2 .ab-orbit-dot {
  transform:
    rotate(var(--angle))
    translateX(52px)
    rotate(calc(-1 * var(--angle)));
}

.ab-orbit-core {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(47,107,255,0.6), rgba(0,212,255,0.4));
  border: 1px solid rgba(47,107,255,0.5);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: #fff;
  box-shadow: 0 0 32px rgba(47,107,255,0.4), 0 0 64px rgba(0,212,255,0.15);
}

/* ── Tiles C & D: Stats ── */
.ab-tile-stat,
.ab-tile-stat-alt {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 140px;
}

.ab-tile-stat {
  background: linear-gradient(135deg, rgba(47,107,255,0.15), rgba(0,212,255,0.06));
}

.ab-tile-stat-alt {
  background: linear-gradient(135deg, rgba(0,212,255,0.10), rgba(47,107,255,0.05));
}

.ab-stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #2f6bff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.ab-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  margin-bottom: 14px;
}

.ab-stat-bar {
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.ab-stat-fill {
  height: 100%;
  width: var(--fill, 50%);
  border-radius: 999px;
  background: linear-gradient(90deg, #2f6bff, #00d4ff);
  animation: statGrow 1.4s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes statGrow {
  from { width: 0; }
  to   { width: var(--fill, 50%); }
}

/* ── Tile E: Ticker ── */
.ab-tile-ticker {
  background: rgba(255,255,255,0.025);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
}

.ab-ticker-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

.ab-ticker-val {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.ab-ticker-num {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #fff 30%, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ab-ticker-unit {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
}

.ab-ticker-pulse {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}

.ab-ticker-pulse span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00d4ff;
  animation: tickerPulse 1.4s ease-in-out infinite;
}

.ab-ticker-pulse span:nth-child(2) { animation-delay: 0.2s; }
.ab-ticker-pulse span:nth-child(3) { animation-delay: 0.4s; }

@keyframes tickerPulse {
  0%, 100% { opacity: 0.25; transform: scale(0.8); }
  50%       { opacity: 1;    transform: scale(1.2); }
}

/* ── Tile F: Eco ── */
.ab-tile-eco {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(34,197,94,0.10), rgba(0,212,255,0.05));
  border-color: rgba(34,197,94,0.2);
}

.ab-eco-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: #4ade80;
  flex-shrink: 0;
}

.ab-eco-title {
  font-weight: 800;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 3px;
}

.ab-eco-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* ── Tile G: Share chips ── */
.ab-tile-share {
  background:
    radial-gradient(400px 200px at 100% 100%, rgba(47,107,255,0.10), transparent 60%),
    rgba(255,255,255,0.025);
}

.ab-share-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ab-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.75);
  cursor: default;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.ab-chip:hover {
  background: rgba(47,107,255,0.2);
  border-color: rgba(47,107,255,0.45);
  color: #fff;
}

.ab-chip i { color: #00d4ff; }

/* ── Tile H: Quote ── */
.ab-tile-quote {
  background:
    radial-gradient(300px 200px at 0% 100%, rgba(0,212,255,0.08), transparent 60%),
    rgba(255,255,255,0.02);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ab-quote-icon {
  font-size: 1.8rem;
  background: linear-gradient(135deg, #2f6bff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
  opacity: 0.7;
}

.ab-quote-text {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 14px;
}

.ab-quote-author {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.3px;
}

/* Templates */
.templates-grid{
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  align-items: stretch;
}

.template-card{
  padding: 12px;
  display: grid;

  gap: 12px;
}

.template-thumb{
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  overflow: hidden;
}

.template-thumb-img{
  width: 100%;
  height: 100%;
  aspect-ratio:1/1;
  object-fit: contain;
  display: block;
}

.template-thumb-placeholder{
  background:
    radial-gradient(240px 140px at 22% 28%, rgba(47,107,255,0.22), transparent 60%),
    radial-gradient(220px 140px at 78% 38%, rgba(0,212,255,0.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}

.template-body{
  padding: 0 6px 6px;
}

.template-title{
  font-weight: 950;
  letter-spacing: 0.1px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 4px;
}

.templates-cta{
  margin-top: 18px;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.templates-cta-text{
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-weight: 800;
  text-align: center;
}

.templates-cta-btn{
  width: auto;
  padding-left: 18px;
  padding-right: 18px;
}

/* ===================== Footer ===================== */
.site-footer{
  padding: 64px 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(900px 460px at 10% 0%, rgba(47,107,255,0.12), transparent 60%),
    radial-gradient(700px 400px at 90% 30%, rgba(0,212,255,0.08), transparent 60%),
    linear-gradient(180deg, rgba(7,10,18,0.98) 0%, #070A12 100%);
}

/* Top grid: brand + 3 nav cols */
.site-footer-top{
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

/* Brand column */
.site-footer-brand{}

.site-footer-logo{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 16px;
}

.site-footer-logo img{
  max-width: 180px;
  height: auto;
  opacity: 0.92;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.35));
}

.site-footer-text{
  margin: 0 0 20px;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 280px;
}

/* Social buttons */
.site-footer-social{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-btn{
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.social-btn:hover{
  background: linear-gradient(135deg, rgba(47,107,255,0.35), rgba(0,212,255,0.18));
  border-color: rgba(47,107,255,0.45);
  color: rgba(255,255,255,0.95);
  transform: translateY(-2px);
}

/* Nav columns */
.site-footer-col{
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-footer-h{
  margin: 0 0 16px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.40);
}

.site-footer-col a{
  color: rgba(255,255,255,0.68);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 5px 0;
  transition: color 160ms ease, transform 160ms ease;
  display: inline-block;
}

.site-footer-col a:hover{
  color: #00D4FF;
  transform: translateX(3px);
}

/* Contact column */
.site-footer-contact{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-row{
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
}

.contact-row i{
  width: 18px;
  text-align: center;
  color: #00D4FF;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.contact-row a{
  color: rgba(255,255,255,0.68) !important;
  text-decoration: none;
  transition: color 160ms ease !important;
  transform: none !important;
  padding: 0 !important;
}

.contact-row a:hover{
  color: #00D4FF !important;
  transform: none !important;
}

/* Bottom bar */
.site-footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.site-footer-legal{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.40);
  font-size: 0.82rem;
}

.site-footer-dot{
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

.legal-link{
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 160ms ease;
}

.legal-link:hover{ color: rgba(255,255,255,0.80); }

.site-footer-cta-btn{
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2F6BFF, #00D4FF);
  color: #0B1020 !important;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 10px 28px rgba(47,107,255,0.28);
}

.site-footer-cta-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(47,107,255,0.38);
}

/* ---- Footer responsive ---- */
@media (max-width: 980px){
  .site-footer-top{
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .site-footer-brand{
    grid-column: 1 / -1;
  }
  .site-footer-text{ max-width: 100%; }
}

@media (max-width: 560px){
  .site-footer{ padding: 48px 0 0; }
  .site-footer-top{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .site-footer-brand{ grid-column: auto; }
  .site-footer-bottom{
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* Responsive */
@media (max-width: 980px){
  .home-section{ padding: 70px 0; }

  .features-grid{ grid-template-columns: repeat(6, 1fr); }
  .features-grid .home-card{ grid-column: span 3; }

  .hiw-panel-inner { grid-template-columns: 1fr; gap: 28px; padding: 24px; }
  .hiw-panel-visual { order: -1; }
  .hiw-mock { max-width: 100%; }
  .hiw-tab-connector { width: 20px; }
  .hiw-tab { padding: 10px 16px; font-size: 0.82rem; }
  .home-video{ height: 240px; }
  .about-big-headline { font-size: 2rem; letter-spacing: -0.5px; }
  .ab-tile-mission, .ab-tile-orbit,
  .ab-tile-stat, .ab-tile-stat-alt,
  .ab-tile-ticker, .ab-tile-eco,
  .ab-tile-share, .ab-tile-quote { grid-column: span 12; }
  .ab-tile-stat, .ab-tile-stat-alt,
  .ab-tile-ticker, .ab-tile-eco { grid-column: span 6; }

  .pricing-grid{ grid-template-columns: repeat(6, 1fr); }
  .pricing-card{ grid-column: span 6; }

  .testimonials-grid{ grid-template-columns: repeat(6, 1fr); }
  .testimonial{ grid-column: span 6; }

  .templates-grid{ grid-template-columns: repeat(6, 1fr); }
  .template-card{ grid-column: span 6; }

  .home-cta-inner{ grid-template-columns: 1fr; }
  .home-cta-actions{ min-width: 0; grid-template-columns: 1fr; }

  .site-footer-inner{ grid-template-columns: 1fr; }
}

@media (max-width: 560px){
  .features-grid{ grid-template-columns: 1fr; }
  .features-grid .home-card{ grid-column: auto; }
}

