
:root {
  --bg: #0b122a;
  --bg-soft: #101831;
  --surface: rgba(30, 41, 59, 0.9);
  --surface-soft: rgba(30, 41, 59, 0.85);
  --border-subtle: rgba(148, 163, 184, 0.30);
  --border-strong: rgba(148, 163, 184, 0.55);
  --text: #f9fafb;
  --text-muted: #e5e7eb;
  --text-soft: #94a3b8;
  --accent: #4a6ab8;
  --accent-soft: rgba(249, 115, 22, 0.16);
  --accent-strong: #5172c4;
  --accent-secondary: #facc15;
  --shadow-soft: 0 20px 40px rgba(15, 23, 42, 0.85);
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-full: 999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(248, 250, 252, 0.08), transparent 55%),
    radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.14), transparent 60%),
    linear-gradient(145deg, #0b122a, #101a3a 48%, #0b122a 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.page-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 3.5rem 0;
}

.hero {
  padding: 4.2rem 0 2.8rem;
}

.section-soft {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(30, 41, 59, 0.85));
}

.section-split {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background:
    radial-gradient(circle at top left, rgba(248, 250, 252, 0.06), transparent 55%),
    rgba(30, 41, 59, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 15px;
  box-shadow: 0 12px 28px rgba(30, 41, 59, 0.7);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.03em;
}

.brand-tagline {
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* Nav */

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  font-size: 0.92rem;
  color: var(--text-soft);
  text-decoration: none;
  padding: 0.2rem 0;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  transition: width 0.18s ease-out;
}

.nav-link:hover {
  color: var(--text-muted);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link-pill {
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(252, 211, 77, 0.55);
  background: radial-gradient(circle at top left, rgba(253, 224, 71, 0.22), rgba(249, 115, 22, 0.12));
  color: var(--text);
  box-shadow: 0 14px 34px rgba(248, 113, 22, 0.4);
}

.nav-link-pill::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.65);
  background: rgba(30, 41, 59, 0.88);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

/* Hero */

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 2.6rem;
  align-items: stretch;
}

.hero-copy {
  max-width: 640px;
}

.hero-title {
  font-size: clamp(2.35rem, 3.4vw, 3rem);
  letter-spacing: 0.02em;
  line-height: 1.08;
  margin: 0.7rem 0 0.8rem;
}

.hero-gradient {
  background-image: linear-gradient(120deg, var(--accent), var(--accent-strong), var(--accent-secondary));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-lede {
  font-size: 1.02rem;
  color: var(--text-soft);
  max-width: 36rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-soft);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.28);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.4rem 0 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-full);
  font-size: 0.94rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  color: #111827;
  font-weight: 600;
  box-shadow: 0 16px 36px rgba(248, 113, 22, 0.55);
}

.btn-ghost {
  border-color: rgba(148, 163, 184, 0.45);
  color: var(--text-soft);
  background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.18), rgba(30, 41, 59, 0.88));
}

.btn-ghost:hover {
  color: var(--text-muted);
}

.hero-meta {
  font-size: 0.9rem;
  color: var(--text-soft);
  max-width: 34rem;
}

/* Hero side */

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.hero-card h2 {
  font-size: 1.02rem;
  margin-top: 0;
}

.hero-metrics {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  font-size: 0.9rem;
}

.hero-metrics li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.5);
}

.hero-metrics li:last-child {
  border-bottom: none;
}

.hero-footnote {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.hero-micro {
  background: radial-gradient(circle at top left, var(--accent-soft), rgba(30, 41, 59, 0.9));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(248, 250, 252, 0.08);
  padding: 1.1rem 1.35rem;
  font-size: 0.9rem;
}

/* Band */

.band {
  padding: 1.7rem 0 2.1rem;
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.3rem;
}

.band-item {
  background: var(--surface);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft);
}

.band-value {
  display: block;
  font-weight: 600;
  font-size: 1.1rem;
}

.band-label {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* Layout helpers */

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.3rem;
  align-items: flex-start;
}

.three-column {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

/* Cards */

.card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--shadow-soft);
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0.7rem 0 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.card-list li {
  padding: 0.3rem 0;
}

/* Chips */

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.chip {
  font-size: 0.78rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: radial-gradient(circle at top left, rgba(248, 250, 252, 0.09), rgba(30, 41, 59, 0.9));
}

/* Reviews */

