:root {
  --bg: #0a0e1a;
  --bg-alt: #0d1520;
  --panel: #111827;
  --text: #e8f0fe;
  --muted: #8a9bb0;
  --cyan: #00c8f0;
  --gold: #f5c842;
  --green: #25d366;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(0, 200, 240, 0.1), transparent 28rem),
    radial-gradient(circle at top left, rgba(245, 200, 66, 0.08), transparent 24rem),
    linear-gradient(180deg, #09111d 0%, #0b1220 45%, #08101a 100%);
  line-height: 1.7;
}

a {
  color: var(--cyan);
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: #ffffff;
  color: #08101a;
  border-radius: 999px;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(8, 12, 20, 0.9);
  border-bottom: 1px solid rgba(0, 200, 240, 0.08);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-logo-only {
  gap: 0;
}

.brand span {
  color: var(--gold);
}

.brand-logo {
  width: 52px;
  height: 52px;
  flex: none;
}

.brand-wordmark {
  width: 140px;
  height: auto;
  display: block;
}

.brand-lockup {
  display: grid;
  gap: 0.12rem;
}

.brand-name {
  color: var(--text) !important;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-tag {
  color: var(--muted) !important;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(0, 200, 240, 0.22);
  background: transparent;
  color: var(--text);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font: inherit;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

.hero {
  padding: 5.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 1.5rem;
  align-items: stretch;
}

.hero-panel,
.glass-card,
.card,
.cta-panel,
.faq-item,
.pricing-card,
.guide-card {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.96), rgba(13, 21, 32, 0.92));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-side,
.card,
.pricing-card,
.guide-card,
.faq-item,
.cta-panel {
  padding: 1.5rem;
}

.hero-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 20, 0.12), rgba(8, 12, 20, 0.7));
}

.floating-stat {
  position: absolute;
  z-index: 2;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(8, 12, 20, 0.88);
  border: 1px solid rgba(0, 200, 240, 0.18);
  box-shadow: var(--shadow);
}

.kicker,
.page-kicker,
.eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.18);
  color: #4ee89b;
}

.page-kicker,
.eyebrow {
  color: var(--cyan);
}

h1,
h2,
h3 {
  line-height: 1.1;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.15rem;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 58ch;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
}

.button-primary {
  background: var(--green);
  color: #ffffff;
}

.button-secondary {
  background: transparent;
  border-color: rgba(0, 200, 240, 0.26);
  color: var(--cyan);
}

.button-outline {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(245, 200, 66, 0.28);
  color: var(--gold);
}

.grid-2,
.grid-3,
.guide-grid,
.pricing-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.section {
  padding: 2rem 0 4rem;
}

.section-header {
  max-width: 56ch;
  margin-bottom: 1.5rem;
}

.section-header p,
.muted,
.breadcrumb,
.footer-meta {
  color: var(--muted);
}

.hero-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-home {
  padding-top: 3rem;
  padding-bottom: 1.5rem;
}

.hero-grid-home {
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 1.25rem;
}

.hero-copy-home {
  padding: 1.4rem;
}

.hero-copy-home h1 {
  font-size: clamp(2.3rem, 6vw, 4rem);
  max-width: 9.5ch;
  margin-bottom: 0.75rem;
}

.hero-domain {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 200, 240, 0.22);
  background: rgba(0, 200, 240, 0.08);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.hero-points span {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.84rem;
}

.hero-contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-contact-line span {
  display: inline-flex;
  gap: 0.35rem;
}

.hero-media-home {
  min-height: 420px;
}

.hero-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(9, 14, 24, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-card-top {
  top: 20px;
  right: 20px;
}

.hero-card-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-card strong {
  color: var(--gold);
  font-size: 1.7rem;
  line-height: 1;
}

.separator-dot {
  display: inline-block;
  margin: 0 0.45rem;
  color: rgba(255, 255, 255, 0.25);
}

.pill-row,
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.82rem;
}

