:root {
  --navy-950: #061238;
  --navy-900: #091844;
  --navy-800: #10245d;
  --blue-700: #0b4edd;
  --blue-600: #0b5cff;
  --blue-500: #2f75ff;
  --blue-100: #eaf1ff;
  --blue-50: #f5f8ff;
  --ink: #0c1838;
  --muted: #667391;
  --line: #dfe6f2;
  --surface: #ffffff;
  --surface-soft: #f6f8fc;
  --teal: #039c9d;
  --orange: #ff681d;
  --purple: #7543dc;
  --green: #13a873;
  --shadow-sm: 0 10px 28px rgba(22, 52, 112, 0.08);
  --shadow-lg: 0 24px 70px rgba(22, 62, 150, 0.15);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1450px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(11, 92, 255, 0.34);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(215, 225, 242, 0.72);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 34px rgba(16, 35, 77, 0.07);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy-950);
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.brand img {
  width: 51px;
  height: 51px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
}

.primary-nav a {
  position: relative;
  color: #1f2b49;
  font-size: 15px;
  font-weight: 650;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.primary-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions,
.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 750;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 19px;
  height: 19px;
  margin-left: 12px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-600), #0648d4);
  box-shadow: 0 12px 28px rgba(11, 92, 255, 0.22);
}

.button-primary:hover {
  box-shadow: 0 16px 34px rgba(11, 92, 255, 0.3);
}

.button-ghost {
  color: var(--navy-950);
  border-color: #6c91f8;
  background: rgba(255, 255, 255, 0.58);
}

.button-soft {
  color: var(--blue-700);
  border-color: #a9bef8;
  background: #fff;
}

.button-white {
  color: var(--blue-700);
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.13);
}

.button-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
}

.button-large {
  min-height: 58px;
  padding-inline: 27px;
  border-radius: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--navy-950);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 45%, rgba(82, 136, 255, 0.1), transparent 27%),
    linear-gradient(180deg, #fff 0%, #f7faff 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: linear-gradient(rgba(29, 88, 192, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(29, 88, 192, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, #000 28%, #000 70%, transparent);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-glow-one {
  right: -180px;
  bottom: -320px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(31, 95, 240, 0.12);
  box-shadow: 0 0 0 70px rgba(31, 95, 240, 0.018), 0 0 0 140px rgba(31, 95, 240, 0.014);
}

