:root {
  color-scheme: dark;
  --bg: #02050f;
  --bg-soft: #071027;
  --surface: rgba(8, 18, 43, .76);
  --surface-strong: rgba(10, 22, 52, .94);
  --surface-light: rgba(20, 39, 82, .55);
  --line: rgba(112, 221, 255, .18);
  --line-strong: rgba(112, 221, 255, .38);
  --text: #f7f9ff;
  --muted: #a7b4d3;
  --cyan: #62efff;
  --blue: #4797ff;
  --violet: #8f6bff;
  --magenta: #f250e8;
  --green: #72f6c1;
  --danger: #ff849e;
  --radius-lg: 32px;
  --radius-md: 22px;
  --shadow: 0 28px 90px rgba(0, 0, 0, .38);
  --content: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Prompt", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 7%, rgba(20, 181, 255, .16), transparent 26rem),
    radial-gradient(circle at 88% 16%, rgba(213, 58, 255, .13), transparent 27rem),
    radial-gradient(circle at 54% 64%, rgba(64, 86, 255, .08), transparent 34rem),
    linear-gradient(180deg, #02040c 0%, #040a19 44%, #02050f 100%);
  font-size: 16px;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(96, 222, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 222, 255, .025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 72%);
}

body::after {
  content: "";
  position: fixed;
  z-index: -1;
  top: -16rem;
  right: -18rem;
  width: 48rem;
  height: 48rem;
  pointer-events: none;
  border: 1px solid rgba(102, 219, 255, .08);
  border-radius: 50%;
  box-shadow: 0 0 11rem rgba(78, 77, 255, .1), inset 0 0 9rem rgba(238, 57, 255, .04);
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #00111a;
  background: var(--cyan);
  border-radius: 10px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-shell { width: min(var(--content), calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(112, 221, 255, .11);
  background: rgba(2, 6, 17, .78);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
}

.nav-shell { min-height: 78px; display: flex; align-items: center; gap: 24px; }
.brand-link { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 11px; color: var(--text); text-decoration: none; }
.brand-link img { width: 46px; height: 46px; object-fit: contain; filter: drop-shadow(0 0 16px rgba(73, 209, 255, .35)); }
.brand-name { display: grid; line-height: 1.08; }
.brand-name strong { font-size: 1.05rem; letter-spacing: .01em; }
.brand-name span { margin-top: 5px; color: #7990bd; font: 600 .58rem/1.1 "JetBrains Mono", monospace; letter-spacing: .15em; text-transform: uppercase; }

.primary-nav { display: flex; align-items: center; justify-content: center; gap: 4px; margin-left: auto; }
.nav-link,
.nav-dropdown > summary {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 12px;
  color: #cbd5ec;
  font-size: .88rem;
  font-weight: 500;
  text-decoration: none;
  list-style: none;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.nav-dropdown > summary::-webkit-details-marker { display: none; }
.nav-dropdown > summary::after { content: "⌄"; margin-top: -4px; color: #6e86b5; font-size: .9rem; }
.nav-link:hover,
.nav-link:focus-visible,
.nav-dropdown > summary:hover,
.nav-dropdown > summary:focus-visible,
.nav-dropdown[open] > summary { color: white; background: rgba(83, 180, 255, .1); outline: none; }
.nav-link[aria-current="page"] { color: var(--cyan); }
.nav-dropdown { position: relative; }
.nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: min(390px, calc(100vw - 32px));
  padding: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(5, 13, 32, .97);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .55), 0 0 36px rgba(71, 151, 255, .08);
}
.nav-menu a { display: grid; gap: 3px; padding: 11px 12px; border-radius: 12px; text-decoration: none; }
.nav-menu a:hover,
.nav-menu a:focus-visible { background: rgba(98, 239, 255, .08); outline: 1px solid rgba(98, 239, 255, .15); }
.nav-menu strong { font-size: .86rem; }
.nav-menu span { color: #8191b3; font-size: .7rem; line-height: 1.45; }

.account-actions { display: flex; align-items: center; gap: 9px; margin-left: 12px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(120, 216, 255, .28);
  border-radius: 14px;
  color: white;
  background: rgba(9, 24, 54, .62);
  box-shadow: inset 0 1px rgba(255, 255, 255, .04);
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-2px); border-color: rgba(98, 239, 255, .66); background: rgba(16, 37, 78, .86); outline: none; }
.button.primary {
  color: #02101b;
  border-color: transparent;
  background: linear-gradient(120deg, #77f5ff, #58a7ff 58%, #aa7bff);
  box-shadow: 0 12px 32px rgba(58, 166, 255, .22), inset 0 1px rgba(255, 255, 255, .58);
}
.button.primary:hover,
.button.primary:focus-visible { box-shadow: 0 16px 42px rgba(74, 182, 255, .34); }
.button.text { min-height: 40px; padding-inline: 14px; border-color: transparent; background: transparent; color: #c7d1e8; }
.button.arrow::after { content: "↗"; margin-left: 10px; font-size: 1rem; }

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: white;
  background: rgba(12, 27, 59, .7);
}
.mobile-toggle span,
.mobile-toggle::before,
.mobile-toggle::after { content: ""; display: block; width: 20px; height: 2px; margin: 4px auto; border-radius: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.mobile-toggle[aria-expanded="true"] span { opacity: 0; }
.mobile-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.mobile-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

main { position: relative; }
.section { position: relative; padding: clamp(76px, 9vw, 128px) 0; }
.section.compact { padding-block: clamp(54px, 7vw, 88px); }
.section-rule { border-top: 1px solid rgba(118, 208, 255, .1); }
.eyebrow { margin: 0 0 14px; color: var(--cyan); font: 700 .7rem/1.4 "JetBrains Mono", monospace; letter-spacing: .19em; text-transform: uppercase; }
.display-title { max-width: 850px; margin: 0; font-size: clamp(3.2rem, 7.3vw, 7rem); font-weight: 700; line-height: .94; letter-spacing: -.065em; }
.gradient-text { color: transparent; background: linear-gradient(105deg, #fff 8%, #84efff 40%, #63a5ff 68%, #f06fe7); -webkit-background-clip: text; background-clip: text; }
.section-title { max-width: 780px; margin: 0; font-size: clamp(2.1rem, 4.4vw, 4rem); line-height: 1.08; letter-spacing: -.045em; }
.section-lead { max-width: 700px; margin: 20px 0 0; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.18rem); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 38px; }
.section-heading .section-lead { max-width: 480px; margin: 0; }

.hero { min-height: min(850px, calc(100svh - 78px)); display: grid; align-items: center; padding: clamp(76px, 8vw, 118px) 0; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr); align-items: center; gap: clamp(40px, 7vw, 96px); }
.hero-copy { position: relative; z-index: 2; }
.hero-copy .lede { max-width: 650px; margin: 26px 0 0; color: #b0bdd8; font-size: clamp(1.05rem, 1.8vw, 1.28rem); }
.hero-copy .thai-line { display: block; margin-top: 7px; color: #e1e8f8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 30px 0 0; padding: 0; color: #7f91b8; font: 600 .67rem/1.5 "JetBrains Mono", monospace; letter-spacing: .08em; text-transform: uppercase; list-style: none; }
.hero-notes li { display: flex; align-items: center; gap: 8px; }
.hero-notes li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }

.experience-stage { position: relative; isolation: isolate; min-height: 540px; display: grid; place-items: center; }
.experience-stage::before,
.experience-stage::after { content: ""; position: absolute; z-index: -2; border-radius: 50%; }
.experience-stage::before { width: 92%; aspect-ratio: 1; border: 1px solid rgba(89, 211, 255, .18); box-shadow: inset 0 0 80px rgba(70, 134, 255, .09), 0 0 80px rgba(114, 72, 255, .08); }
.experience-stage::after { width: 70%; aspect-ratio: 1; border: 1px dashed rgba(244, 80, 225, .2); animation: spin 30s linear infinite; }
.stage-glow { position: absolute; z-index: -3; width: 78%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(55, 203, 255, .23), rgba(65, 91, 255, .08) 42%, transparent 68%); filter: blur(12px); }
.stage-core { width: min(72%, 360px); aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(124, 224, 255, .3); border-radius: 50%; background: radial-gradient(circle at 36% 28%, rgba(33, 78, 150, .72), rgba(5, 13, 35, .9) 62%); box-shadow: 0 28px 90px rgba(0, 0, 0, .52), inset 0 0 70px rgba(71, 151, 255, .18), 0 0 60px rgba(79, 128, 255, .16); }
.stage-core img { width: 46%; aspect-ratio: 1; object-fit: contain; filter: drop-shadow(0 0 30px rgba(78, 193, 255, .48)); }
.stage-core span { position: absolute; margin-top: 270px; color: #dfe9ff; font: 700 .68rem/1 "JetBrains Mono", monospace; letter-spacing: .2em; text-transform: uppercase; }
.orbit-label { position: absolute; min-width: 132px; padding: 11px 14px; border: 1px solid rgba(105, 217, 255, .22); border-radius: 14px; background: rgba(5, 15, 38, .8); box-shadow: 0 10px 30px rgba(0, 0, 0, .3); color: #dbe6fb; font-size: .75rem; font-weight: 600; text-align: center; backdrop-filter: blur(12px); }
.orbit-label::before { content: ""; position: absolute; top: 50%; width: 40px; height: 1px; background: linear-gradient(90deg, transparent, rgba(98, 239, 255, .5)); }
.orbit-label.one { top: 13%; left: 0; }
.orbit-label.one::before { left: 100%; }
.orbit-label.two { top: 17%; right: -1%; }
.orbit-label.two::before { right: 100%; transform: scaleX(-1); }
.orbit-label.three { bottom: 16%; left: -1%; }
.orbit-label.three::before { left: 100%; }
.orbit-label.four { right: 1%; bottom: 12%; }
.orbit-label.four::before { right: 100%; transform: scaleX(-1); }

.featured-grid { display: grid; grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr); align-items: center; gap: clamp(44px, 8vw, 104px); }
.poster-frame { position: relative; padding: 10px; border: 1px solid rgba(108, 217, 255, .28); border-radius: 35px; background: linear-gradient(145deg, rgba(69, 164, 255, .16), rgba(222, 62, 255, .08)); box-shadow: var(--shadow), 0 0 80px rgba(53, 110, 255, .15); }
.poster-frame::before { content: ""; position: absolute; inset: -1px; z-index: -1; border-radius: inherit; background: linear-gradient(135deg, rgba(98, 239, 255, .58), transparent 28%, transparent 68%, rgba(242, 80, 232, .42)); filter: blur(12px); opacity: .55; }
.poster-frame img { width: 100%; height: auto; border-radius: 26px; object-fit: contain; }
.poster-frame figcaption { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 34px; }
.feature-card,
.product-card,
.solution-card,
.tier-card,
.content-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: linear-gradient(145deg, rgba(13, 28, 62, .72), rgba(4, 11, 28, .82)); box-shadow: inset 0 1px rgba(255, 255, 255, .025); }
.feature-card { min-height: 150px; padding: 22px; }
.feature-card::after,
.product-card::after,
.solution-card::after { content: ""; position: absolute; width: 90px; height: 90px; right: -48px; bottom: -48px; border-radius: 50%; background: var(--card-glow, var(--cyan)); filter: blur(44px); opacity: .18; }
.feature-icon,
.product-icon { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 16px; border: 1px solid rgba(117, 219, 255, .28); border-radius: 13px; color: var(--cyan); background: rgba(39, 108, 186, .17); font: 600 1.2rem/1 sans-serif; box-shadow: inset 0 0 18px rgba(98, 239, 255, .06); }
.feature-card h3,
.product-card h3,
.solution-card h3,
.tier-card h3,
.content-card h2 { margin: 0; font-size: 1.03rem; }
.feature-card p,
.product-card p,
.solution-card p,
.tier-card p,
.content-card p { margin: 8px 0 0; color: #94a4c7; font-size: .84rem; line-height: 1.65; }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 15px; }
.product-card { min-height: 260px; padding: 24px; transition: transform .2s ease, border-color .2s ease; }
.product-card:hover { transform: translateY(-5px); border-color: rgba(98, 239, 255, .38); }
.product-card .product-index { position: absolute; top: 22px; right: 22px; color: #53668f; font: 600 .65rem/1 "JetBrains Mono", monospace; letter-spacing: .15em; }
.product-card .learn-link,
.solution-card .learn-link { position: absolute; bottom: 22px; left: 24px; color: #bcefff; font-size: .78rem; font-weight: 600; text-decoration: none; }
.product-card .learn-link::after,
.solution-card .learn-link::after { content: " →"; }

.solutions-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.solution-card { min-height: 340px; padding: 0 26px 26px; }
.solution-visual { height: 165px; margin: 0 -26px 24px; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 50% 50%, rgba(55, 188, 255, .2), transparent 48%), linear-gradient(135deg, #081632, #050915); }
.solution-visual::before { content: ""; position: absolute; width: 150px; height: 98px; left: 50%; top: 50%; border: 1px solid rgba(119, 226, 255, .45); border-radius: 18px; transform: translate(-50%, -50%) rotate(-5deg); box-shadow: 30px 18px 0 -1px #091632, 30px 18px 0 0 rgba(216, 77, 255, .36), 0 0 38px rgba(73, 160, 255, .19); }
.solution-visual::after { content: ""; position: absolute; width: 52px; height: 52px; left: calc(50% - 26px); top: calc(50% - 26px); border-radius: 50%; background: radial-gradient(circle, var(--cyan) 0 5px, transparent 6px), conic-gradient(from 25deg, var(--cyan), var(--violet), var(--magenta), var(--cyan)); box-shadow: 0 0 24px rgba(98, 239, 255, .42); }
.solution-card:nth-child(2) .solution-visual { background: radial-gradient(circle at 50% 70%, rgba(235, 73, 255, .22), transparent 48%), linear-gradient(135deg, #0b1232, #060816); }
.solution-card:nth-child(3) .solution-visual { background: radial-gradient(circle at 55% 45%, rgba(67, 255, 202, .13), transparent 48%), linear-gradient(135deg, #071a2b, #050915); }

.pricing-teaser { position: relative; overflow: hidden; padding: clamp(34px, 6vw, 70px); border: 1px solid var(--line-strong); border-radius: var(--radius-lg); background: linear-gradient(120deg, rgba(19, 51, 102, .75), rgba(10, 16, 45, .88) 55%, rgba(50, 14, 74, .58)); box-shadow: var(--shadow); }
.pricing-teaser::before { content: ""; position: absolute; width: 450px; height: 450px; top: -310px; right: -80px; border-radius: 50%; border: 1px solid rgba(241, 75, 232, .25); box-shadow: 0 0 90px rgba(158, 82, 255, .18); }
.tier-strip { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; margin: 34px 0; }
.tier-card { min-height: 96px; display: grid; place-items: center; padding: 16px 10px; text-align: center; }
.tier-card h3 { color: transparent; background: linear-gradient(105deg, #fff, #75eaff 55%, #a884ff); -webkit-background-clip: text; background-clip: text; font: 700 .78rem/1 "JetBrains Mono", monospace; letter-spacing: .14em; }

.page-hero { padding: clamp(88px, 10vw, 150px) 0 clamp(58px, 7vw, 90px); text-align: center; }
.page-hero .display-title { max-width: 970px; margin-inline: auto; font-size: clamp(3rem, 6.8vw, 6.4rem); }
.page-hero .section-lead { margin-inline: auto; }
.page-hero .eyebrow { display: inline-block; }
.content-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.content-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.content-card { padding: clamp(24px, 4vw, 38px); }
.content-card.full { grid-column: 1 / -1; }
.content-card ul { margin: 20px 0 0; padding-left: 20px; color: #a7b4d3; }
.content-card li + li { margin-top: 8px; }
.anchor-target { scroll-margin-top: 104px; }
.contact-list { display: grid; gap: 12px; margin-top: 26px; }
.contact-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 16px; background: rgba(8, 20, 46, .6); text-decoration: none; }
.contact-row span { color: #8fa0c3; font-size: .82rem; }
.contact-row strong { text-align: right; overflow-wrap: anywhere; }
.contact-row:hover,
.contact-row:focus-visible { border-color: rgba(98, 239, 255, .48); outline: none; }
.notice { padding: 18px 20px; border-left: 2px solid var(--cyan); border-radius: 0 14px 14px 0; color: #abb9d5; background: rgba(37, 87, 153, .12); }

.site-footer { border-top: 1px solid rgba(112, 221, 255, .12); background: rgba(2, 5, 14, .66); }
.footer-main { display: grid; grid-template-columns: minmax(230px, 1.4fr) repeat(5, minmax(110px, 1fr)); gap: 34px; padding: 62px 0 42px; }
.footer-brand { max-width: 310px; }
.footer-brand .brand-link { margin-bottom: 18px; }
.footer-brand p { margin: 0; color: #8192b7; font-size: .82rem; }
.footer-column h2 { margin: 6px 0 16px; color: #7d90b9; font: 700 .63rem/1 "JetBrains Mono", monospace; letter-spacing: .16em; text-transform: uppercase; }
.footer-column a { display: block; width: fit-content; margin: 10px 0; color: #bec9e0; font-size: .8rem; text-decoration: none; }
.footer-column a:hover,
.footer-column a:focus-visible { color: var(--cyan); outline: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0 28px; border-top: 1px solid rgba(112, 221, 255, .08); color: #65779f; font: 500 .67rem/1.6 "JetBrains Mono", monospace; letter-spacing: .06em; }

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

@media (max-width: 1040px) {
  .nav-shell { flex-wrap: wrap; gap: 12px; }
  .mobile-toggle { display: block; }
  .primary-nav { display: none; order: 3; width: 100%; max-height: calc(100svh - 90px); overflow-y: auto; padding: 8px 0 20px; border-top: 1px solid rgba(112, 221, 255, .1); align-items: stretch; }
  .primary-nav[data-open="true"] { display: grid; }
  .nav-link,
  .nav-dropdown > summary { min-height: 48px; padding-inline: 14px; }
  .nav-dropdown { width: 100%; }
  .nav-menu { position: static; width: 100%; margin: 4px 0 8px; box-shadow: none; }
  .account-actions.desktop { display: none; }
  .account-actions.mobile { display: grid; grid-template-columns: 1fr 1fr; margin: 8px 0 0; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .lede { margin-inline: auto; }
  .hero-actions,
  .hero-notes { justify-content: center; }
  .experience-stage { width: min(620px, 100%); margin-inline: auto; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-main { grid-template-columns: 1.4fr repeat(3, 1fr); }
}

@media (min-width: 1041px) {
  .account-actions.mobile { display: none; }
}

@media (max-width: 800px) {
  .site-shell { width: min(var(--content), calc(100% - 28px)); }
  .section-heading { display: block; }
  .section-heading .section-lead { margin-top: 18px; }
  .featured-grid { grid-template-columns: 1fr; }
  .poster-frame { width: min(480px, 100%); margin-inline: auto; }
  .solutions-grid,
  .content-grid.three { grid-template-columns: 1fr; }
  .tier-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .nav-shell { min-height: 68px; }
  .brand-link img { width: 40px; height: 40px; }
  .brand-name span { display: none; }
  .display-title { font-size: clamp(3.05rem, 16vw, 5rem); }
  .section { padding-block: 72px; }
  .hero { padding-block: 66px 50px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-notes { display: grid; justify-content: start; width: fit-content; margin-inline: auto; text-align: left; }
  .experience-stage { min-height: 420px; }
  .stage-core { width: min(65%, 260px); }
  .stage-core span { margin-top: 210px; font-size: .58rem; }
  .orbit-label { min-width: 105px; padding: 9px 10px; font-size: .64rem; }
  .orbit-label::before { width: 24px; }
  .orbit-label.one { top: 11%; left: 0; }
  .orbit-label.two { top: 15%; right: 0; }
  .orbit-label.three { bottom: 13%; left: 0; }
  .orbit-label.four { right: 0; bottom: 10%; }
  .feature-grid,
  .product-grid,
  .content-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 230px; }
  .tier-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tier-card:last-child { grid-column: 1 / -1; }
  .footer-main { gap: 26px 18px; }
  .footer-bottom { display: grid; }
  .contact-row { display: grid; gap: 4px; }
  .contact-row strong { text-align: left; }
}

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