:root {
  --bg: #f4f3f0;
  --ink: #101418;
  --muted: #4f5b66;
  --accent: #1f5b99;
  --accent-2: #e0702f;
  --accent-3: #0f8a6c;
  --card: #ffffff;
  --soft: #ece8e2;
  --shadow: 0 24px 60px rgba(16, 20, 24, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --font-body: "Sora", system-ui, sans-serif;
  --font-head: "Playfair Display", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: radial-gradient(
      circle at 15% 10%,
      rgba(31, 91, 153, 0.18),
      transparent 40%
    ),
    radial-gradient(circle at 85% 0%, rgba(224, 112, 47, 0.2), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(15, 138, 108, 0.16), transparent 40%),
    var(--bg);
  line-height: 1.6;
}

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

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.bg-orbits {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.6;
  animation: float 12s ease-in-out infinite;
}

.orb-a {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(31, 91, 153, 0.35), transparent 70%);
  top: -90px;
  left: -70px;
}

.orb-b {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(224, 112, 47, 0.35), transparent 70%);
  bottom: 40px;
  right: -60px;
  animation-delay: -3s;
}

.orb-c {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(15, 138, 108, 0.3), transparent 70%);
  top: 45%;
  right: 18%;
  animation-delay: -6s;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(244, 243, 240, 0.85);
  border-bottom: 1px solid rgba(16, 20, 24, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(140deg, var(--ink), #384550);
  color: var(--bg);
  border-radius: 14px;
  font-family: var(--font-head);
  font-size: 20px;
  box-shadow: 0 12px 24px rgba(16, 20, 24, 0.2);
}

.brand-name {
  font-size: 20px;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-weight: 500;
  color: var(--muted);
}

.nav-cta {
  display: flex;
  gap: 12px;
}

.primary,
.secondary,
.ghost {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
}

.primary {
  background: linear-gradient(120deg, var(--ink), #2b3238);
  color: var(--bg);
  box-shadow: var(--shadow);
}

.secondary {
  background: linear-gradient(120deg, var(--accent), #2f7ed1);
  color: #f6f3ee;
}

.ghost {
  background: transparent;
  border: 1px solid rgba(16, 20, 24, 0.2);
  color: var(--ink);
}

.primary:hover,
.secondary:hover,
.ghost:hover {
  transform: translateY(-2px);
}

.hero {
  padding: 86px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  margin: 0 0 18px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.trust {
  margin-top: 28px;
}

.trust-logos {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
}

.trust-note {
  font-size: 14px;
  color: var(--muted);
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.panel {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 22px;
  animation: rise 0.8s ease;
  border: 1px solid rgba(16, 20, 24, 0.06);
}

.panel-main {
  position: relative;
  overflow: hidden;
}

.panel-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(31, 91, 153, 0.12),
    transparent 55%
  );
  pointer-events: none;
}

.panel-main {
  padding: 26px;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.panel-title {
  margin-left: auto;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red {
  background: #e56363;
}

.dot-amber {
  background: #e5b45e;
}

.dot-green {
  background: #5ea87f;
}

.metric h3 {
  margin: 8px 0 0;
  font-size: 32px;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
}

.mini-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.mini-grid h4 {
  margin: 0 0 4px;
}

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

.panel-side {
  display: grid;
  gap: 10px;
  background: var(--soft);
}

.badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(21, 19, 18, 0.1);
}

.panel-side .badge {
  background: rgba(16, 20, 24, 0.08);
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: #f0ece6;
}

.section-head {
  max-width: 640px;
  margin-bottom: 36px;
}

.section h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 12px;
}

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

.feature-card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(16, 20, 24, 0.05);
  transition: transform 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.agency-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.key-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.key-list li::before {
  content: "•";
  color: var(--accent);
  margin-right: 8px;
}

.agency-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  border: 1px solid rgba(16, 20, 24, 0.06);
}

.flow-step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: center;
}

.flow-step span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-3);
  color: #f6f3ee;
  display: grid;
  place-items: center;
  font-weight: 600;
}

.global-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.global-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(16, 20, 24, 0.05);
}

.global-card.dark {
  background: linear-gradient(140deg, #101418, #26313c);
  color: var(--bg);
}

.stats {
  display: flex;
  gap: 22px;
  margin-top: 18px;
}

.stats h4 {
  margin: 0;
  font-size: 28px;
}

.stats span {
  color: var(--muted);
  font-size: 13px;
}

.global-card.dark .stats span {
  color: rgba(246, 243, 238, 0.7);
}

.chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.chip {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(246, 243, 238, 0.12);
  font-size: 13px;
}

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

.price-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  position: relative;
  border: 1px solid rgba(16, 20, 24, 0.06);
}

.price-card.featured {
  border: 2px solid var(--accent);
  transform: translateY(-10px);
  background: linear-gradient(180deg, #ffffff, #f5f8fb);
}

.ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--accent);
  color: var(--bg);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
}

.price {
  font-size: 34px;
  margin: 0;
  font-weight: 600;
}

.price span {
  font-size: 14px;
  color: var(--muted);
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.full {
  width: 100%;
}

.cta {
  padding: 70px 0 90px;
}

.cta-box {
  background: linear-gradient(140deg, #101418, #26313c);
  color: var(--bg);
  padding: 36px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 50px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 22px;
  border-bottom: 1px solid rgba(21, 19, 18, 0.12);
  padding-bottom: 28px;
}

.brand-footer .brand-mark {
  background: linear-gradient(140deg, var(--accent), #2f7ed1);
}

.footer-links {
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  font-size: 13px;
  color: var(--muted);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(18px);
  }
}

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

@media (max-width: 980px) {
  .hero-grid,
  .agency-grid,
  .global-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

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

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 50px;
  }

  .stats {
    flex-direction: column;
  }

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