.trust-strip {
  padding: 1.1rem 1.2rem;
  border-radius: 18px;
  background: rgba(13, 21, 32, 0.9);
  border: 1px solid rgba(0, 200, 240, 0.08);
}

.trust-item {
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-item strong {
  color: var(--text);
}

.faq-stack {
  display: grid;
  gap: 1rem;
}

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

.section-compact {
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}

.trust-strip-home {
  justify-content: space-between;
}

.pricing-section-home {
  padding-top: 2.2rem;
}

.pricing-header-home {
  max-width: 50rem;
}

.pricing-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-tier {
  position: relative;
  padding: 2rem 1.8rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(28, 28, 30, 0.97), rgba(17, 17, 19, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.pricing-tier-featured {
  border-color: rgba(245, 200, 66, 0.56);
  box-shadow: 0 24px 60px rgba(245, 200, 66, 0.08);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff9b2f, #ff7d1c);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-tier-kicker {
  margin: 0 0 1rem;
  color: #ff8a24;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pricing-hero-line {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  margin-bottom: 1.35rem;
}

.pricing-currency {
  color: #ff8a24;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.pricing-hero-line strong {
  color: #ffffff;
  font-size: clamp(3.4rem, 8vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.pricing-period {
  color: var(--muted);
  font-size: 1rem;
  padding-bottom: 0.55rem;
}

.pricing-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.pricing-feature-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #e8f0fe;
}

.pricing-feature-list strong {
  color: #ff8a24;
  white-space: nowrap;
}

.pricing-tier-note {
  margin: 1.4rem 0 0;
  color: var(--muted);
}

.button-pricing {
  width: 100%;
  margin-top: 1.3rem;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.button-pricing-featured {
  background: linear-gradient(180deg, #ff9b2f, #ff7d1c);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(255, 125, 28, 0.18);
}

.pricing-bottom-note {
  margin: 1.2rem 0 0;
  text-align: center;
  color: var(--muted);
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.65rem;
}

.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-row strong {
  color: var(--gold);
  white-space: nowrap;
}

.compact-panel {
  margin-top: 1rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
}

.check-list li + li {
  margin-top: 0.75rem;
}

.check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.hero-grid-service {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: start;
}

.hero-grid-reverse .hero-copy {
  order: 2;
}

.hero-grid-reverse .service-hero-side {
  order: 1;
}

.hero-grid-inline {
  grid-template-columns: minmax(0, 1.14fr) minmax(260px, 0.86fr);
  align-items: start;
}

.hero-copy-service {
  padding: 1.6rem;
}

.hero-copy-service h1 {
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  max-width: 10ch;
}

.hero-copy-service .lead {
  max-width: 62ch;
}

.hero-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.hero-inline-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-inline-links a:hover {
  color: var(--text);
  border-color: rgba(0, 200, 240, 0.22);
}

.service-hero-side,
.service-hero-rail {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1.2rem;
}

.hero-media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 320px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-media-frame img,
.hero-inline-media img,
.blog-figure-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-media-frame::after,
.hero-inline-media::after,
.blog-figure-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 20, 0.08), rgba(8, 12, 20, 0.42));
  pointer-events: none;
}

.hero-meta-stack,
.hero-rail-stack {
  display: grid;
  gap: 0.9rem;
}

.hero-mini-card,
.hero-rail-card {
  padding: 1rem 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-mini-label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-mini-card strong,
.hero-rail-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.hero-mini-card p,
.hero-rail-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-inline-media {
  position: relative;
  margin-top: 1.25rem;
  overflow: hidden;
  border-radius: 22px;
  min-height: 250px;
}

.hero-rail-card .button {
  width: 100%;
  margin-top: 0.9rem;
}

.blog-topbar {
  background: rgba(7, 12, 20, 0.94);
}

.blog-topbar .header-row {
  min-height: 68px;
}

.hero-blog {
  padding-top: 3rem;
  padding-bottom: 1.5rem;
}

.blog-hero-shell {
  max-width: 52rem;
}

.blog-hero-shell h1 {
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  max-width: 13ch;
}

.blog-figure-wrap {
  margin-top: 1.25rem;
}

.blog-figure-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.blog-figure-card img {
  min-height: 280px;
}

.smart-links-section {
  padding-top: 1.3rem;
}

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

.journey-card {
  padding: 1.3rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.96), rgba(13, 21, 32, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.journey-card h3 {
  margin-bottom: 0.75rem;
}

.journey-card p {
  margin: 0;
  color: var(--muted);
}

.journey-card a {
  text-decoration: none;
}

.journey-card a:hover {
  color: var(--text);
}

.journey-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  padding: 1.25rem 1.35rem;
  border-radius: 22px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.18);
}

.journey-cta h3 {
  margin-bottom: 0.45rem;
}

.journey-cta p {
  margin: 0;
  color: var(--muted);
}

.journey-cta .button {
  flex: none;
}

.site-footer {
  padding: 3rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-grid-global {
  grid-template-columns: 1.55fr repeat(5, minmax(0, 0.9fr));
  align-items: start;
  gap: 1.15rem;
}

.footer-grid-simple {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.footer-home {
  padding-top: 2rem;
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding-bottom: 1.8rem;
}

.footer-pills a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(0, 200, 240, 0.16);
  background: rgba(10, 20, 34, 0.72);
  color: var(--cyan);
  text-decoration: none;
}

.footer-grid-homepage {
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  align-items: start;
}

.footer-brand-block {
  max-width: 34ch;
}

.footer-section-title {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-description {
  margin: 0;
}

.nav-links-home a {
  font-weight: 600;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.1rem;
  border-radius: 14px;
  background: var(--green);
  color: #ffffff !important;
  border: 1px solid transparent;
}

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

.contact-card-home p {
  margin: 0.35rem 0;
}

.brand-footer {
  margin-bottom: 1rem;
}

.footer-note {
  max-width: 36ch;
}

.simple-footer .footer-links {
  align-content: start;
}

.footer-links {
  display: grid;
  gap: 0.75rem;
  justify-items: start;
}

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

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

.footer-meta {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 980px) {
  .hero-grid,
  .hero-grid-home,
  .hero-grid-service,
  .hero-grid-inline,
  .grid-2,
  .grid-3,
  .pricing-showcase,
  .plans-grid,
  .pricing-grid,
  .guide-grid,
  .related-grid,
  .footer-grid,
  .footer-grid-global,
  .footer-grid-homepage,
  .contact-grid-home {
    grid-template-columns: 1fr;
  }

  .journey-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 4.5rem;
  }

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

  .nav-links {
    position: absolute;
    inset: calc(100% + 0.5rem) 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(9, 14, 25, 0.98);
    border-radius: var(--radius);
    border: 1px solid rgba(0, 200, 240, 0.14);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-cta {
    width: 100%;
  }

  .hero-contact-line {
    flex-direction: column;
    gap: 0.45rem;
  }

  .hero-card {
    position: static;
    margin-top: 1rem;
  }

  .hero-copy-service,
  .service-hero-side,
  .service-hero-rail {
    padding: 1.1rem;
  }

  .hero-copy-service h1,
  .blog-hero-shell h1 {
    max-width: 100%;
  }

  .hero-copy-home {
    padding: 1.15rem;
  }

  .hero-copy-home h1 {
    max-width: 100%;
  }

  .hero-media-home {
    min-height: 300px;
  }

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

  .hero-inline-links {
    flex-direction: column;
  }

  .hero-inline-links a,
  .journey-cta .button {
    width: 100%;
  }

  .blog-figure-card,
  .blog-figure-card img,
  .hero-media-frame {
    min-height: 240px;
  }
}