.section-reviews {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.reviews-header {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.reviews-summary {
  margin-top: 1.2rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 2rem;
}

.review-quote {
  font-size: 0.96rem;
  color: var(--text-muted);
}

.review-meta {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-top: 0.5rem;
}

.small {
  font-size: 0.82rem;
  color: var(--text-soft);
}

/* Contact */

.section-contact {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.1rem;
}

.contact-highlights p {
  font-size: 0.95rem;
  color: var(--text-soft);
}

/* Form */

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.field label {
  font-size: 0.83rem;
  color: var(--text-soft);
}

.field input,
.field select,
.field textarea {
  border-radius: 11px;
  border: 1px solid rgba(148, 163, 184, 0.75);
  padding: 0.55rem 0.75rem;
  background: rgba(30, 41, 59, 0.9);
  color: var(--text);
  font: inherit;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(148, 163, 184, 0.9);
}

.field textarea {
  resize: vertical;
}

.btn-full {
  width: 100%;
  margin-top: 0.7rem;
}

.form-footnote {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-top: 0.5rem;
}

/* Footer */

.site-footer {
  margin-top: 3rem;
  background: rgba(30, 41, 59, 0.94);
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  backdrop-filter: blur(18px);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: center;
  padding: 1.6rem 1.5rem 1.2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-mark {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(30, 41, 59, 0.7);
}

.footer-name { margin-bottom: 2px; font-weight: 600; }

.footer-tagline { margin-top: 0px; font-size: 0.88rem; color: var(--text-soft); }

.footer-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.7rem;
  font-size: 0.85rem;
}

.footer-links a {
  color: var(--text-soft);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text-muted);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  font-size: 0.82rem;
}

.footer-contact span {
  margin-left: 0.4rem;
}

.footer-contact a {
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-social-label {
  font-size: 0.78rem;
  color: var(--text-soft);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  font-size: 0.78rem;
  text-decoration: none;
  color: var(--text);
  background: radial-gradient(circle at top left, rgba(248, 250, 252, 0.1), rgba(30, 41, 59, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: 0 10px 24px rgba(30, 41, 59, 0.85);
}

.social-icon:hover {
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.35), rgba(30, 41, 59, 0.9));
}

.footer-bottom {
  text-align: center;
  padding: 0.85rem 1.5rem 1.3rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* To top */

.to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.75);
  background: radial-gradient(circle at top left, rgba(248, 250, 252, 0.16), rgba(30, 41, 59, 0.92));
  color: var(--text);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}

.to-top.visible {
  display: flex;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-grid,
  .two-column,
  .three-column,
  .reviews-header,
  .reviews-grid,
  .contact-grid,
  .band-grid,
  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-nav {
    position: fixed;
    top: 60px;
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9rem 1rem 1rem;
    border-radius: 16px;
    background: rgba(30, 41, 59, 0.94);
    border: 1px solid rgba(148, 163, 184, 0.45);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease-out, transform 0.18s ease-out;
  }

  .site-header.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .footer-meta {
    align-items: flex-start;
  }

  .band-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .hero,
  .section {
    padding-left: 0;
    padding-right: 0;
  }

  .header-inner {
    padding-inline: 1rem;
  }

  .footer-inner {
    padding-inline: 1rem;
  }

  .page-shell {
    padding-inline: 1.2rem;
  }
}


.view-all {
  margin-top: 1.5rem;
  text-align: right;
  font-size: 0.9rem;
}

.view-all a {
  color: var(--accent-strong);
  text-decoration: none;
}

.view-all a:hover {
  text-decoration: underline;
}


/* Footer refresh */
.site-footer {
  margin-top: 3rem;
  background:
    radial-gradient(circle at top left, rgba(148, 163, 184, 0.16), transparent 55%),
    rgba(15, 23, 42, 0.98);
  border-top: 1px solid rgba(148, 163, 184, 0.6);
  backdrop-filter: blur(18px);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 1.6rem;
  align-items: flex-start;
  padding: 1.8rem 1.5rem 1.4rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-mark {
  width: 32px;
  height: 32px;
}

.footer-name { margin-bottom: 2px; font-weight: 600; }

.footer-tagline { margin-top: 0px; font-size: 0.88rem; color: var(--text-soft); }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.4rem;
  row-gap: 0.35rem;
  font-size: 0.86rem;
  justify-content: center;
}

.footer-links a {
  color: var(--text-soft);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text-muted);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
  font-size: 0.84rem;
}

.footer-contact span {
  white-space: nowrap;
}

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

.footer-contact a:hover {
  color: var(--accent-strong);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-social-label {
  font-size: 0.78rem;
  color: var(--text-soft);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(148, 163, 184, 0.65);
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.26), transparent 60%),
    rgba(15, 23, 42, 0.98);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.6);
}

.social-icon:hover {
  box-shadow: 0 0 22px rgba(96, 165, 250, 0.85);
}

.footer-bottom {
  text-align: center;
  padding: 0.9rem 1.5rem 1.35rem;
  font-size: 0.8rem;
  color: var(--text-soft);
  border-top: 1px solid rgba(15, 23, 42, 0.9);
}

/* Footer responsive */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
  }

  .footer-meta {
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .footer-inner {
    padding-inline: 1rem;
  }

  .footer-contact span {
    white-space: normal;
  }
}

.view-all-reviews{display:block;text-align:right;margin-top:10px;color:var(--accent-strong);} .view-all-reviews:hover{text-decoration:underline;}