.hero-glow-two {
  left: -240px;
  bottom: -420px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(31, 95, 240, 0.1);
  box-shadow: 0 0 0 60px rgba(31, 95, 240, 0.018);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(440px, 0.92fr) minmax(620px, 1.08fr);
  align-items: center;
  gap: 34px;
  min-height: 720px;
  padding-block: 70px 60px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow i {
  width: 24px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(48px, 4.55vw, 76px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.hero h1 em {
  color: var(--blue-600);
  font-style: normal;
}

.hero-copy > p {
  max-width: 620px;
  margin: 27px 0 31px;
  color: #52617e;
  font-size: 19px;
  line-height: 1.72;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #52617e;
  font-size: 13px;
  font-weight: 650;
}

.trust-list svg {
  width: 17px;
  height: 17px;
  padding: 3px;
  color: #fff;
  border-radius: 50%;
  background: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.ecosystem {
  position: relative;
  width: 100%;
  min-height: 590px;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(48, 105, 234, 0.17);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit::before,
.orbit::after {
  position: absolute;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--blue-600);
  box-shadow: 0 0 0 5px rgba(11, 92, 255, 0.09);
}

.orbit-one {
  width: 340px;
  height: 340px;
}

.orbit-one::before {
  top: 11%;
  right: 18%;
}

.orbit-one::after {
  right: 5%;
  bottom: 30%;
}

.orbit-two {
  width: 420px;
  height: 420px;
}

.orbit-two::before {
  top: 38%;
  left: -3px;
}

.orbit-two::after {
  right: 11%;
  bottom: 9%;
}

.orbit-three {
  width: 500px;
  height: 500px;
  border-style: dashed;
}

.orbit-three::before {
  top: 9%;
  left: 20%;
}

.orbit-three::after {
  bottom: 14%;
  left: 12%;
}

.ecosystem-center {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 220px;
  height: 220px;
  place-items: center;
  border: 1px solid rgba(75, 118, 229, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(38, 85, 191, 0.15), inset 0 0 0 16px rgba(244, 248, 255, 0.8);
  transform: translate(-50%, -50%);
}

.ecosystem-center::before,
.ecosystem-center::after {
  position: absolute;
  z-index: -1;
  inset: -18px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(51, 107, 239, 0.26);
  border-radius: 50%;
  opacity: 0;
  animation: radarPulse 3.2s cubic-bezier(0.2, 0.68, 0.35, 1) infinite;
}

.ecosystem-center::before {
  animation-delay: 0s;
}

.ecosystem-center::after {
  animation-delay: 1.6s;
}

.ecosystem-center img {
  position: relative;
  z-index: 2;
  width: 154px;
  height: 154px;
  object-fit: contain;
  filter: drop-shadow(0 11px 17px rgba(12, 68, 185, 0.22));
  transform-origin: center;
  will-change: transform, filter;
  animation: logoHeartbeat 3.2s ease-in-out infinite;
}

.logo-aura {
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38, 105, 255, 0.16), transparent 70%);
  will-change: transform, opacity;
  animation: auraHeartbeat 3.2s ease-in-out infinite;
}

@keyframes logoHeartbeat {
  0%, 12%, 40%, 100% {
    filter: drop-shadow(0 11px 17px rgba(12, 68, 185, 0.22));
    transform: scale(1);
  }
  18% {
    filter: drop-shadow(0 15px 23px rgba(12, 68, 185, 0.34));
    transform: scale(1.055);
  }
  25% {
    transform: scale(1);
  }
  31% {
    filter: drop-shadow(0 13px 20px rgba(12, 68, 185, 0.3));
    transform: scale(1.034);
  }
}

@keyframes auraHeartbeat {
  0%, 12%, 40%, 100% { opacity: 0.72; transform: scale(1); }
  18% { opacity: 1; transform: scale(1.13); }
  25% { opacity: 0.78; transform: scale(1.03); }
  31% { opacity: 0.94; transform: scale(1.09); }
}

@keyframes radarPulse {
  0% { opacity: 0; transform: scale(0.86); }
  8% { opacity: 0.5; }
  78%, 100% { opacity: 0; transform: scale(2.05); }
}

.orbit-product {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 225px;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 16px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.orbit-product:hover {
  border-color: rgba(81, 119, 219, 0.18);
  background: rgba(255, 255, 255, 0.78);
  transform: translateY(-3px);
}

.orbit-product:nth-of-type(n) span:last-child {
  min-width: 0;
}

.orbit-product strong,
.orbit-product small {
  display: block;
}

.orbit-product strong {
  margin-bottom: 2px;
  color: var(--navy-900);
  font-size: 14px;
}

.orbit-product small {
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
}

.product-icon {
  display: grid;
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 11px 30px rgba(26, 60, 133, 0.11), inset 0 0 0 7px rgba(248, 250, 255, 0.86);
}

.product-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.product-icon.blue { color: var(--blue-600); }
.product-icon.navy { color: #083b9b; }
.product-icon.orange { color: var(--orange); }
.product-icon.teal { color: var(--teal); }
.product-icon.purple { color: var(--purple); }

.orbit-panel { top: 8%; left: 4%; flex-direction: row-reverse; text-align: right; }
.orbit-ai { top: 8%; right: -4%; }
.orbit-ads { top: 41%; right: -7%; }
.orbit-hosting { right: 0; bottom: 7%; }
.orbit-backup { bottom: 3%; left: 6%; flex-direction: row-reverse; text-align: right; }
.orbit-makalemun { top: 43%; left: -2%; flex-direction: row-reverse; text-align: right; }

.section {
  padding-block: 104px;
}

.section-heading {
  max-width: 720px;
}

.heading-center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(36px, 3.2vw, 54px);
  font-weight: 830;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.section-heading > p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.solutions {
  background: #fff;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 55px;
}

.solution-card {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  padding: 29px;
  border: 1px solid #e2e8f3;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.solution-card::after {
  position: absolute;
  right: -55px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  content: "";
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.06;
  box-shadow: 0 0 0 26px currentColor;
}

.solution-card:hover {
  border-color: color-mix(in srgb, currentColor 28%, #e2e8f3);
  box-shadow: 0 20px 48px rgba(22, 52, 112, 0.12);
  transform: translateY(-5px);
}

.solution-icon {
  display: grid;
  width: 59px;
  height: 59px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 15px;
  background: color-mix(in srgb, currentColor 6%, white);
}

.solution-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.solution-status {
  position: absolute;
  top: 29px;
  right: 29px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-live { color: #087a54; background: #ddf8ed; }
.status-soon { color: #74400b; background: #fff0d5; }
.status-development { color: #5b35a2; background: #efe7ff; }
.status-planned { color: #48607f; background: #edf1f7; }

.solution-card h3 {
  margin: 23px 0 9px;
  color: var(--navy-950);
  font-size: 21px;
  letter-spacing: -0.025em;
}

.solution-card p {
  max-width: 390px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.solution-card > a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: currentColor;
  font-size: 13px;
  font-weight: 800;
}

.solution-card > a span {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.solution-card > a:hover span {
  transform: translateX(4px);
}

.accent-blue { color: var(--blue-600); }
.accent-indigo { color: #4c59df; }
.accent-orange { color: var(--orange); }
.accent-purple { color: var(--purple); }
.accent-teal { color: var(--teal); }
.accent-navy { color: #083b9b; }

.pricing {
  background: var(--surface-soft);
}

.pricing-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.billing-note {
  display: grid;
  gap: 2px;
  min-width: 210px;
  padding: 16px 19px;
  border: 1px solid #dce4f1;
  border-radius: 12px;
  background: #fff;
  text-align: right;
  box-shadow: var(--shadow-sm);
}

.billing-note strong {
  color: var(--navy-950);
  font-size: 14px;
}

.billing-note span {
  color: var(--muted);
  font-size: 12px;
}

.seat-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 42px 0 20px;
  padding: 12px 14px 12px 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}

.seat-selector[hidden] {
  display: none;
}

.seat-selector > span {
  color: #354463;
  font-size: 13px;
  font-weight: 750;
}

.seat-selector > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.seat-selector button {
  min-width: 45px;
  min-height: 38px;
  padding: 0 13px;
  color: #52617e;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #f2f5fa;
  cursor: pointer;
}

.seat-selector button.is-active {
  color: #fff;
  background: var(--blue-600);
}

.catalog-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 100px;
  margin-top: 32px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.catalog-message[hidden] {
  display: none;
}

.catalog-warning {
  color: #86530d;
  border-color: #f2d7a9;
  background: #fff8eb;
}

.loader {
  width: 19px;
  height: 19px;
  border: 2px solid #d8e2f5;
  border-top-color: var(--blue-600);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
  margin-top: 20px;
}

.price-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 590px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid #dfe6f2;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.price-card.is-featured {
  color: #fff;
  border-color: #173c9e;
  background: linear-gradient(145deg, #0a1b4f 0%, #102d79 58%, #0c52c8 145%);
  box-shadow: 0 25px 60px rgba(21, 64, 166, 0.23);
  transform: translateY(-8px);
}

.popular-label {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 9px;
  color: #173263;
  border-radius: 999px;
  background: #dce9ff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.price-tier {
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.is-featured .price-tier {
  color: #8fbcff;
}

.price-card h3 {
  margin: 10px 0 5px;
  color: var(--navy-950);
  font-size: 28px;
  letter-spacing: -0.035em;
}

.price-card.is-featured h3 {
  color: #fff;
}

.price-audience {
  min-height: 44px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.is-featured .price-audience,
.is-featured .price-meta,
.is-featured .price-features span,
.is-featured .feature-details summary,
.is-featured .feature-group strong,
.is-featured .feature-group li {
  color: #c8d7f6;
}

.price-value {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  min-height: 65px;
  margin: 21px 0 7px;
}

.price-value strong {
  color: var(--navy-950);
  font-size: clamp(34px, 3vw, 46px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.price-card.is-featured .price-value strong {
  color: #fff;
}

.price-value span {
  padding-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
}

.is-featured .price-value span {
  color: #b6c9ee;
}

.price-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 15px;
  margin-bottom: 22px;
  color: #44516d;
  font-size: 12px;
  font-weight: 650;
}

.price-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.price-meta svg,
.price-features svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.price-card.is-featured .price-meta svg,
.price-card.is-featured .price-features svg {
  stroke: #62e7bd;
}

.price-features {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 20px 0;
  border-top: 1px solid #e4e9f2;
  list-style: none;
}

.is-featured .price-features {
  border-color: rgba(255, 255, 255, 0.15);
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
}

.feature-details {
  margin-bottom: 22px;
  border-top: 1px solid #e4e9f2;
  border-bottom: 1px solid #e4e9f2;
}

.is-featured .feature-details {
  border-color: rgba(255, 255, 255, 0.15);
}

.feature-details summary {
  padding: 14px 0;
  color: #354463;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.feature-groups {
  padding: 0 6px 14px 0;
}

.feature-group + .feature-group {
  margin-top: 15px;
}

.feature-group strong {
  display: block;
  margin-bottom: 6px;
  color: #243252;
  font-size: 11px;
  text-transform: uppercase;
}

.feature-group ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 18px;
}

.feature-group li {
  color: #5b6780;
  font-size: 11px;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.price-card.is-featured .button {
  color: var(--blue-700);
  background: #fff;
  box-shadow: none;
}

.catalog-source {
  margin: 12px 0 0;
  color: #8690a4;
  font-size: 10px;
  text-align: center;
}

.is-featured .catalog-source {
  color: #91a9d7;
}

.pricing-footnote {
  max-width: 930px;
  margin: 28px auto 0;
  color: #788398;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.process {
  padding-block: 70px;
  background: #fff;
}

.process-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(490px, 1.22fr) auto;
  align-items: center;
  gap: 45px;
  overflow: hidden;
  padding: 55px;
  color: #fff;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 10%, rgba(73, 145, 255, 0.34), transparent 26%),
    linear-gradient(132deg, #07163f, #0b317d 72%, #0752c6);
  box-shadow: var(--shadow-lg);
}

.process-shell::after {
  position: absolute;
  right: -130px;
  bottom: -310px;
  width: 480px;
  height: 480px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(255, 255, 255, 0.025), 0 0 0 100px rgba(255, 255, 255, 0.018);
}

.eyebrow-light {
  color: #7eb4ff;
}

.process-shell .section-heading,
.process-shell .process-list,
.process-shell .button {
  position: relative;
  z-index: 1;
}

.process-shell .section-heading h2 {
  color: #fff;
  font-size: clamp(30px, 2.6vw, 44px);
}

.process-shell .section-heading p {
  color: #b7c9eb;
  font-size: 14px;
}

.process-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 13px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.process-list li:last-child {
  border-bottom: 0;
}

.process-list > li > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #a7c8ff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 11px;
  font-weight: 800;
}

.process-list strong {
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
}

.process-list p {
  margin: 0;
  color: #b7c9eb;
  font-size: 12px;
}

.support {
  background: #fff;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 55px;
}

.support-grid article {
  position: relative;
  min-height: 295px;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.support-grid article.support-featured {
  color: #fff;
  border-color: #1546ae;
  background: linear-gradient(145deg, #09205a, #0d55d4);
  box-shadow: 0 20px 55px rgba(21, 70, 174, 0.2);
}

.support-number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: #d8e0ee;
  font-size: 35px;
  font-weight: 850;
  line-height: 1;
}

.support-featured .support-number {
  color: rgba(255, 255, 255, 0.2);
}

.support-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--blue-600);
  border-radius: 14px;
  background: var(--blue-100);
}

.support-featured .support-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.support-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.support-grid h3 {
  margin: 23px 0 8px;
  color: var(--navy-950);
  font-size: 20px;
}

.support-featured h3 {
  color: #fff;
}

.support-grid p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.support-featured p {
  color: #c9d9fa;
}

.support-grid a,
.muted-link {
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 800;
}

.support-featured a {
  color: #fff;
}

.muted-link {
  color: #929bad;
}

.contact {
  padding-block: 0 100px;
}

.contact-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 48px 55px;
  color: #fff;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, #0c1c4e, #0a5be9);
  box-shadow: var(--shadow-lg);
}

.contact-shell > div:first-child {
  max-width: 780px;
}

.contact h2 {
  margin: 0;
  font-size: clamp(28px, 2.8vw, 43px);
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.contact p {
  margin: 12px 0 0;
  color: #c9d9fa;
}

.site-footer {
  padding: 64px 0 24px;
  color: #d5def1;
  background: #06112f;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) repeat(3, minmax(150px, 0.5fr));
  gap: 45px;
}

.site-footer .brand {
  color: #fff;
}

.footer-brand p {
  max-width: 420px;
  margin: 18px 0 0;
  color: #93a3c5;
  font-size: 13px;
  line-height: 1.7;
}

.footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid strong {
  margin-bottom: 5px;
  color: #fff;
  font-size: 13px;
}

.footer-grid a:not(.brand) {
  color: #93a3c5;
  font-size: 12px;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 20px;
  color: #7282a6;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 11px;
}

@media (max-width: 1250px) {
  .header-inner { gap: 24px; }
  .hero-grid { grid-template-columns: minmax(400px, 0.9fr) minmax(540px, 1.1fr); }
  .orbit-product { min-width: 190px; }
  .orbit-product small { display: none; }
  .product-icon { flex-basis: 62px; width: 62px; height: 62px; }
  .orbit-panel { left: 1%; }
  .orbit-ai { right: -4%; }
  .orbit-ads { right: -5%; }
  .orbit-hosting { right: 0; }
  .orbit-backup { left: 2%; }
  .orbit-makalemun { left: -4%; }
  .process-shell { grid-template-columns: minmax(270px, 0.8fr) minmax(380px, 1.2fr); }
  .process-shell > .button { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 1040px) {
  .primary-nav { display: none; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .menu-toggle { display: flex; justify-self: end; }
  .primary-nav.is-open {
    position: fixed;
    top: 83px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 18px 24px 28px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-lg);
  }
  .primary-nav.is-open a { padding: 14px 0; border-bottom: 1px solid #edf0f5; }
  .primary-nav.is-open a::after { display: none; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 85px; }
  .hero-copy { max-width: 780px; margin-inline: auto; text-align: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .trust-list { justify-content: center; }
  .ecosystem { max-width: 780px; min-height: 620px; margin: -25px auto 0; }
  .orbit-product small { display: block; }
  .solution-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 760px; margin-inline: auto; }
  .price-card { min-height: auto; }
  .price-card.is-featured { transform: none; }
  .support-grid { grid-template-columns: 1fr; max-width: 760px; margin-inline: auto; }
  .support-grid article { min-height: 245px; }
  .contact-shell { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1.2fr repeat(3, 0.6fr); gap: 28px; }
}

@media (max-width: 900px) {
  .ecosystem {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    min-height: 0;
    margin-top: 30px;
  }
  .orbit,
  .ecosystem-center { display: none; }
  .orbit-product,
  .orbit-panel,
  .orbit-ai,
  .orbit-ads,
  .orbit-hosting,
  .orbit-backup,
  .orbit-makalemun {
    position: static;
    min-width: 0;
    padding: 13px;
    border-color: rgba(81, 119, 219, 0.15);
    background: rgba(255, 255, 255, 0.78);
    flex-direction: row;
    text-align: left;
  }
  .product-icon { flex-basis: 47px; width: 47px; height: 47px; box-shadow: none; }
  .product-icon svg { width: 24px; height: 24px; }
  .orbit-product strong { font-size: 12px; }
  .orbit-product small { display: none; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .header-inner { min-height: 72px; gap: 10px; }
  .brand { font-size: 18px; }
  .brand img { width: 43px; height: 43px; }
  .header-actions .button-ghost { display: none; }
  .header-actions .button-primary { min-height: 42px; padding-inline: 14px; font-size: 12px; }
  .primary-nav.is-open { top: 73px; }
  .hero { min-height: 0; }
  .hero-grid { min-height: 0; padding-block: 68px; }
  .hero h1 { font-size: clamp(41px, 13vw, 61px); }
  .hero-copy > p { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trust-list { gap: 10px 16px; }
  .section { padding-block: 76px; }
  .section-heading h2 { font-size: clamp(33px, 10vw, 45px); }
  .section-heading > p { font-size: 15px; }
  .solution-grid { grid-template-columns: 1fr; margin-top: 38px; }
  .solution-card { min-height: 260px; }
  .pricing-heading { align-items: flex-start; flex-direction: column; }
  .billing-note { width: 100%; text-align: left; }
  .seat-selector { align-items: flex-start; flex-direction: column; }
  .seat-selector > div { width: 100%; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .seat-selector button { min-width: 0; padding-inline: 7px; font-size: 11px; }
  .price-card { padding: 24px; }
  .process { padding-block: 50px; }
  .process-shell { grid-template-columns: 1fr; gap: 25px; padding: 35px 25px; }
  .process-shell > .button { grid-column: auto; width: 100%; }
  .support-grid { margin-top: 38px; }
  .contact { padding-bottom: 70px; }
  .contact-shell { padding: 35px 25px; }
  .contact-actions { width: 100%; align-items: stretch; flex-direction: column; }
  .contact-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 430px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .header-actions .button-primary { padding-inline: 11px; }
  .menu-toggle { width: 40px; height: 40px; }
  .hero-grid { padding-top: 55px; }
  .hero h1 { font-size: 39px; }
  .ecosystem { grid-template-columns: 1fr; }
  .solution-card { padding: 23px; }
  .solution-status { top: 23px; right: 23px; }
  .price-card { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
