:root {
  --bg: #f8fafc;
  --bg-soft: #eef2f7;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --card: #ffffff;
  --dark: #0f172a;
  --dark-2: #111827;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --accent: #06b6d4;
  --green: #10b981;
  --orange: #f97316;
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 18px 50px rgba(15, 23, 42, 0.08);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 34rem),
    radial-gradient(circle at top right, rgba(6, 182, 212, 0.11), transparent 30rem),
    var(--bg);
  line-height: 1.6;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  z-index: 9999;
  padding: .7rem 1rem;
  background: #fff;
  border-radius: .75rem;
  box-shadow: var(--shadow-soft);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(248, 250, 252, 0.88);
  border-bottom: 1px solid rgba(226, 232, 240, 0.75);
}

.nav-wrap {
  display: flex;
  align-items: center;
  min-height: 74px;
  gap: 2.1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.28);
  font-weight: 900;
}

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

.brand-text strong {
  font-size: 1.03rem;
}

.brand-text span {
  color: var(--muted);
  font-size: .76rem;
  letter-spacing: 0;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: .24rem;
  font-weight: 650;
  color: #334155;
  min-width: 0;
}

.main-nav a {
  padding: .5rem .58rem;
  border-radius: 999px;
  font-size: .94rem;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: #eaf0ff;
  color: var(--primary-dark);
  outline: none;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
}

.site-header .header-actions .btn {
  display: none;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  border-radius: 2px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: .86rem 1.14rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.26);
}

.btn-primary:hover {
  box-shadow: 0 20px 38px rgba(37, 99, 235, 0.32);
}

.btn-secondary {
  color: var(--text);
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.btn-ghost {
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 58px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1.15rem;
  padding: .42rem .72rem;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 999px;
  color: #1e40af;
  background: rgba(239, 246, 255, .78);
  font-weight: 800;
  font-size: .88rem;
}

.eyebrow-dot {
  width: .55rem;
  height: .55rem;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(16, 185, 129, .13);
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(2.9rem, 4.4vw, 4.6rem)
  line-height: 1.02;
  letter-spacing: -0.055em;
  color: var(--text);
  overflow-wrap: normal;
  word-break: normal;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(135deg, #1d4ed8, #06b6d4 68%, #0f766e);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 720px;
  margin: 1.45rem 0 0;
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  color: #475569;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1rem;
  margin-top: 1.4rem;
  color: var(--muted);
  font-weight: 650;
  font-size: .96rem;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.check {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: .8rem;
  font-weight: 900;
  flex: 0 0 auto;
}

/* Product card */

.product-card {
  position: relative;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(15, 23, 42, .98), rgba(30, 41, 59, .96));
  color: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: -20% -20% auto auto;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(6, 182, 212, .45), transparent 62%);
  z-index: -1;
}

.product-card::after {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -160px;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(37, 99, 235, .42), transparent 65%);
  z-index: -1;
}

.product-top {
  padding: 28px 28px 0;
}

.window-bar {
  display: flex;
  gap: .45rem;
  margin-bottom: 1.15rem;
}

.window-bar span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .28);
}

.dashboard {
  margin: 0 20px 20px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.dashboard-title strong {
  display: block;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.dashboard-title span {
  color: #cbd5e1;
  font-size: .9rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .65rem;
  border-radius: 999px;
  color: #bbf7d0;
  background: rgba(16, 185, 129, .12);
  font-weight: 800;
  font-size: .82rem;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-bottom: .9rem;
}

.metric {
  padding: .9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .1);
}

.metric span {
  display: block;
  color: #cbd5e1;
  font-size: .76rem;
  font-weight: 700;
}

.metric strong {
  display: block;
  margin-top: .15rem;
  font-size: 1.55rem;
  letter-spacing: -0.05em;
}

.ticket-list {
  display: grid;
  gap: .7rem;
}

.ticket-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: .85rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, .42);
  border: 1px solid rgba(255, 255, 255, .1);
}

.ticket-row strong {
  display: block;
  font-size: .95rem;
}

.ticket-row span {
  display: block;
  color: #cbd5e1;
  font-size: .8rem;
}

.tag {
  padding: .32rem .55rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, .2);
  color: #bfdbfe;
  font-size: .74rem;
  font-weight: 800;
  white-space: nowrap;
}

/* Trust strip */

.trust-strip {
  padding: 20px 0 64px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-item {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .04);
  color: #334155;
  font-weight: 800;
  text-align: center;
}

/* Sections */

section {
  padding: 76px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-kicker {
  margin: 0 0 .5rem;
  color: var(--primary-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
}

h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.section-text {
  max-width: 640px;
  margin: .8rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.45rem;
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow-soft);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-weight: 900;
}

.card h3 {
  margin: 0 0 .55rem;
  font-size: 1.22rem;
  letter-spacing: -0.025em;
}

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

/* Features */

.feature-section {
  background: linear-gradient(180deg, transparent, rgba(239, 246, 255, .75), transparent);
}

.feature-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.feature-panel {
  position: sticky;
  top: 104px;
  padding: 2rem;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(145deg, var(--dark), #1e293b);
  box-shadow: var(--shadow);
}

.feature-panel p {
  color: #cbd5e1;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.feature-item {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(15, 23, 42, .05);
}

.feature-item strong {
  display: block;
  margin-bottom: .25rem;
  letter-spacing: -0.02em;
}

.feature-item span {
  color: var(--muted);
  font-size: .95rem;
}

/* Split cards */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.large-card {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  border-radius: 30px;
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.large-card.dark {
  color: #fff;
  background: linear-gradient(145deg, #0f172a, #172554);
  border-color: rgba(255,255,255,.12);
}

.large-card.dark p,
.large-card.dark li {
  color: #cbd5e1;
}

.large-card h3 {
  margin: 0 0 .8rem;
  font-size: clamp(1.65rem, 2.2vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.clean-list {
  display: grid;
  gap: .75rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  display: flex;
  gap: .65rem;
  color: #475569;
}

/* Support / Hosting cards */

.price-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.price-card {
  padding: 1.5rem;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.price-card.featured {
  color: #fff;
  background: linear-gradient(145deg, var(--dark), #1d4ed8);
  border-color: transparent;
}

.price-card.featured p,
.price-card.featured li {
  color: #dbeafe;
}

.price-label {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: .38rem .68rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, .1);
  color: var(--primary-dark);
  font-weight: 900;
  font-size: .82rem;
}

.featured .price-label {
  color: #bfdbfe;
  background: rgba(255,255,255,.12);
}

.price-card h3 {
  margin: 0 0 .6rem;
  font-size: 1.6rem;
  letter-spacing: -0.035em;
}

/* CTA */

.cta-band {
  padding: 0 0 86px;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2.2rem;
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(6, 182, 212, .35), transparent 24rem),
    linear-gradient(135deg, #0f172a, #1e3a8a);
  box-shadow: var(--shadow);
}

.cta-inner h2 {
  color: #fff;
}

.cta-inner p {
  margin: .8rem 0 0;
  color: #cbd5e1;
  max-width: 720px;
}

/* Footer */

.site-footer {
  color: #cbd5e1;
  background: #0f172a;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 28px;
  padding: 56px 0;
}

.footer-brand p {
  max-width: 340px;
  color: #94a3b8;
}

.footer-address {
  margin-top: 1.35rem;
  font-style: normal;
  color: #94a3b8;
  font-size: .94rem;
  line-height: 1.7;
}

.footer-address strong {
  color: #fff;
}

.footer-address a {
  color: #bfdbfe;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-col h3 {
  margin: 0 0 .9rem;
  color: #fff;
  font-size: 1rem;
}

.footer-col ul {
  display: grid;
  gap: .55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col a {
  color: #94a3b8;
  transition: color .18s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #94a3b8;
  font-size: .94rem;
}

/* Responsive */

@media (max-width: 1120px) {
  .nav-wrap {
    justify-content: space-between;
    gap: 1rem;
  }

  .main-nav {
    display: none;
  }

  .mobile-toggle {
    display: inline-block;
  }

  .main-nav.is-open {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 82px;
    display: grid;
    gap: .35rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-soft);
  }

  .main-nav.is-open a {
    border-radius: 14px;
    padding: .75rem .9rem;
  }

  .hero-grid,
  .feature-layout,
  .split,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .feature-panel {
    position: relative;
    top: auto;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .nav-wrap {
    min-height: 68px;
  }

  .brand-text strong {
    font-size: .98rem;
  }

  .brand-text span {
    font-size: .72rem;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-actions,
  .cta-inner .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .trust-grid,
  .cards-3,
  .feature-list,
  .price-preview,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  section {
    padding: 58px 0;
  }

  .product-top,
  .dashboard,
  .large-card,
  .feature-panel,
  .cta-inner {
    padding: 1.35rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 42px 0;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
