/* ==========================================================================
   4UHosting framework stylesheet
   Source reference: current homepage design and approved legacy CSS.
   Foundations and reusable components are defined first.
   Page composition, site chrome, motion and responsive rules follow.
   ========================================================================== */

/* 1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  --color-navy: #031d37;
  --color-navy-deep: #031629;
  --color-navy-soft: #063d70;
  --color-blue: #075dac;
  --color-blue-mid: #075d9e;
  --color-blue-bright: #0879b5;
  --color-electric: #087cff;
  --color-cyan: #18d3df;
  --color-cyan-soft: #8eefff;
  --color-green: #0aa884;
  --color-green-dark: #03463d;
  --color-green-mid: #087762;
  --color-orange: #ffb444;

  --color-ink: #10243a;
  --color-muted: #5f7184;
  --color-muted-light: #9babb9;
  --color-muted-on-dark: rgba(255, 255, 255, .8);
  --color-paper: #f7f9fc;
  --color-paper-blue: #edf3f7;
  --color-white: #fff;
  --color-black: #000;
  --color-line: #dfe8f0;
  --color-line-blue: #dbe7f1;

  --font-body: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1280px;
  --gutter: 40px;

  --space-1: 6px;
  --space-2: 10px;
  --space-3: 14px;
  --space-4: 18px;
  --space-5: 24px;
  --space-6: 30px;
  --space-7: 42px;
  --space-8: 56px;
  --space-9: 72px;
  --space-10: 96px;
  --section-y: clamp(90px, 10vw, 150px);
  --section-y-compact: clamp(70px, 8vw, 110px);
  --section-y-spacious: clamp(110px, 12vw, 170px);
  --anchor-offset: 132px;

  --radius-xs: 12px;
  --radius-sm: 16px;
  --radius-16: var(--radius-sm);
  --radius-md: 20px;
  --radius-20: var(--radius-md);
  --radius-lg: 28px;
  --radius-xl: 34px;
  --radius-pill: 100px;
  --radius-circle: 50%;

  --shadow-soft: 0 16px 40px rgba(3, 29, 55, .08);
  --shadow-card: 0 24px 55px rgba(3, 29, 55, .12);
  --shadow-section: 0 24px 70px rgba(3, 29, 55, .13);
  --shadow-blue: 0 28px 70px rgba(3, 69, 133, .24);
  --shadow-button: 0 17px 35px rgba(8, 124, 255, .25);
  --shadow-cyan: 0 17px 38px rgba(24, 211, 223, .3);
  --ring-light-line: rgba(8, 124, 255, .14);
  --ring-light-fill-1: rgba(8, 124, 255, .018);
  --ring-light-fill-2: rgba(8, 124, 255, .01);
  --ring-dark-line: rgba(24, 211, 223, .2);
  --ring-dark-fill-1: rgba(24, 211, 223, .05);
  --ring-dark-fill-2: rgba(24, 211, 223, .024);
  --ring-white-line: rgba(255, 255, 255, .15);
  --ring-white-fill-1: rgba(255, 255, 255, .025);
  --ring-white-fill-2: rgba(255, 255, 255, .015);

  --duration-fast: .25s;
  --duration-standard: .3s;
  --duration-slow: .45s;
  --ease-standard: cubic-bezier(.2, .8, .2, 1);

  /* Shared blue surfaces: reusable sections, cards, actions and site chrome. */
  --gradient-blue-deep: linear-gradient(135deg, var(--color-navy), var(--color-blue));
  --gradient-hero-home: var(--gradient-blue-deep);
  --gradient-hero-hosting: var(--gradient-blue-deep);
  --gradient-hero-wordpress: var(--gradient-blue-deep);
  --gradient-hero-cloud: var(--gradient-blue-deep);
  --gradient-hero-domains: var(--gradient-blue-deep);
  --gradient-blue-panel: linear-gradient(145deg, var(--color-navy), var(--color-blue));
  --gradient-blue-panel-soft: linear-gradient(145deg, var(--color-navy-soft), var(--color-blue-bright));
  --gradient-blue-card: linear-gradient(135deg, var(--color-navy-soft), var(--color-blue-mid) 58%, var(--color-blue-bright));
  --gradient-blue-radial: radial-gradient(circle at 85% 15%, rgba(24, 211, 223, .17), transparent 25%), linear-gradient(135deg, var(--color-navy), #064c87);
  --gradient-blue-action: linear-gradient(145deg, var(--color-blue), var(--color-electric));
  --gradient-blue-action-deep: linear-gradient(145deg, var(--color-electric), #054b91);
  --gradient-blue-vivid: linear-gradient(145deg, #0a4c83, #126fc2);
  --gradient-blue-accent-line: linear-gradient(135deg, #07477f, #0872c9 62%, #0a8dc9);
  --gradient-blue-showcase: radial-gradient(circle at 15% 30%, rgba(24, 211, 223, .16), transparent 28%), linear-gradient(135deg, var(--color-blue), #084787 55%, var(--color-navy));
  --gradient-blue-nav: linear-gradient(145deg, var(--color-navy), var(--color-blue-mid) 62%, var(--color-blue-bright));
  --gradient-blue-footer: linear-gradient(145deg, #062744, #031827);
  --gradient-green: linear-gradient(135deg, var(--color-green-dark), var(--color-green-mid) 58%, #0b9277);
  --gradient-cyan-button: linear-gradient(135deg, #63f5ff, var(--color-cyan));
}

/* 2. Reset and base styles
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

[id] {
  scroll-margin-top: var(--anchor-offset);
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-paper);
  font: 400 16px/1.65 var(--font-body);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--color-orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -100px;
  left: 20px;
  padding: 10px 15px;
  color: var(--color-navy);
  background: var(--color-white);
  border-radius: var(--radius-xs);
}

.skip-link:focus {
  top: 20px;
}

/* 3. Typography
   -------------------------------------------------------------------------- */
h1,
h2,
h3 {
  color: var(--color-navy);
  font-family: var(--font-heading);
  line-height: 1.08;
}

h1 {
  font-size: clamp(44px, 5vw, 66px);
  letter-spacing: -.045em;
}

h2 {
  font-size: clamp(38px, 5vw, 68px);
  letter-spacing: -.045em;
}

h3 {
  font-size: 23px;
  letter-spacing: 0;
}

p {
  color: var(--color-muted);
  font-size: 16px;
}

.text-lead {
  font-size: 18px;
  line-height: 1.75;
}

.section-tag,
.mini-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--color-electric);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.light-tag,
.section-tag--light,
.eyebrow--light {
  color: var(--color-cyan-soft);
}

.mini-label {
  margin-bottom: 0;
  font-size: 11px;
  letter-spacing: .14em;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 65px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 10px;
}

.section-heading p {
  color: var(--color-electric);
  font-size: 17px;
  font-weight: 600;
}

.section-heading--light h2 {
  color: var(--color-white);
}

.section-heading--light p {
  color: rgba(255, 255, 255, .72);
}

.section-heading--compact {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading--compact h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 3.4vw, 46px);
}

/* 4. Layout primitives
   -------------------------------------------------------------------------- */
.container {
  width: min(var(--container), calc(100% - var(--gutter)));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: var(--section-y) 0;
}

.section--compact {
  padding-block: var(--section-y-compact);
}

.section--spacious {
  padding-block: var(--section-y-spacious);
}

.grid {
  display: grid;
  gap: var(--space-5);
}

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

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

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

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(42px, 6vw, 70px);
}

.sticky-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 90px;
}

.sticky-split__aside {
  position: sticky;
  top: 150px;
  align-self: start;
}

.staggered-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.staggered-card-grid > :nth-child(even) {
  --hover-base-y: 55px;
}

.hover-lift {
  --hover-base-x: 0px;
  --hover-base-y: 0px;
  --hover-x: 0px;
  --hover-y: -8px;
  transform: translate(var(--hover-base-x), var(--hover-base-y));
  transition: transform var(--duration-slow) var(--ease-standard);
}

.hover-lift.reveal.is-visible {
  transform: translate(var(--hover-base-x), var(--hover-base-y));
}

.staggered-card-grid > .hover-lift:nth-child(even),
.staggered-card-grid > .hover-lift.reveal.is-visible:nth-child(even) {
  transform: translate(var(--hover-base-x), var(--hover-base-y));
}

.hover-lift:hover,
.hover-lift.reveal.is-visible:hover,
.staggered-card-grid > .hover-lift.reveal.is-visible:hover {
  transform: translate(calc(var(--hover-base-x) + var(--hover-x)), calc(var(--hover-base-y) + var(--hover-y)));
}

.hover-lift--sm {
  --hover-y: -6px;
}

.hover-lift--md {
  --hover-y: -7px;
}

.hover-lift--lg {
  --hover-y: -10px;
}

@media (max-width: 1024px) {
  .sticky-split {
    grid-template-columns: 1fr;
  }

  .sticky-split__aside {
    position: static;
    text-align: center;
  }

  .staggered-card-grid {
    max-width: 760px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .section-angle {
    --section-angle-size: 44px;
  }

  .sticky-split {
    gap: 45px;
  }

  .staggered-card-grid {
    grid-template-columns: 1fr;
  }

  .staggered-card-grid--checker > :nth-child(1) {
    order: 1;
  }

  .staggered-card-grid--checker > :nth-child(2) {
    order: 2;
  }

  .staggered-card-grid--checker > :nth-child(3) {
    order: 4;
  }

  .staggered-card-grid--checker > :nth-child(4) {
    order: 3;
  }

  .staggered-card-grid--checker > :nth-child(5) {
    order: 5;
  }

  .staggered-card-grid--checker > :nth-child(6) {
    order: 6;
  }

  .hover-lift,
  .staggered-card-grid > .hover-lift:nth-child(even),
  .staggered-card-grid > .hover-lift.reveal.is-visible:nth-child(even),
  .hover-lift:hover,
  .hover-lift.reveal.is-visible:hover,
  .staggered-card-grid > .hover-lift.reveal.is-visible:hover {
    transform: none;
  }
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

/* 5. Section surfaces and transitions
   -------------------------------------------------------------------------- */
.section--paper,
.surface--paper {
  background: var(--color-paper);
}

.section--white,
.surface--white {
  background: var(--color-white);
}

.section--blue,
.surface--blue {
  color: var(--color-white);
  background: var(--gradient-blue-deep);
}

.section--blue-radial {
  color: var(--color-white);
  background: var(--gradient-blue-radial);
}

.section--green,
.surface--green {
  color: var(--color-white);
  background: var(--gradient-green);
}

.section--after-hero-no-banner {
  padding-top: 85px;
}

.edge-to-white {
  --section-next-bg: var(--color-white);
}

.edge-to-paper {
  --section-next-bg: var(--color-paper);
}

.edge-to-paper-blue {
  --section-next-bg: var(--color-paper-blue);
}

.edge-to-blue {
  --section-next-bg: var(--gradient-blue-deep);
}

.edge-to-blue-radial {
  --section-next-bg: var(--gradient-blue-radial);
}

.edge-to-green {
  --section-next-bg: var(--gradient-green);
}

.edge-to-footer {
  --section-next-bg: var(--color-navy);
}

.edge-from-white {
  --section-prev-bg: var(--color-white);
}

.edge-from-paper {
  --section-prev-bg: var(--color-paper);
}

.edge-from-paper-blue {
  --section-prev-bg: var(--color-paper-blue);
}

.edge-from-blue {
  --section-prev-bg: var(--gradient-blue-deep);
}

.edge-from-blue-radial {
  --section-prev-bg: var(--gradient-blue-radial);
}

.edge-from-green {
  --section-prev-bg: var(--gradient-green);
}

.edge-from-footer {
  --section-prev-bg: var(--color-navy);
}

.section-edge {
  position: absolute;
  z-index: 4;
  left: -1px;
  right: -1px;
  pointer-events: none;
}

.section-angle {
  --section-angle-size: 72px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.section-angle > .container {
  position: relative;
  z-index: 2;
}

.section-angle.section-angle--top,
.section-angle.section-angle--both {
  padding-top: calc(var(--section-y) + var(--section-angle-size));
}

.section-angle.section-angle--bottom,
.section-angle.section-angle--both {
  padding-bottom: calc(var(--section-y) + var(--section-angle-size));
}

.section-angle--overlap-top {
  margin-top: calc(var(--section-angle-size) * -1);
}

.section-angle--top-fill > .section-edge--top {
  top: calc(var(--section-angle-size) * -1);
  height: calc(var(--section-angle-size) + 2px);
  background: inherit;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.section-angle--self.section-angle--top {
  clip-path: polygon(0 var(--section-angle-size), 100% 0, 100% 100%, 0 100%);
  will-change: clip-path;
}

.section-angle--self.section-angle--bottom {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--section-angle-size)), 0 100%);
  will-change: clip-path;
}

.section-angle--self.section-angle--both {
  clip-path: polygon(0 var(--section-angle-size), 100% 0, 100% calc(100% - var(--section-angle-size)), 0 100%);
  will-change: clip-path;
}

.section-angle--self.section-angle--top:not(.section-angle--top-fill) > .section-edge--top,
.section-angle--self.section-angle--both:not(.section-angle--top-fill) > .section-edge--top,
.section-angle--self.section-angle--bottom > .section-edge--bottom,
.section-angle--self.section-angle--both > .section-edge--bottom {
  display: none;
}

.section-angle > .section-edge--top,
.section-angle > .section-edge--bottom {
  height: calc(var(--section-angle-size) + 2px);
}

.section-angle > .section-edge--top {
  top: -1px;
  background: var(--section-prev-bg, var(--color-white));
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.section-angle > .section-edge--bottom {
  bottom: -1px;
  background: var(--section-next-bg, var(--color-white));
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.section-curve {
  --section-curve-size: 95px;
  position: relative;
  overflow: hidden;
}

.section-curve > .container {
  position: relative;
  z-index: 2;
}

.section-curve.section-curve--top-concave,
.section-curve.section-curve--top-convex,
.section-curve.section-curve--both-concave,
.section-curve.section-curve--both-convex {
  padding-top: calc(var(--section-y) + var(--section-curve-size) / 2);
}

.section-curve.section-curve--bottom-concave,
.section-curve.section-curve--bottom-convex,
.section-curve.section-curve--both-concave,
.section-curve.section-curve--both-convex {
  padding-bottom: calc(var(--section-y) + var(--section-curve-size) / 2);
}

.section-curve--top-concave > .section-edge--top,
.section-curve--top-convex > .section-edge--top,
.section-curve--bottom-concave > .section-edge--bottom,
.section-curve--bottom-convex > .section-edge--bottom,
.section-curve--both-concave > .section-edge,
.section-curve--both-convex > .section-edge {
  height: var(--section-curve-size);
}

.section-curve--top-concave > .section-edge--top,
.section-curve--top-convex > .section-edge--top,
.section-curve--both-concave > .section-edge--top,
.section-curve--both-convex > .section-edge--top {
  top: -1px;
}

.section-curve--bottom-concave > .section-edge--bottom,
.section-curve--bottom-convex > .section-edge--bottom,
.section-curve--both-concave > .section-edge--bottom,
.section-curve--both-convex > .section-edge--bottom {
  bottom: -1px;
}

.section-curve--top-concave > .section-edge--top,
.section-curve--both-concave > .section-edge--top {
  background: var(--section-prev-bg, var(--color-white));
  clip-path: ellipse(58% 72% at 50% 0);
}

.section-curve--bottom-concave > .section-edge--bottom,
.section-curve--both-concave > .section-edge--bottom {
  background: var(--section-next-bg, var(--color-white));
  clip-path: ellipse(58% 72% at 50% 100%);
}

.section-curve--top-convex,
.section-curve--bottom-convex,
.section-curve--both-convex {
  overflow: visible;
}

.section-curve--top-convex > .section-edge--top,
.section-curve--both-convex > .section-edge--top {
  top: calc(var(--section-curve-size) / -2);
  background: inherit;
  clip-path: ellipse(58% 72% at 50% 100%);
}

.section-curve--bottom-convex > .section-edge--bottom,
.section-curve--both-convex > .section-edge--bottom {
  bottom: calc(var(--section-curve-size) / -2);
  background: inherit;
  clip-path: ellipse(58% 72% at 50% 0);
}

/* 6. Decorative artifacts
   -------------------------------------------------------------------------- */
.cta-banner::after,
.callout-panel::after,
.tabbed-panel__intro::after,
.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: var(--halo-size, 560px);
  height: var(--halo-size, 560px);
  inset: var(--halo-top, auto) var(--halo-right, auto) var(--halo-bottom, auto) var(--halo-left, auto);
  border: 1px solid var(--halo-border, rgba(24, 211, 223, .2));
  border-radius: var(--radius-circle);
  box-shadow: var(--halo-shadow, 0 0 0 70px rgba(24, 211, 223, .07), 0 0 0 140px rgba(24, 211, 223, .035));
  pointer-events: none;
}

.section-ring {
  position: absolute;
  z-index: 0;
  --ring-size: 560px;
  --ring-fill-size-1: 72px;
  --ring-fill-size-2: 144px;
  width: var(--ring-size);
  height: var(--ring-size);
  inset: var(--ring-top, auto) var(--ring-right, auto) var(--ring-bottom, auto) var(--ring-left, auto);
  border: 1px solid var(--ring-line, var(--ring-light-line));
  border-radius: var(--radius-circle);
  pointer-events: none;
}

.section-ring::before,
.section-ring::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.section-ring--thin::before,
.section-ring--thin::after {
  border: 1px solid var(--ring-inner-line, rgba(8, 124, 255, .12));
}

.section-ring--thin::before {
  inset: var(--ring-inner-1, 55px);
}

.section-ring--thin::after {
  inset: var(--ring-inner-2, 115px);
}

.section-ring--shaded {
  border-color: var(--ring-line);
  box-shadow: 0 0 0 var(--ring-fill-size-1, 72px) var(--ring-fill-1), 0 0 0 var(--ring-fill-size-2, 144px) var(--ring-fill-2);
}

.section-ring--shaded::before,
.section-ring--shaded::after {
  display: none;
}

.section-ring--behind {
  z-index: -1;
}

.section-ring--on-light,
.section-ring--on-paper {
  --ring-line: var(--ring-light-line);
  --ring-inner-line: rgba(8, 124, 255, .12);
  --ring-fill-1: var(--ring-light-fill-1);
  --ring-fill-2: var(--ring-light-fill-2);
}

.section-ring--on-dark {
  --ring-line: var(--ring-dark-line);
  --ring-inner-line: rgba(24, 211, 223, .14);
  --ring-fill-1: var(--ring-dark-fill-1);
  --ring-fill-2: var(--ring-dark-fill-2);
}

.section-ring--on-green-white {
  --ring-line: var(--ring-white-line);
  --ring-inner-line: rgba(255, 255, 255, .12);
  --ring-fill-1: var(--ring-white-fill-1);
  --ring-fill-2: var(--ring-white-fill-2);
}

.section-ring--lg {
  --ring-size: 640px;
  --ring-fill-size-1: 82px;
  --ring-fill-size-2: 164px;
}

.section-ring--top-left {
  --ring-top: -300px;
  --ring-left: -360px;
}

.section-ring--top-right {
  --ring-top: -300px;
  --ring-right: -360px;
}

.section-ring--bottom-left {
  --ring-bottom: -260px;
  --ring-left: -330px;
}

.section-ring--bottom-right {
  --ring-right: -330px;
  --ring-bottom: -260px;
}

.section-ring--thin.section-ring--top-left {
  --ring-top: -220px;
  --ring-left: -280px;
}

.section-ring--thin.section-ring--top-right {
  --ring-top: -220px;
  --ring-right: -280px;
}

.section-ring--thin.section-ring--bottom-left {
  --ring-bottom: -220px;
  --ring-left: -280px;
}

.section-ring--thin.section-ring--bottom-right {
  --ring-right: -280px;
  --ring-bottom: -220px;
}

.section-ring--left-center {
  --ring-left: -320px;
  --ring-top: 50%;
  transform: translateY(-50%);
}

.section-ring--right-center {
  --ring-right: -320px;
  --ring-top: 50%;
  transform: translateY(-50%);
}

.section-ring--left-upper {
  --ring-left: -335px;
  --ring-top: 12%;
}

.section-ring--right-upper {
  --ring-right: -350px;
  --ring-top: 10%;
}

.section-ring--left-lower {
  --ring-left: -320px;
  --ring-bottom: 12%;
}

.section-ring--right-lower {
  --ring-right: -320px;
  --ring-bottom: 12%;
}

.section-ring--left-bottom {
  --ring-left: -335px;
  --ring-bottom: 4%;
}

.section-ring--right-bottom {
  --ring-right: -335px;
  --ring-bottom: 4%;
}

.section-ring--bottom-center {
  --ring-left: 50%;
  --ring-bottom: -360px;
  transform: translateX(-50%);
}

.section-ring--overlap-angled {
  --ring-angle-overlap: 72px;
}

.section-ring--bottom-left.section-ring--overlap-angled {
  --ring-bottom: calc((var(--ring-size, 560px) / -2) - var(--ring-angle-overlap));
}

.section-ring--bottom-right.section-ring--overlap-angled {
  --ring-bottom: calc((var(--ring-size, 560px) / -2) - var(--ring-angle-overlap));
}

.section-ring--top-left.section-ring--overlap-angled {
  --ring-top: calc((var(--ring-size, 560px) / -2) - var(--ring-angle-overlap));
}

.section-ring--top-right.section-ring--overlap-angled {
  --ring-top: calc((var(--ring-size, 560px) / -2) - var(--ring-angle-overlap));
}

.orbit-stack {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.orbit-stack span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--orbit-stack-size);
  aspect-ratio: 1;
  border: 1px solid var(--orbit-stack-border, rgba(24, 211, 223, .25));
  border-radius: var(--radius-circle);
  transform: translate(-50%, -50%);
}

.orbit-stack--lg span:nth-child(1) {
  --orbit-stack-size: 190px;
}

.orbit-stack--lg span:nth-child(2) {
  --orbit-stack-size: 285px;
}

.orbit-stack--lg span:nth-child(3) {
  --orbit-stack-size: 380px;
}

.decor-glow,
.hero-ambient-glow,
.testimonial-glow {
  position: absolute;
  border-radius: var(--radius-circle);
  pointer-events: none;
}

.transition-dots {
  display: none;
}

/* 7. Buttons and links
   -------------------------------------------------------------------------- */
.button {
  --button-icon-bg: rgba(255, 255, 255, .22);
  --button-icon-color: currentColor;
  --button-icon-hover-bg: var(--color-cyan);
  --button-icon-hover-color: var(--color-navy);
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 23px;
  border: 0;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: transform var(--duration-fast), box-shadow var(--duration-fast), background var(--duration-fast), color var(--duration-fast);
}

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

.button i {
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--button-icon-color);
  background: var(--button-icon-bg);
  border-radius: var(--radius-circle);
  transition: transform var(--duration-standard), background var(--duration-standard), color var(--duration-standard);
}

.button:hover i {
  color: var(--button-icon-hover-color);
  background: var(--button-icon-hover-bg);
  transform: rotate(-7deg) scale(1.06);
}

.button--primary,
.button--blue {
  color: var(--color-white);
  background: var(--color-electric);
  box-shadow: var(--shadow-button);
}

.button--warm {
  --button-icon-hover-bg: var(--color-navy);
  --button-icon-hover-color: var(--color-white);
  color: var(--color-navy);
  background: var(--gradient-cyan-button);
  box-shadow: var(--shadow-cyan);
}

.button--small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 12px;
}

.button--block {
  width: 100%;
}

.button--split {
  justify-content: space-between;
}

@media (max-width: 768px) {
  .button--mobile-block {
    width: 100%;
  }
}

.button--outline-dark {
  color: #ecfbff;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(24, 211, 223, .32);
  box-shadow: none;
}

.button--outline-dark:hover {
  border-color: rgba(24, 211, 223, .75);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .24);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-electric);
  font-weight: 700;
}

.text-link--light {
  color: var(--color-white);
}

.text-link i {
  transition: transform var(--duration-standard), color var(--duration-standard);
}

.text-link--circle {
  gap: 13px;
}

.text-link--circle i {
  flex: 0 0 31px;
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  color: var(--color-cyan);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius-circle);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .1);
  transition: transform var(--duration-standard), background var(--duration-standard), color var(--duration-standard), border-color var(--duration-standard);
}

.text-link:hover i {
  transform: translate(3px, -2px) rotate(-8deg);
}

.text-link--circle:hover i {
  color: var(--color-navy);
  background: var(--color-cyan);
  border-color: rgba(24, 211, 223, .7);
  transform: translateX(3px) rotate(-7deg) scale(1.06);
}

.action-row {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* 8. Icons
   -------------------------------------------------------------------------- */
.icon-circle,
.icon-placeholder,
.small-icon {
  display: grid;
  place-items: center;
  color: var(--color-white);
  background: var(--gradient-blue-action-deep);
  box-shadow: 0 15px 28px rgba(8, 124, 255, .24);
}

.icon-circle,
.small-icon,
.circular-placeholder {
  border-radius: var(--radius-circle);
}

.icon-placeholder {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  transform: rotate(-5deg);
  transition: var(--duration-slow);
}

.icon-placeholder i {
  font-size: 27px;
}

.icon-placeholder small {
  display: none;
}

.icon-placeholder.circular-placeholder {
  position: relative;
  width: 82px;
  height: 82px;
  border: 1px dashed rgba(255, 255, 255, .5);
  border-radius: var(--radius-circle);
  background: var(--gradient-blue-vivid);
  box-shadow: 0 12px 25px rgba(3, 29, 55, .16);
  transform: none;
}

.icon-placeholder.circular-placeholder::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-circle);
}

.icon-placeholder.circular-placeholder i {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  font-size: 25px;
}

.small-icon {
  width: 62px;
  height: 62px;
  background: var(--gradient-blue-action);
  box-shadow: 0 12px 25px rgba(8, 124, 255, .2);
}

.small-icon i {
  font-size: 21px;
}

.icon-circle--cyan {
  color: var(--color-navy);
  background: var(--color-cyan);
  box-shadow: none;
}

.icon-circle--soft {
  color: var(--color-electric);
  background: #eaf6fc;
  box-shadow: none;
}

/* 9. Cards
   -------------------------------------------------------------------------- */
.card,
.feature-card,
.feature-list-card,
.green-card {
  position: relative;
  border-radius: var(--radius-lg);
}

.card,
.feature-card {
  background: var(--color-white);
  border: 1px solid var(--color-line-blue);
  box-shadow: var(--shadow-soft);
}

.card {
  padding: 30px;
}

.card--feature {
  min-height: 300px;
  padding: 34px;
  overflow: hidden;
}

.card--feature > * {
  position: relative;
  z-index: 2;
}

.top-accent {
  --top-accent-gradient: linear-gradient(90deg, var(--color-electric), var(--color-cyan));
  --top-accent-height: 4px;
  position: relative;
  overflow: hidden;
}

.top-accent::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  height: var(--top-accent-height);
  background: var(--top-accent-gradient);
  pointer-events: none;
  transition: opacity var(--duration-slow);
}

.top-accent--left {
  --top-accent-gradient: linear-gradient(90deg, var(--color-electric), var(--color-cyan));
}

.top-accent--right {
  --top-accent-gradient: linear-gradient(90deg, var(--color-cyan), var(--color-electric));
}

.top-accent--thick {
  --top-accent-height: 7px;
}

.card--faint {
  background: var(--color-white);
  border-color: var(--color-line-blue);
}

.card--interactive,
.card--dark-feature,
.card--glass,
.card--icon-feature,
.card--horizontal-glass,
.feature-card,
.feature-list-card,
.green-card {
  transition: transform var(--duration-slow) var(--ease-standard), box-shadow var(--duration-slow) var(--ease-standard), background var(--duration-slow) var(--ease-standard), border-color var(--duration-slow) var(--ease-standard), color var(--duration-slow) var(--ease-standard);
}

.card,
.feature-card,
.feature-list-card,
.option-card,
.support-card,
.timeline-point {
  --component-icon-hover-color: var(--color-navy);
  --component-icon-hover-bg: var(--color-cyan);
  --component-icon-hover-shadow: none;
  --component-icon-hover-transform: rotate(-7deg) scale(1.06);
}

.card:hover .card__icon,
.feature-card:hover .icon-placeholder,
.feature-list-card:hover .small-icon,
.option-card:hover .card__icon,
.support-card:hover .card__icon,
.timeline-point:hover .timeline-copy h3 i {
  color: var(--component-icon-hover-color);
  background: var(--component-icon-hover-bg);
  box-shadow: var(--component-icon-hover-shadow);
  transform: var(--component-icon-hover-transform);
}

.card--interactive:hover {
  box-shadow: var(--shadow-card);
}

.card--dark,
.card--cta {
  color: var(--color-white);
  background: var(--gradient-blue-card);
  border-color: transparent;
}

.card--dark h3 {
  color: var(--color-white);
}

.card__icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 45px;
  color: var(--color-white);
  background: var(--gradient-blue-action);
  border-radius: var(--radius-circle);
  box-shadow: 0 14px 28px rgba(8, 124, 255, .2);
  font-size: 21px;
}

.card--feature h3 {
  font-size: 21px;
}

.card--feature p {
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.7;
}

.card--compact-feature {
  padding: 29px;
  border-radius: 25px;
  overflow: hidden;
}

.card--soft-utility {
  background: var(--color-paper-blue);
  border-color: var(--color-line-blue);
  box-shadow: none;
}

.card--soft-utility:hover {
  background: var(--color-white);
  border-color: #b9d8ec;
  box-shadow: 0 24px 55px rgba(3, 29, 55, .1);
}

.card--compact-feature .card__icon {
  width: 55px;
  height: 55px;
  margin-bottom: 27px;
  background: #07538f;
  box-shadow: none;
  font-size: 20px;
}

.card--compact-feature h3 {
  font-size: 20px;
}

.card--compact-feature p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.65;
}

.card--icon-feature {
  padding: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.card--icon-feature .card__icon {
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  background: var(--gradient-blue-action);
  box-shadow: var(--shadow-button);
  font-size: 20px;
}

.card--icon-feature h3 {
  font-size: 22px;
}

.card--icon-feature p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.7;
}

.card--horizontal {
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 16px;
  align-items: start;
  min-height: 0;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 28px rgba(3, 29, 55, .045);
}

.card--horizontal .card__icon {
  grid-row: 1 / 3;
  width: 46px;
  height: 46px;
  margin-bottom: 0;
  font-size: 16px;
}

.card--horizontal h3 {
  align-self: center;
  margin-bottom: 7px;
  font-size: 18px;
}

.card--horizontal p {
  grid-column: 2;
  font-size: 14px;
  line-height: 1.58;
}

.card--horizontal-glass {
  grid-template-columns: 58px 1fr;
  column-gap: 18px;
  padding: 28px;
  color: var(--color-white);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .14);
  box-shadow: none;
}

.card--horizontal-glass .card__icon {
  width: 58px;
  height: 58px;
  color: var(--color-white);
  background: var(--gradient-blue-action);
  box-shadow: var(--shadow-button-blue);
}

.card--horizontal-glass h3 {
  margin-bottom: 10px;
  color: var(--color-white);
  font-size: 22px;
}

.card--horizontal-glass p {
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  line-height: 1.7;
}

.card--dark-feature {
  padding: 32px;
  color: var(--color-white);
  background: var(--gradient-blue-card);
  border-color: rgba(255, 255, 255, .08);
  box-shadow: 0 22px 48px rgba(3, 61, 112, .17);
}

.card--dark-feature:hover {
  box-shadow: 0 30px 62px rgba(3, 61, 112, .23);
}

.card--dark-feature .card__icon {
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
}

.card--dark-feature h3 {
  color: var(--color-white);
  font-size: 22px;
}

.card--dark-feature p {
  margin: 0;
  color: rgba(255, 255, 255, .8);
}

.card--dark p {
  color: rgba(255, 255, 255, .78);
}

.card--green {
  color: var(--color-white);
  background: rgba(2, 49, 43, .32);
  border-color: rgba(255, 255, 255, .25);
}

/* Specific assistance CTA card, not a generic card modifier. */
.support-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px;
  color: var(--color-white);
  background: radial-gradient(circle at 82% 12%, rgba(24, 211, 223, .26), transparent 30%), rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 30px;
  box-shadow: 0 24px 58px rgba(0, 0, 0, .16);
  backdrop-filter: blur(12px);
}

.support-card .card__icon {
  width: 62px;
  height: 62px;
  margin-bottom: 26px;
  color: var(--color-navy);
  background: var(--color-cyan);
  box-shadow: none;
  font-size: 24px;
}

.support-card__title {
  display: block;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.15;
  max-width: none;
  white-space: nowrap;
}

.support-card .support-card__text {
  margin: 10px 0 40px;
  color: rgba(255, 255, 255, .78);
  font-size: 19px;
  font-weight: 700;
}

.support-card .button {
  align-self: flex-start;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: .95fr 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.mosaic-panel {
  display: flex;
  flex-direction: column;
  padding: 34px;
  background: #f6fafc;
  border: 1px solid var(--color-line-blue);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(3, 29, 55, .07);
  transition: transform var(--duration-slow) var(--ease-standard), box-shadow var(--duration-slow) var(--ease-standard), border-color var(--duration-slow) var(--ease-standard);
}

.mosaic-panel--lead {
  position: relative;
  grid-row: span 2;
  color: var(--color-white);
  background:
    radial-gradient(circle at 82% 14%, rgba(24, 211, 223, .18), transparent 30%),
    var(--gradient-blue-panel);
  border-color: transparent;
  overflow: hidden;
}

.mosaic-panel--lead > * {
  position: relative;
  z-index: 2;
}

.mosaic-panel__watermark {
  position: absolute;
  z-index: 1;
  right: -24px;
  bottom: -34px;
  color: rgba(255, 255, 255, .08);
  font-size: 178px;
  line-height: 1;
}

.mosaic-panel--lead .section-tag {
  color: var(--color-cyan);
}

.mosaic-panel--lead h2 {
  color: var(--color-white);
  font-size: clamp(35px, 3.8vw, 49px);
}

.mosaic-panel--lead p {
  color: rgba(255, 255, 255, .76);
  line-height: 1.72;
}

.mosaic-panel--accent {
  position: relative;
  overflow: hidden;
}

.mosaic-panel--accent::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-electric), var(--color-cyan));
}

.mosaic-panel--warning::before {
  background: linear-gradient(90deg, #e5a445, #ffd88b);
}

.mosaic-panel--accent h3 {
  font-size: 22px;
}

.mosaic-panel--accent .check-list,
.mosaic-panel--accent .cross-list {
  margin-bottom: 0;
}

.info-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 34px;
  padding: 34px;
  background: linear-gradient(145deg, var(--color-white), #f1f8fc);
  border: 1px solid var(--color-line-blue);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(3, 29, 55, .07);
}

.info-panel--wide {
  grid-column: 2 / -1;
}

.price-inline {
  display: flex;
  align-items: baseline;
  gap: 7px;
  flex-wrap: wrap;
  margin: 0;
}

.price-inline small,
.price-inline span {
  color: var(--color-muted);
  font-size: 16px;
  font-weight: 700;
}

.price-inline strong {
  color: var(--color-electric);
  font: 800 31px var(--font-heading);
}

.price-inline--divider {
  padding: 18px 34px 18px 0;
  border-right: 1px solid var(--color-line-blue);
}

.note-stack {
  display: grid;
  gap: 10px;
}

.note-label {
  display: inline-flex;
  width: max-content;
  padding: 6px 10px;
  color: #075287;
  background: #ddf9f6;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.note-stack p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.6;
}

.section-note {
  max-width: 850px;
  margin: 28px auto 0;
  color: var(--color-muted);
  text-align: center;
}

.feature-grid {
  display: grid;
  gap: 17px;
}

.split-feature {
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: 50px;
  align-items: center;
}

.split-feature__heading {
  max-width: 620px;
}

.split-feature__heading--light h2 {
  color: var(--color-white);
}

.split-feature__heading--light p {
  color: rgba(255, 255, 255, .76);
  line-height: 1.8;
}

.split-feature__cards {
  display: grid;
  justify-self: end;
  width: min(100%, 760px);
  gap: 14px;
}

.split-feature__media {
  display: grid;
  place-items: center;
}

.split-feature__media img {
  width: min(100%, var(--split-media-width, 620px));
  height: auto;
  filter: drop-shadow(var(--split-media-shadow, 0 25px 40px rgba(3, 29, 55, .16)));
}

.split-feature + .feature-grid {
  margin-top: 44px;
}

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

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

.card--glass {
  padding: 28px;
  color: var(--color-white);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 25px;
  box-shadow: none;
}

.card--glass:hover {
  background: rgba(255, 255, 255, .12);
}

.card--glass .card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 30px;
  color: var(--color-navy);
  background: var(--color-cyan);
  box-shadow: none;
  font-size: 20px;
}

.card--glass h3 {
  color: var(--color-white);
  font-size: 20px;
}

.card--glass p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
}

.managed-check-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.managed-check-layout h2 {
  color: var(--color-white);
  font-size: clamp(42px, 5vw, 68px);
}

.managed-check-layout header p {
  color: rgba(255, 255, 255, .76);
  line-height: 1.8;
}

.managed-check-layout .note-panel {
  grid-column: 1 / -1;
}

@media (max-width: 1024px) {
  .mosaic-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mosaic-panel--lead,
  .info-panel--wide {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .feature-grid--four {
    grid-template-columns: 1fr 1fr;
  }

  .feature-grid--three {
    grid-template-columns: 1fr 1fr;
  }

  .managed-check-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .split-feature {
    grid-template-columns: 1fr;
  }

  .split-feature__heading {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }

  .split-feature__cards {
    justify-self: center;
  }

  .mosaic-grid,
  .info-panel {
    grid-template-columns: 1fr;
  }

  .mosaic-panel,
  .info-panel {
    padding: 28px;
  }

  .price-inline--divider {
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid var(--color-line-blue);
  }

  .feature-grid--four {
    grid-template-columns: 1fr;
  }

  .feature-grid--three {
    grid-template-columns: 1fr;
  }

  .check-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
  }
}

/* 10. Reusable component: Option cards
   -------------------------------------------------------------------------- */
.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.option-section,
.pricing-section {
  overflow: hidden;
  isolation: isolate;
}

.option-section > .container,
.pricing-section > .container {
  position: relative;
  z-index: 2;
}

.option-card {
  display: flex;
  flex-direction: column;
  padding: 42px;
  background: #f6fafc;
  border: 1px solid #d9e7f1;
  border-radius: 32px;
  box-shadow: 0 20px 55px rgba(3, 29, 55, .07);
}

.option-card--featured {
  color: var(--color-white);
  background: var(--gradient-blue-card);
  border-color: transparent;
  box-shadow: var(--shadow-blue);
}

.option-card .card__icon {
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
  background: #07538f;
  font-size: 29px;
}

.option-card--featured .card__icon {
  color: var(--color-navy);
  background: var(--color-cyan);
}

.pill-label {
  align-self: flex-start;
  padding: 7px 11px;
  color: #075287;
  background: #e5f5fb;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
}

.option-card--featured .pill-label {
  color: var(--color-navy);
  background: var(--color-cyan);
}

.option-card h3 {
  margin: 25px 0 16px;
  font-size: 31px;
}

.option-card--featured h3 {
  color: var(--color-white);
}

.option-card p {
  color: var(--color-muted);
  line-height: 1.7;
}

.option-card--featured p,
.option-card--featured li {
  color: rgba(255, 255, 255, .8);
}

.check-list,
.cross-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.cross-list li {
  position: relative;
  padding-left: 26px;
  line-height: 1.55;
}

.check-list li::before,
.cross-list li::before {
  position: absolute;
  left: 0;
  top: .48em;
  font: 900 11px "Font Awesome 6 Free";
}

.check-list li::before {
  content: "\f00c";
  color: var(--color-cyan);
}

.cross-list li::before {
  content: "\f00d";
  color: #e5a445;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(6, auto);
  grid-auto-flow: column;
  gap: 12px;
}

.check-grid span,
.stat-chip {
  background: var(--soft-tile-bg, rgba(255, 255, 255, .08));
  border: 1px solid var(--soft-tile-border, rgba(255, 255, 255, .14));
  border-radius: var(--radius-16);
  transition: transform var(--duration-slow) var(--ease-standard), background var(--duration-slow) var(--ease-standard), border-color var(--duration-slow) var(--ease-standard), box-shadow var(--duration-slow) var(--ease-standard);
}

.check-grid span:hover,
.stat-chip:hover {
  background: var(--soft-tile-hover-bg, rgba(255, 255, 255, .12));
  border-color: var(--soft-tile-hover-border, rgba(255, 255, 255, .24));
  box-shadow: var(--soft-tile-hover-shadow, 0 18px 34px rgba(0, 0, 0, .12));
  transform: translateY(var(--hover-y, -5px));
}

.check-grid span {
  position: relative;
  padding: 16px 18px 16px 44px;
  color: var(--check-grid-color, inherit);
  font-weight: 600;
}

.check-grid span::before {
  content: "\f00c";
  position: absolute;
  left: 18px;
  top: 50%;
  color: var(--check-grid-icon-color, var(--color-cyan));
  font: 900 12px "Font Awesome 6 Free";
  transform: translateY(-50%);
}

.note-panel {
  display: flex;
  gap: 13px;
  padding: 22px 26px;
  color: var(--note-panel-color, rgba(255, 255, 255, .82));
  background: var(--note-panel-bg, rgba(255, 255, 255, .08));
  border: 1px solid var(--note-panel-border, rgba(255, 255, 255, .16));
  border-radius: var(--radius-20);
}

.note-panel i {
  flex: 0 0 auto;
  margin-top: 5px;
  color: var(--note-panel-icon-color, var(--color-cyan));
}

.option-note {
  padding-top: 22px;
  color: var(--color-muted);
  border-top: 1px solid #d9e7f1;
  font-size: 16px;
}

.option-card--featured .option-note {
  color: rgba(255, 255, 255, .8);
  border-color: rgba(255, 255, 255, .16);
}

.option-note strong {
  display: block;
  color: var(--color-electric);
  font-family: var(--font-heading);
}

.option-card--featured .option-note strong {
  color: var(--color-cyan);
}

.option-card .button {
  align-self: flex-start;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .option-grid {
    grid-template-columns: 1fr;
  }

  .option-card {
    padding: 28px;
  }
}

/* 11. Reusable component: Step tracks
   -------------------------------------------------------------------------- */
.step-track-section {
  --section-own-edge-bg: #edf3f7;
  --section-own-edge-image:
    linear-gradient(rgba(7, 93, 172, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 93, 172, .045) 1px, transparent 1px);
  --section-own-edge-size: 70px 70px;
  background-color: #edf3f7;
  background-image:
    linear-gradient(rgba(7, 93, 172, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 93, 172, .045) 1px, transparent 1px);
  background-size: 70px 70px;
}

.step-track-section .section-heading {
  max-width: 920px;
  margin: 0 0 62px;
  text-align: left;
}

.step-track-section .section-heading h2 {
  font-size: clamp(42px, 5vw, 66px);
}

.step-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 56px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-track__item {
  position: relative;
}

.step-track__number {
  display: inline;
  margin-right: 14px;
  color: var(--color-navy);
  font: 800 46px/1 var(--font-heading);
  letter-spacing: -.04em;
}

.step-track h3 {
  display: inline;
  color: var(--color-electric);
  font-size: 27px;
  line-height: 1.05;
}

.step-track h3::after {
  content: "";
  display: block;
  width: 78%;
  max-width: 190px;
  height: 4px;
  margin: 20px 0 28px;
  background: linear-gradient(90deg, var(--color-electric), var(--color-cyan));
}

.step-track p {
  max-width: 300px;
  margin: 0;
  color: #31516d;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}

.step-track__action {
  margin-top: 52px;
  text-align: left;
}

@media (max-width: 1024px) {
  .step-track-section .section-heading {
    margin-inline: auto;
    text-align: center;
  }

  .step-track {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .step-track__action {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .step-track {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .step-track__number {
    font-size: 40px;
  }
}

/* 12. Reusable component: Pricing
   -------------------------------------------------------------------------- */
.pill-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-row span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  color: #075287;
  background: var(--color-white);
  border: 1px solid #d3e3ef;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
}

.pill-row i {
  color: var(--color-green);
}

.segmented-control {
  display: flex;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  padding: 6px;
  background: var(--color-white);
  border: 1px solid #d5e4ef;
  border-radius: var(--radius-pill);
  box-shadow: 0 16px 42px rgba(3, 29, 55, .09);
}

.segmented-control button {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 23px;
  color: #60768a;
  background: transparent;
  border: 0;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--duration-fast);
}

.segmented-control button span {
  padding: 5px 8px;
  color: #075287;
  background: #ddf9f6;
  border-radius: var(--radius-pill);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.segmented-control button.active {
  color: var(--color-white);
  background: var(--gradient-blue-panel-soft);
  box-shadow: 0 12px 25px rgba(3, 61, 112, .2);
}

.segmented-control button.active span {
  color: var(--color-navy);
  background: var(--color-cyan);
}

.pricing-grid {
  position: relative;
  gap: 22px;
}

.pricing-grid--two {
  max-width: 950px;
  margin-inline: auto;
}

.pricing-group + .pricing-group {
  margin-top: 70px;
}

.pricing-group__title {
  margin-bottom: 25px;
  color: var(--color-navy);
  font-size: 28px;
  text-align: center;
}

.pricing-group .segmented-control {
  margin: 0 auto 48px;
}

.pricing-card {
  --pricing-card-summary-color: var(--color-muted);
  position: relative;
  padding: 10px 30px 32px;
  color: var(--color-ink);
  background: var(--color-white);
  border: 1px solid #d7e4ee;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(3, 29, 55, .08);
  transition: transform var(--duration-slow) var(--ease-standard), box-shadow var(--duration-slow) var(--ease-standard), background var(--duration-slow) var(--ease-standard), border-color var(--duration-slow) var(--ease-standard), color var(--duration-slow) var(--ease-standard);
}

.pricing-card--simple {
  display: flex;
  flex-direction: column;
  padding: 36px;
  background: #f6fafc;
  border-color: #d8e7f1;
  border-radius: 30px;
  box-shadow: 0 18px 50px rgba(3, 29, 55, .07);
}

.pricing-card--featured {
  --pricing-card-summary-color: var(--color-muted-on-dark);
  --hover-y: -8px;
  color: var(--color-white);
  background: var(--gradient-blue-card);
  border-color: transparent;
  box-shadow: var(--shadow-blue);
}

.pricing-card__top {
  padding: 30px 0 25px;
  border-bottom: 1px solid var(--color-line);
  text-align: center;
}

.pricing-card__eyebrow {
  color: var(--color-electric);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 10px 0 22px;
  font-size: 29px;
}

.pricing-card__price {
  display: grid;
}

.pricing-card__price--inline {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.pricing-card__price small,
.pricing-card__price span {
  color: var(--color-muted);
  font-size: 11px;
}

.pricing-card__price--inline small,
.pricing-card__price--inline span {
  font-size: 16px;
  font-weight: 700;
}

.pricing-card__price strong {
  color: var(--color-electric);
  font: 800 45px var(--font-heading);
  transition: opacity .15s ease, transform .15s ease;
}

.pricing-card__price--inline strong {
  font-size: 31px;
}

.pricing-card__summary {
  color: var(--pricing-card-summary-color);
}

.pricing-card__price.price-changing strong {
  opacity: 0;
  transform: translateY(5px);
}

.pricing-card__features {
  display: grid;
  gap: 0;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.pricing-card__features li {
  position: relative;
  padding: 9px 0 9px 27px;
  color: var(--color-muted);
  border-bottom: 1px solid #edf2f6;
  font-size: 14px;
}

.pricing-card__features li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  color: var(--color-electric);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.pricing-card .button {
  margin-top: auto;
}

.pricing-card--featured h3,
.pricing-card--featured .pricing-card__price strong {
  color: var(--color-white);
}

.pricing-card--featured .pricing-card__eyebrow,
.pricing-card--featured .pricing-card__price small,
.pricing-card--featured .pricing-card__price span,
.pricing-card--featured .pricing-card__features li {
  color: rgba(255, 255, 255, .8);
}

.pricing-card--featured .pricing-card__top,
.pricing-card--featured .pricing-card__features li {
  border-color: rgba(255, 255, 255, .12);
}

.pricing-card--featured .pricing-card__features li::before {
  color: var(--color-cyan);
}

.pricing-card--featured .button {
  --button-icon-hover-bg: var(--color-navy);
  --button-icon-hover-color: var(--color-white);
  color: var(--color-navy);
  background: var(--color-cyan);
  box-shadow: none;
}

.addon-card {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 35px;
  margin-top: 60px;
  padding: 38px;
  color: var(--color-white);
  background:
    radial-gradient(circle at 80% 15%, rgba(24, 211, 223, .23), transparent 25%),
    var(--gradient-blue-deep);
  border-radius: 30px;
}

.addon-card h3 {
  color: var(--color-white);
  font-size: 29px;
}

.addon-card p,
.addon-card li {
  color: rgba(255, 255, 255, .78);
}

.addon-card p {
  margin: 0;
}

.addon-card__eyebrow {
  display: block;
  color: var(--color-cyan);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.addon-card__price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  flex-wrap: wrap;
  margin: 0 0 14px;
}

.addon-card__price small,
.addon-card__price span {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
}

.addon-card__price strong {
  color: var(--color-cyan);
  font: 800 31px var(--font-heading);
}

.addon-card .button {
  justify-self: start;
}

@media (max-width: 1024px) {
  .addon-card {
    grid-template-columns: 1fr;
  }
}

/* 13. Reusable component: Search and listing tools
   -------------------------------------------------------------------------- */
.search-panel {
  position: relative;
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 34px;
  color: var(--color-white);
  background:
    radial-gradient(circle at 84% 16%, rgba(24, 211, 223, .18), transparent 28%),
    var(--gradient-blue-panel);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px -28px rgba(3, 29, 55, .28), 0 8px 22px -18px rgba(3, 29, 55, .18);
}

.search-panel__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 17px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.search-panel__meta strong {
  color: var(--color-cyan);
  font-family: var(--font-heading);
  letter-spacing: 0;
  text-transform: none;
}

.search-form label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 700;
}

.search-input-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 9px 9px 9px 17px;
  background: var(--color-white);
  border: 1px solid #d6e5ef;
  border-radius: var(--radius-pill);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .65), 0 14px 34px rgba(3, 29, 55, .06);
}

.search-input-row > i {
  color: var(--color-electric);
}

.search-input-row input {
  min-width: 0;
  color: var(--color-navy);
  background: transparent;
  border: 0;
  outline: 0;
  font: 700 18px var(--font-heading);
}

.search-input-row input::placeholder {
  color: #94a8ba;
}

.search-input-row .button {
  min-height: 48px;
  padding-inline: 19px;
}

.action-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.action-chips a,
.action-chips button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  color: var(--color-white);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-pill);
  font: 800 13px var(--font-body);
  cursor: pointer;
}

.action-chips a:hover,
.action-chips button:hover {
  color: var(--color-navy);
  background: var(--color-cyan);
}

.tld-card-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.tld-card {
  position: relative;
  display: flex;
  min-height: 162px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 22px;
  background: #f6fafc;
  border: 1px solid var(--color-line-blue);
  border-radius: 22px;
  box-shadow: 0 12px 32px rgba(3, 29, 55, .055);
  overflow: hidden;
}

.tld-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--color-electric), var(--color-cyan));
  opacity: .65;
  transition: opacity var(--duration-fast);
}

.tld-card:hover {
  border-color: #b9d8ec;
  box-shadow: 0 22px 50px rgba(3, 61, 112, .13);
}

.tld-card:hover::before {
  opacity: 1;
}

.tld-card--featured {
  color: var(--color-white);
  background: var(--gradient-blue-card);
  border-color: transparent;
}

.tld-card--featured::before {
  display: none;
}

.tld-card span {
  color: var(--color-electric);
  font: 800 25px var(--font-heading);
}

.tld-card--featured span {
  color: var(--color-cyan);
}

.tld-card strong {
  color: var(--color-navy);
  font: 800 18px var(--font-heading);
}

.tld-card--featured strong {
  color: var(--color-white);
}

.tld-card small {
  color: var(--color-muted);
  font-weight: 700;
}

.tld-card--featured small {
  color: rgba(255, 255, 255, .7);
}

.data-table-section {
  position: relative;
  overflow: hidden;
}

.data-table-shell {
  background: var(--color-white);
  border: 1px solid var(--color-line-blue);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 22px;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-line-blue);
}

.filter-tabs button {
  padding: 9px 13px;
  color: #4b647b;
  background: #f6fafc;
  border: 1px solid var(--color-line-blue);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.filter-tabs button:hover,
.filter-tabs button.active {
  color: var(--color-white);
  background: var(--color-electric);
  border-color: var(--color-electric);
}

.table-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  background: #f6fafc;
  border-bottom: 1px solid var(--color-line-blue);
}

.filter-field {
  display: grid;
  grid-template-columns: 22px minmax(0, 280px);
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: var(--color-white);
  border: 1px solid var(--color-line-blue);
  border-radius: var(--radius-pill);
}

.filter-field i {
  color: var(--color-electric);
}

.filter-field input {
  min-width: 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-weight: 700;
}

.table-tools span {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
}

.data-table-wrap {
  overflow: auto;
}

.data-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-line-blue);
  text-align: left;
}

.data-table th {
  color: var(--color-navy);
  background: var(--color-white);
  font: 800 13px var(--font-heading);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.data-table td {
  color: var(--color-muted);
  font-weight: 700;
}

.data-table tr:not(.domain-price-loading):not(.domain-price-empty) td:first-child {
  color: var(--color-electric);
  font: 800 23px var(--font-heading);
}

.data-table td a {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  color: var(--color-white);
  background: var(--color-electric);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
  transition: color var(--duration-fast), background var(--duration-fast);
}

.data-table td a:hover {
  color: var(--color-navy);
  background: var(--color-cyan);
}

.data-table .domain-price-loading td,
.data-table .domain-price-empty td {
  padding: 34px;
  color: var(--color-muted);
  font: 700 16px var(--font-body);
  text-align: center;
}

.data-table-footer {
  display: flex;
  justify-content: center;
  padding: 24px;
  background: #f6fafc;
  border-top: 1px solid var(--color-line-blue);
}

.data-table-footer .button[hidden] {
  display: none;
}

@media (max-width: 1024px) {
  .tld-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .table-tools {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .search-panel {
    padding: 24px;
  }

  .search-input-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding-left: 18px;
  }

  .search-panel__meta {
    align-items: flex-start;
  }

  .search-input-row > i {
    display: none;
  }

  .tld-card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* 14. Reusable component: Quotes
   -------------------------------------------------------------------------- */
.quote-section {
  position: relative;
  padding: 125px 0;
  color: var(--color-white);
  background: radial-gradient(circle at 75% 30%, rgba(24, 211, 223, .18), transparent 30%), var(--gradient-blue-deep);
  overflow: hidden;
}

.quote-section > .container {
  position: relative;
  z-index: 2;
}

.quote-label {
  position: relative;
  margin-bottom: 55px;
  text-align: center;
}

.quote-label p {
  color: rgba(255, 255, 255, .65);
  font-size: 16px;
}

.quote-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  align-items: start;
  gap: 18px;
}

.quote-card {
  position: relative;
  min-height: 360px;
  padding: 34px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  transition: var(--duration-standard);
}

.quote-card--featured {
  min-height: 430px;
  padding: 42px;
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 28px 60px rgba(0, 0, 0, .14);
}

.quote-card--offset-sm {
  margin-top: 55px;
}

.quote-card--offset-lg {
  margin-top: 110px;
}

.quote-card__icon {
  margin-bottom: 35px;
  color: var(--color-cyan);
  font-size: 28px;
}

.quote-card h3 {
  color: var(--color-white);
  font-size: 22px;
}

.quote-card--featured h3 {
  font-size: 29px;
}

.quote-card blockquote {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .75);
  font-size: 16px;
  line-height: 1.75;
}

.quote-card strong {
  color: #9afaff;
  font-size: 13px;
}

/* 15. Reusable component: Feature stories
   -------------------------------------------------------------------------- */
.feature-story-stack {
  display: grid;
  gap: 100px;
}

.feature-story {
  position: relative;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 85px;
}

.feature-story--reverse {
  grid-template-columns: 1.18fr .82fr;
}

.feature-story--reverse .feature-story__visual {
  order: 2;
}

.feature-story__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 440px;
  background: radial-gradient(circle at 70% 22%, rgba(24, 211, 223, .24), transparent 32%), var(--gradient-blue-panel);
  border-radius: 42px;
  box-shadow: 0 28px 65px rgba(3, 29, 55, .18);
  overflow: hidden;
}

.feature-story__visual > i {
  position: relative;
  z-index: 3;
  color: #9afaff;
  font-size: 105px;
}

.feature-story__content {
  position: relative;
  z-index: 2;
}

.feature-story__content h3 {
  font-size: clamp(43px, 5vw, 68px);
}

.feature-story__content p {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.78;
}

.feature-story__content p strong {
  color: var(--color-navy);
}

.feature-story__content .button {
  margin-top: 15px;
}

.mini-pill-grid {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mini-pill-grid span {
  padding: 9px;
  color: var(--color-white);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-pill);
  text-align: center;
  font-size: 10px;
  font-weight: 700;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.tag-list span {
  padding: 9px 13px;
  color: #075287;
  background: #edf6fc;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
}

.motion-route {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 95px;
  border-top: 2px dashed rgba(137, 247, 255, .45);
}

.motion-float-x > i {
  animation: storyTruck 4s ease-in-out infinite;
}

@keyframes storyTruck {
  50% {
    transform: translateX(-25px);
  }
}

.callout-panel {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 38px 42px;
  color: var(--color-white);
  background: radial-gradient(circle at 75% 20%, rgba(24, 211, 223, .25), transparent 30%), var(--gradient-blue-deep);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(3, 29, 55, .16);
  overflow: hidden;
}

.callout-panel::after {
  --halo-size: 240px;
  --halo-right: -150px;
  --halo-bottom: -170px;
  --halo-border: rgba(24, 211, 223, .22);
  --halo-shadow: 0 0 0 42px rgba(24, 211, 223, .05);
}

.callout-panel > * {
  position: relative;
  z-index: 2;
}

.callout-panel__icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  color: var(--color-navy);
  background: var(--color-cyan);
  border-radius: var(--radius-circle);
  font-size: 26px;
}

.callout-panel .section-tag {
  margin-bottom: 8px;
}

.callout-panel h3 {
  margin-bottom: 8px;
  color: var(--color-white);
  font-size: 28px;
}

.callout-panel p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, .75);
  font-size: 15px;
  line-height: 1.7;
}

/* 16. Reusable component: Angled showcase
   -------------------------------------------------------------------------- */
.angled-showcase {
  --section-angle-size: 82px;
  position: relative;
  padding: 205px 0;
  color: var(--color-white);
  background: var(--gradient-blue-showcase);
  overflow: hidden;
  isolation: isolate;
}

.angled-showcase.section-angle {
  padding: 205px 0;
}

.angled-showcase__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 90px;
}

.angled-showcase__content h2 {
  color: var(--color-white);
  font-size: clamp(50px, 6vw, 78px);
}

.angled-showcase__content p {
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  line-height: 1.75;
}

.angled-showcase__content .text-link {
  margin-top: 18px;
}

.mock-window {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-lg);
  box-shadow: 0 35px 80px rgba(0, 0, 0, .22);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.mock-window__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 58px;
  padding: 0 20px;
  background: rgba(3, 29, 55, .25);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.mock-window__bar > span {
  width: 8px;
  height: 8px;
  background: var(--color-cyan);
  border-radius: var(--radius-circle);
}

.mock-window__logo {
  margin-left: auto;
  color: var(--color-cyan);
  font-size: 34px;
  line-height: 1;
}

.mock-window__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 35px;
}

.mock-window__grid i {
  display: grid;
  place-items: center;
  height: 110px;
  color: var(--color-cyan);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-md);
  font-size: 30px;
}

/* 17. Reusable component: Tabbed panels
   -------------------------------------------------------------------------- */
.tabbed-panel {
  background: var(--color-white);
  border: 1px solid #d4e2ec;
  border-radius: var(--radius-xl);
  box-shadow: 0 28px 70px rgba(3, 29, 55, .1);
  overflow: hidden;
}

.tabbed-panel__tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: #f1f7fb;
  border-bottom: 1px solid #d9e6ef;
}

.tabbed-panel__tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 100px;
  color: #6d7f90;
  background: transparent;
  border: 0;
  border-right: 1px solid #e0e9f0;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--duration-fast);
}

.tabbed-panel__tab:last-child {
  border-right: 0;
}

.tabbed-panel__tab i {
  font-size: 20px;
}

.tabbed-panel__tab:hover,
.tabbed-panel__tab.active {
  color: var(--color-white);
  background: var(--gradient-blue-panel-soft);
}

.tabbed-panel__tab.active i {
  color: var(--color-cyan);
}

.tabbed-panel__panel {
  display: grid;
  grid-template-columns: .68fr 1.32fr;
  min-height: 490px;
}

.tabbed-panel__panel[hidden] {
  display: none;
}

.tabbed-panel__intro {
  position: relative;
  padding: 55px;
  color: var(--color-white);
  background: radial-gradient(circle at 80% 20%, rgba(24, 211, 223, .25), transparent 35%), var(--gradient-blue-panel);
  overflow: hidden;
}

.tabbed-panel__intro::after {
  --halo-size: 260px;
  --halo-left: -150px;
  --halo-bottom: -160px;
  --halo-border: rgba(24, 211, 223, .2);
  --halo-shadow: 0 0 0 40px rgba(24, 211, 223, .05), 0 0 0 80px rgba(24, 211, 223, .025);
}

.tabbed-panel__intro > i {
  margin-bottom: 85px;
  color: var(--color-cyan);
  font-size: 52px;
}

.tabbed-panel__intro h3 {
  color: var(--color-white);
  font-size: 34px;
}

.tabbed-panel__intro p {
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  line-height: 1.75;
}

.feature-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 28px;
}

.feature-mini-card {
  padding: 23px;
  border-bottom: 1px solid #e8f0f6;
}

.feature-mini-card h4 {
  margin: 0 0 7px;
  color: var(--color-navy);
  font: 700 16px var(--font-heading);
}

.feature-mini-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* 18. Reusable component: Statement bands
   -------------------------------------------------------------------------- */
.statement-band {
  position: relative;
  padding: 125px 0;
  color: var(--color-white);
  overflow: hidden;
}

.statement-band--green {
  --soft-tile-hover-border: rgba(168, 255, 229, .38);
  background: var(--gradient-green);
}

.statement-band--blue {
  --stat-chip-accent: var(--color-cyan);
  padding: 110px 0 180px;
  background: var(--gradient-blue-deep);
}

.statement-band__layout {
  position: relative;
  display: grid;
  grid-template-columns: 140px 1fr .8fr;
  align-items: center;
  gap: 55px;
}

.statement-band__layout--split {
  grid-template-columns: 1.3fr .7fr;
  gap: 70px;
}

.statement-band__layout--action-list {
  grid-template-columns: 1fr minmax(300px, 420px);
  gap: 40px;
}

.statement-band__action-stack {
  display: grid;
  gap: 26px;
  justify-items: start;
}

.statement-band__action-stack > .text-link {
  margin-left: 18px;
}

@media (max-width: 1024px) {
  .statement-band__layout--split,
  .statement-band__layout--action-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .support-card__title {
    font-size: 26px;
    white-space: normal;
  }
}

.statement-band__icon {
  display: grid;
  place-items: center;
  width: 130px;
  height: 130px;
  color: var(--color-green-dark);
  background: #a8ffe5;
  border-radius: var(--radius-circle);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .16);
  font-size: 44px;
}

.statement-band h2 {
  color: var(--color-white);
  font-size: clamp(40px, 5vw, 65px);
}

.statement-band--blue h2 {
  font-size: clamp(42px, 5vw, 67px);
}

.statement-band p {
  margin: 0;
  color: rgba(255, 255, 255, .8);
  font-size: 16px;
  line-height: 1.75;
}

.stat-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stat-chip {
  padding: 15px 18px;
  font-size: 13px;
}

.stat-chip strong {
  display: block;
  color: var(--stat-chip-accent, #a8ffe5);
  font: 700 18px var(--font-heading);
}

/* 19. Reusable component: FAQ
   -------------------------------------------------------------------------- */
.faq-intro h2 {
  font-size: clamp(43px, 5vw, 68px);
}

.faq-intro p {
  color: var(--color-muted);
  font-size: 16px;
}

.faq-intro .button {
  margin-top: 18px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--color-paper-blue);
  border: 1px solid var(--color-line-blue);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: background var(--duration-fast), box-shadow var(--duration-fast), border-color var(--duration-fast);
}

.faq-item[open] {
  background: var(--color-white);
  box-shadow: 0 18px 45px rgba(3, 29, 55, .08);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 27px;
  color: var(--color-navy);
  font: 700 17px var(--font-heading);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--color-white);
  background: var(--color-electric);
  border-radius: var(--radius-circle);
  font-size: 12px;
  transition: color var(--duration-fast), background var(--duration-fast), transform var(--duration-fast);
}

.faq-item[open] summary i {
  color: var(--color-navy);
  background: var(--color-cyan);
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 27px 26px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.7;
}

.faq-section {
  position: relative;
  z-index: 3;
  background: var(--color-white);
  padding-top: 175px;
  overflow: visible;
}

@media (max-width: 1024px) {
  .quote-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quote-card--offset-sm,
  .quote-card--offset-lg {
    margin-top: 0;
  }

  .quote-card--featured {
    grid-column: 1 / -1;
  }

}

@media (max-width: 768px) {
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .quote-card,
  .quote-card--featured {
    grid-column: auto;
    min-height: auto;
    padding: 28px;
  }

  .feature-story-stack {
    gap: 80px;
  }

  .feature-story,
  .feature-story--reverse {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .feature-story--reverse .feature-story__visual {
    order: 0;
  }

  .feature-story__visual {
    min-height: 300px;
  }

  .feature-story__visual > i {
    font-size: 75px;
  }

  .feature-story__content h3 {
    font-size: 40px;
  }

  .callout-panel {
    grid-template-columns: 1fr;
    padding: 30px;
    text-align: center;
  }

  .callout-panel__icon {
    margin: auto;
  }

  .angled-showcase__layout {
    grid-template-columns: 1fr;
  }

  .tabbed-panel__panel {
    grid-template-columns: 1fr;
  }

  .tabbed-panel__intro > i {
    margin-bottom: 35px;
  }

  .pricing-card--featured {
    --hover-base-y: 0px;
  }

  .segmented-control {
    width: 100%;
  }

  .segmented-control button {
    flex: 1;
    justify-content: center;
    padding-inline: 14px;
  }

  .tabbed-panel__tabs {
    grid-template-columns: 1fr 1fr;
  }

  .tabbed-panel__tab {
    min-height: 75px;
  }

  .tabbed-panel__intro {
    padding: 35px;
  }

  .feature-mini-grid {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .feature-mini-card {
    padding: 18px;
  }

  .statement-band__layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .statement-band__icon {
    margin: auto;
  }

  .stat-list {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .faq-item summary {
    padding: 20px;
    font-size: 15px;
  }

  .faq-item p {
    padding: 0 20px 22px;
  }

  .faq-section {
    padding-top: 115px;
  }
}

/* 20. Header, utility bar and navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--color-white);
  transition: background var(--duration-standard), box-shadow var(--duration-standard), backdrop-filter var(--duration-standard);
}

.site-header.scrolled {
  background: rgba(3, 29, 55, .9);
  box-shadow: 0 10px 35px rgba(0, 0, 0, .16);
  backdrop-filter: blur(18px);
}

.utility-bar {
  height: 34px;
  background: rgba(1, 16, 32, .24);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.utility-inner,
.utility-inner nav,
.nav-shell,
.site-nav,
.mega-trigger {
  display: flex;
  align-items: center;
}

.utility-inner {
  height: 100%;
  justify-content: space-between;
}

.utility-inner nav {
  gap: 20px;
}

.utility-inner a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .73);
  font-size: 11px;
  font-weight: 600;
}

.utility-inner a:hover,
.utility-inner a:focus-visible {
  color: var(--color-white);
}

.utility-inner i {
  color: var(--color-cyan);
}

.nav-shell {
  height: 78px;
  justify-content: space-between;
}

.brand img {
  width: 145px;
  height: auto;
}

.site-nav {
  gap: 31px;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  font-weight: 600;
}

.site-nav > a::after,
.site-nav > .nav-mega > .mega-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  background: var(--color-cyan);
  transition: right var(--duration-fast);
}

.site-nav a:hover,
.site-nav .active {
  color: var(--color-white);
}

.site-nav > a:hover::after,
.site-nav > .active::after,
.site-nav > .nav-mega > .mega-trigger:hover::after {
  right: 0;
}

.nav-mega {
  position: relative;
}

.nav-mega::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 32px;
}

.mega-trigger {
  gap: 7px;
}

.mega-trigger i {
  color: var(--color-cyan);
  font-size: 8px;
  transition: transform var(--duration-fast);
}

.mega-menu {
  position: absolute;
  z-index: 110;
  top: calc(100% + 28px);
  right: -190px;
  width: min(760px, calc(100vw - 40px));
  padding: 14px;
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(8, 124, 255, .15);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 70px rgba(3, 29, 55, .22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .28s var(--ease-standard), visibility .28s var(--ease-standard), transform .28s var(--ease-standard);
  backdrop-filter: blur(18px);
}

.mega-menu::before {
  content: "";
  position: absolute;
  right: 230px;
  top: -9px;
  width: 18px;
  height: 18px;
  background: var(--color-white);
  border-left: 1px solid rgba(8, 124, 255, .12);
  border-top: 1px solid rgba(8, 124, 255, .12);
  transform: rotate(45deg);
}

.nav-mega:hover .mega-menu,
.nav-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.nav-mega:hover .mega-trigger i,
.nav-mega:focus-within .mega-trigger i {
  transform: rotate(180deg);
}

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.site-nav .mega-grid > a {
  display: grid;
  grid-template-columns: 58px 1fr 24px;
  align-items: center;
  gap: 16px;
  min-height: 112px;
  padding: 18px;
  color: var(--color-ink);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  transition: background var(--duration-fast), border-color var(--duration-fast);
}

.site-nav .mega-grid > a::after {
  display: none;
}

.site-nav .mega-grid > a > i {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--color-electric);
  background: #eaf6fc;
  border-radius: var(--radius-sm);
  font-size: 20px;
  transition: background var(--duration-fast), color var(--duration-fast);
}

.site-nav .mega-grid strong,
.site-nav .mega-grid small {
  display: block;
}

.site-nav .mega-grid strong {
  margin-bottom: 5px;
  color: var(--color-navy);
  font: 700 16px var(--font-heading);
}

.site-nav .mega-grid small {
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.5;
}

.site-nav .mega-grid b {
  color: #a5b7c5;
  font-size: 12px;
  transition: transform var(--duration-fast), color var(--duration-fast);
}

.site-nav .mega-grid > a:hover {
  background: #f2f9fd;
  border-color: #dceaf3;
}

.site-nav .mega-grid > a:hover > i {
  color: var(--color-navy);
  background: var(--color-cyan);
}

.site-nav .mega-grid > a:hover b {
  color: var(--color-electric);
  transform: translateX(4px);
}

.menu-toggle {
  display: none;
}

/* 21. Reusable component: Hero
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 955px;
  padding: 180px 0 285px;
  color: var(--color-white);
  background: var(--gradient-hero-home);
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: auto -6% -115px;
  height: 220px;
  background: var(--color-paper);
  border-radius: 50% 50% 0 0 / 55% 55% 0 0;
}

.hero-section--hosting {
  min-height: 850px;
  padding-bottom: 245px;
  background: var(--gradient-hero-hosting);
}

.hero-section--wordpress {
  min-height: 820px;
  padding: 205px 0 245px;
  background: var(--gradient-hero-wordpress);
}

.hero-section--cloud {
  min-height: 850px;
  padding: 205px 0 245px;
  background: var(--gradient-hero-cloud);
}

.hero-section--domains {
  background: var(--gradient-hero-domains);
}

.hero-section--hosting::after {
  inset: auto -6% -92px;
  height: 190px;
  background: var(--color-white);
  border-radius: 50% 50% 0 0 / 62% 62% 0 0;
}

.hero-section--wordpress::after,
.hero-section--cloud::after,
.hero-section--domains::after {
  inset: auto -7% -92px;
  height: 190px;
  background: var(--color-white);
  border-radius: 50% 50% 0 0 / 62% 62% 0 0;
}

.hero-background-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 75px 75px;
  mask-image: linear-gradient(to bottom, var(--color-black), transparent);
}

.hero-ambient-glow {
  right: -100px;
  top: 50px;
  width: 650px;
  height: 650px;
  background: rgba(24, 211, 223, .16);
  filter: blur(85px);
}

.hero-ambient-glow--cloud {
  right: -120px;
  top: 40px;
  width: 650px;
  height: 650px;
  background: rgba(24, 211, 223, .16);
  filter: blur(85px);
}

.hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.08fr .82fr;
  align-items: center;
  gap: 70px;
}

.hero-layout--balanced {
  grid-template-columns: 1fr 1fr;
  gap: 85px;
}

.hero-layout--wordpress {
  grid-template-columns: 1.05fr .95fr;
  gap: 55px;
}

.hero-layout--cloud {
  grid-template-columns: 1.02fr .98fr;
  gap: 70px;
}

.hero-layout--domains {
  grid-template-columns: 1fr .95fr;
  gap: 70px;
}

.hero-content h1 {
  margin-bottom: 25px;
  color: var(--color-white);
}

.hero-content--hosting h1 {
  max-width: 650px;
  font-size: clamp(48px, 5.5vw, 75px);
}

.hero-content--wordpress h1 {
  font-size: clamp(58px, 6.5vw, 88px);
}

.hero-content--cloud h1 {
  font-size: clamp(58px, 6.5vw, 88px);
}

.hero-content--domains h1 {
  font-size: clamp(58px, 6.5vw, 88px);
}

.hero-content h1 em {
  display: block;
  color: #83f5ff;
  font-style: normal;
  text-shadow: 0 0 28px rgba(24, 211, 223, .22);
}

.hero-content--hosting h1 em {
  color: #89f7ff;
}

.hero-content--wordpress h1 em {
  color: #91f9ff;
}

.hero-content--cloud h1 em {
  color: #91f9ff;
}

.hero-content--domains h1 em {
  color: #91f9ff;
}

.hero-subhead {
  max-width: 640px;
  color: var(--color-white);
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: 0;
}

.hero-content > p {
  max-width: 590px;
  color: rgba(255, 255, 255, .72);
}

.hero-content--hosting > p {
  max-width: 650px;
  color: rgba(255, 255, 255, .8);
  font-size: 17px;
  line-height: 1.8;
}

.hero-content--cloud > p {
  max-width: 640px;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  line-height: 1.75;
}

.hero-content--domains > p {
  max-width: 620px;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  line-height: 1.75;
}

.hero-content .button {
  margin-top: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 30px;
}

.hero-actions .button {
  margin-top: 0;
  white-space: nowrap;
}

.hero-actions .text-link {
  align-self: center;
  min-height: 54px;
  color: var(--color-white);
  font-size: 13px;
  white-space: nowrap;
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
  margin-bottom: 35px;
}

.hero-assurances span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 600;
}

.hero-assurances i {
  color: var(--color-cyan);
}

.hero-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
}

.hero-badge-list li {
  padding: 8px 12px;
  color: rgba(255, 255, 255, .92);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
}

.hero-badge-list i {
  margin-right: 5px;
  color: var(--color-cyan);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 570px;
}

.hero-visual--hosting {
  min-height: 480px;
}

.hero-visual--wordpress {
  min-height: 550px;
  isolation: isolate;
}

.hero-visual--cloud {
  min-height: 520px;
  isolation: isolate;
}

.hero-visual--domains {
  min-height: 520px;
  isolation: isolate;
}

.floating-media {
  position: relative;
  width: min(555px, 43vw);
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, .22));
  animation: heroFloat 6s ease-in-out infinite;
}

.floating-media img {
  width: 100%;
}

.floating-media--hosting {
  width: min(610px, 47vw);
  filter: drop-shadow(0 32px 38px rgba(0, 0, 0, .24));
}

.floating-media--wordpress {
  width: min(665px, 50vw);
}

.floating-media--cloud {
  width: min(640px, 48vw);
  filter: drop-shadow(0 34px 45px rgba(3, 15, 31, .34));
}

.floating-media--domains {
  width: min(610px, 46vw);
  filter: drop-shadow(0 34px 45px rgba(3, 15, 31, .3));
}

.floating-media::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 15% 10%;
  background: rgba(24, 211, 223, .2);
  border-radius: var(--radius-circle);
  filter: blur(55px);
}

.floating-media--hosting::before {
  display: none;
}

.media-orbit {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 52%;
  width: clamp(260px, 28vw, 410px);
  aspect-ratio: 1;
  border: 1px solid rgba(142, 239, 255, .26);
  border-radius: var(--radius-circle);
  box-shadow: 0 0 0 42px rgba(142, 239, 255, .055), 0 0 0 84px rgba(142, 239, 255, .025);
  transform: translate(-50%, -50%);
}

.media-orbit--hosting {
  width: clamp(280px, 29vw, 430px);
  border-color: rgba(142, 239, 255, .22);
  box-shadow: 0 0 0 44px rgba(142, 239, 255, .05), 0 0 0 88px rgba(142, 239, 255, .024);
}

.media-orbit--wordpress {
  width: clamp(285px, 30vw, 440px);
  border-color: rgba(142, 239, 255, .22);
}

.media-orbit--cloud {
  width: clamp(300px, 31vw, 455px);
  border-color: rgba(142, 239, 255, .22);
  box-shadow: 0 0 0 48px rgba(142, 239, 255, .052), 0 0 0 96px rgba(142, 239, 255, .024);
}

.media-orbit--domains {
  width: clamp(285px, 30vw, 440px);
  border-color: rgba(142, 239, 255, .22);
  box-shadow: 0 0 0 46px rgba(142, 239, 255, .052), 0 0 0 92px rgba(142, 239, 255, .024);
}

@keyframes heroFloat {
  50% {
    transform: translateY(-12px);
  }
}

.art-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  color: var(--color-white);
  background: rgba(2, 25, 47, .72);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 25px rgba(0, 0, 0, .16);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.art-chip i {
  color: var(--color-cyan);
}

.hero-visual--hosting .art-chip {
  gap: 8px;
  padding: 12px 16px;
  background: rgba(3, 29, 55, .62);
  border-color: rgba(255, 255, 255, .16);
  box-shadow: 0 15px 30px rgba(0, 0, 0, .16);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
  backdrop-filter: blur(12px);
}

.chip-one {
  top: 12%;
  left: 4%;
}

.chip-two {
  top: 20%;
  right: 2%;
}

.chip-three {
  right: 10%;
  bottom: 15%;
}

.art-chip--speed {
  top: 5%;
  left: 3%;
}

.art-chip--backup {
  right: 0;
  top: 28%;
}

.art-chip--secure {
  left: 6%;
  bottom: 8%;
}

.art-chip--top-left {
  left: 2%;
  top: 15%;
}

.art-chip--right-low {
  right: 0;
  bottom: 17%;
}

.art-chip--bottom-left {
  left: 8%;
  bottom: 8%;
}

/* 22. Reusable component: Proof ribbon
   -------------------------------------------------------------------------- */
.proof-ribbon {
  position: relative;
  z-index: 8;
  padding: 0;
}

.proof-ribbon--hero-overlap {
  margin-top: -174px;
  background: linear-gradient(to bottom, transparent 0 174px, var(--color-white) 174px 100%);
}

.proof-ribbon__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 178px;
  padding: 0;
  background: var(--color-white);
  border: 1px solid var(--color-line-blue);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 60px rgba(3, 29, 55, .13);
  overflow: hidden;
}

.proof-ribbon__grid--compact {
  min-height: 158px;
}

.proof-ribbon__grid--compact .proof-stat {
  padding: 28px 14px;
}

.proof-ribbon__grid--compact .proof-stat strong {
  font-size: 24px;
}

.proof-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 30px 18px;
  text-align: center;
}

.proof-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  bottom: 25%;
  width: 1px;
  background: #e1ebf2;
}

.proof-stat i {
  display: block;
  margin: 0 0 10px;
  color: var(--color-blue);
  font-size: 18px;
  line-height: 1;
}

.proof-stat strong,
.proof-stat > span {
  display: block;
}

.proof-stat strong {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
  color: var(--color-electric);
  font: 800 30px var(--font-heading);
  line-height: 1;
}

.proof-stat strong b {
  font: inherit;
}

.proof-stat > span {
  margin-top: 5px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .proof-ribbon__grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .proof-stat {
    grid-column: span 2;
  }

  .proof-stat:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .proof-stat:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .proof-stat:nth-child(3)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .proof-ribbon--hero-overlap {
    margin-top: -40px;
    background: linear-gradient(to bottom, transparent 0 40px, var(--color-white) 40px 100%);
  }

  .proof-ribbon__grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-stat {
    grid-column: auto;
    padding: 18px 10px;
  }

  .proof-stat:nth-child(4),
  .proof-stat:nth-child(5) {
    grid-column: auto;
  }

  .proof-stat::after {
    display: none;
  }

  .proof-stat:last-child {
    grid-column: 1 / -1;
  }

  .proof-stat strong {
    font-size: 20px;
  }
}

/* 23. Reusable component: Split banner
   -------------------------------------------------------------------------- */
.split-banner {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  color: var(--color-ink);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 55px -24px rgba(3, 29, 55, .16), 0 8px 20px -16px rgba(3, 29, 55, .1);
  overflow: hidden;
}

.split-banner-card {
  display: grid;
  grid-template-columns: 1fr 130px;
  gap: 22px;
  align-items: center;
  padding: 30px;
}

.split-banner h2 {
  margin: 7px 0 8px;
  font-size: 27px;
}

.split-banner h3 {
  margin: 0 0 15px;
  font-size: 18px;
}

.split-banner p {
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.7;
}

.split-banner-card--stat p {
  font-size: 15px;
  line-height: 1.45;
}

.split-banner-card--green {
  color: var(--color-white);
  background: linear-gradient(135deg, #0d947b, #19c5a9);
}

.split-banner-card--green h2,
.split-banner-card--green h3 {
  color: var(--color-white);
}

.split-banner-card--green .mini-label {
  color: #baffea;
}

.split-banner-card--green a {
  font-size: 14px;
  font-weight: 700;
}

.split-banner-media {
  display: grid;
  place-items: center;
  height: 150px;
}

.split-banner-media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  filter: drop-shadow(0 12px 18px rgba(3, 29, 55, .14));
}

.badge-image img {
  max-height: 138px;
}

.green-image img {
  max-height: 150px;
}

/* 24. Reusable component: Feature cards
   -------------------------------------------------------------------------- */
.services {
  position: relative;
  padding-top: 130px;
  background: var(--color-paper);
  overflow-x: clip;
  isolation: isolate;
}

.services > .container {
  position: relative;
  z-index: 2;
}

.feature-card-grid--large {
  max-width: 1040px;
  margin-inline: auto;
  gap: 28px;
}

.feature-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  isolation: isolate;
  overflow: hidden;
}

.feature-card--large {
  min-height: 410px;
  padding: 38px;
}

.feature-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 0 auto;
  height: 5px;
  background: var(--gradient-blue-accent-line);
  opacity: 1;
  transition: opacity var(--duration-slow), background var(--duration-slow);
}

.feature-card > * {
  position: relative;
  z-index: 2;
}

.feature-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.card-pill {
  padding: 7px 10px;
  color: var(--color-muted-light);
  background: rgba(8, 124, 255, .06);
  border: 1px solid rgba(8, 124, 255, .15);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.feature-card-kicker {
  flex: 0 0 auto;
}

.feature-card-grid--large .circular-placeholder {
  width: 82px;
  height: 82px;
}

.feature-card-grid--large .circular-placeholder i {
  font-size: 29px;
}

.feature-card h3 {
  margin: 9px 0 14px;
}

.feature-card--large h3 {
  font-size: 29px;
}

.feature-card p {
  flex: 1;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.7;
}

.feature-card--large p {
  max-width: 440px;
  font-size: 17px;
  line-height: 1.75;
}

.feature-card-bottom {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(8, 124, 255, .12);
}

.feature-card--large .feature-card-bottom {
  margin-top: 30px;
}

.price,
.feature-card-bottom .price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  padding: 0;
  background: transparent;
}

.price span,
.price small {
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 600;
}

.price strong {
  color: var(--color-electric);
  font: 700 28px var(--font-heading);
}

.feature-card-bottom .price {
  flex: 1;
}

.feature-card-bottom > a {
  flex: 0 0 50px;
  display: grid;
  place-items: center;
  height: 50px;
  color: var(--color-white);
  background: var(--color-navy-soft);
  border-radius: var(--radius-circle);
  box-shadow: 0 10px 22px rgba(3, 61, 112, .2);
  transition: transform var(--duration-slow) var(--ease-standard), background var(--duration-slow) var(--ease-standard), color var(--duration-slow) var(--ease-standard);
}

.feature-card:hover {
  color: var(--color-white);
  background: var(--gradient-blue-card);
  border-color: transparent;
  box-shadow: var(--shadow-blue);
}

.feature-card:hover::before {
  background: var(--gradient-blue-card);
}

.feature-card:hover .feature-card-kicker,
.feature-card:hover .feature-card-top > span {
  color: #b8faff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .2);
}

.feature-card:hover .circular-placeholder {
  border-color: rgba(255, 255, 255, .35);
}

.feature-card:hover h3,
.feature-card:hover .price strong {
  color: var(--color-white);
}

.feature-card:hover p,
.feature-card:hover .price span,
.feature-card:hover .price small {
  color: rgba(255, 255, 255, .72);
}

.feature-card:hover .feature-card-bottom {
  border-color: rgba(255, 255, 255, .16);
}

.feature-card:hover .feature-card-bottom > a {
  color: var(--color-navy);
  background: var(--color-cyan);
  transform: rotate(-30deg);
}

.feature-card--inverted {
  color: var(--color-white);
  background: var(--gradient-blue-card);
  border-color: transparent;
  box-shadow: 0 24px 55px rgba(3, 61, 112, .2);
}

.feature-card--inverted::before {
  height: 100%;
  background: var(--gradient-blue-card);
}

.feature-card--inverted .feature-card-kicker {
  color: #b8faff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .2);
}

.feature-card--inverted .circular-placeholder,
.feature-card--inverted .feature-card-bottom > a {
  color: var(--color-navy);
  background: var(--color-cyan);
  box-shadow: none;
}

.feature-card--inverted h3,
.feature-card--inverted .agency-price strong {
  color: var(--color-white);
}

.feature-card--inverted p {
  color: rgba(255, 255, 255, .78);
}

.feature-card--inverted .feature-card-bottom {
  border-color: rgba(255, 255, 255, .16);
}

.feature-card--inverted:hover {
  color: var(--color-ink);
  background: var(--color-white);
  border-color: var(--color-line-blue);
  box-shadow: 0 24px 55px rgba(3, 29, 55, .12);
}

.feature-card--inverted:hover::before {
  opacity: 0;
}

.feature-card--inverted:hover .feature-card-kicker,
.feature-card--inverted:hover .feature-card-top > span {
  color: var(--color-blue);
  background: #edf6ff;
  border-color: #d7e9f7;
}

.feature-card--inverted:hover .circular-placeholder {
  color: var(--color-white);
  background: var(--gradient-blue-vivid);
  border-color: transparent;
  box-shadow: 0 12px 25px rgba(3, 29, 55, .16);
}

.feature-card--inverted:hover .circular-placeholder i {
  color: var(--color-white);
}

.feature-card--inverted:hover h3 {
  color: var(--color-ink);
}

.feature-card--inverted:hover p {
  color: var(--color-muted);
}

.feature-card--inverted:hover .feature-card-bottom {
  border-color: #dce8f1;
}

.feature-card--inverted:hover .agency-price strong {
  color: var(--color-electric);
}

.feature-card--inverted:hover .feature-card-bottom > a {
  color: var(--color-white);
  background: #063d70;
}

/* 25. Reusable component: CTA banner
   -------------------------------------------------------------------------- */
.cta-section {
  position: relative;
  padding: 0 0 100px;
  background: var(--color-paper);
  overflow-x: clip;
}

.cta-section--white {
  padding: 110px 0;
  background: var(--color-white);
}

.cta-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 50px;
  color: var(--color-white);
  background: radial-gradient(circle at 80% 20%, rgba(24, 211, 223, .35), transparent 30%), var(--gradient-blue-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-section);
  overflow: hidden;
}

.cta-banner::after {
  --halo-size: 220px;
  --halo-right: 10%;
  --halo-border: rgba(255, 255, 255, .12);
  --halo-shadow: none;
}

.cta-banner > * {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  margin-bottom: 8px;
  color: var(--color-white);
  font-size: 35px;
}

.cta-banner p {
  color: rgba(255, 255, 255, .65);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.value-banner-section {
  padding-top: calc(var(--section-y) + var(--section-angle-size, 72px));
}

.value-banner {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 38px;
  padding: 42px;
}

.value-banner::after {
  --halo-size: 235px;
  --halo-right: -34px;
  --halo-top: 50%;
  --halo-bottom: auto;
  transform: translateY(-50%);
}

.value-banner h2 {
  color: var(--color-white);
  font-size: clamp(34px, 4vw, 54px);
}

.value-banner p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  line-height: 1.75;
}

.value-banner .check-list {
  gap: 13px;
  margin: 0;
}

.value-banner .check-list li {
  padding-left: 30px;
  color: rgba(255, 255, 255, .82);
  font-weight: 600;
}

.value-banner__action {
  display: grid;
  justify-items: center;
  gap: 20px;
}

@media (max-width: 1024px) {
  .value-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .value-banner .check-list {
    max-width: 560px;
    margin-inline: auto;
    text-align: left;
  }
}

/* 26. Reusable component: Alternating timeline
   -------------------------------------------------------------------------- */
.timeline-section {
  position: relative;
  padding-bottom: calc(var(--section-y) + 65px);
  background: var(--color-white);
  overflow: hidden;
}

.timeline-section--paper {
  background: var(--color-paper-blue);
}

.timeline-section > .container {
  position: relative;
  z-index: 2;
}

.timeline-path {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 150px;
  row-gap: 80px;
  max-width: 1050px;
  margin: auto;
  padding: 0;
  list-style: none;
}

.timeline-path--offset {
  row-gap: 74px;
}

.timeline-path--offset::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 5%;
  bottom: 5%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--color-electric) 12%, var(--color-cyan) 88%, transparent);
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 5%;
  bottom: 5%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--color-electric) 12%, var(--color-cyan) 88%, transparent);
}

.timeline-line::before,
.timeline-line::after {
  content: "";
  display: none;
  position: absolute;
  left: 50%;
  width: 9px;
  height: 9px;
  background: var(--color-cyan);
  border-radius: var(--radius-circle);
  box-shadow: 0 0 0 7px rgba(24, 211, 223, .12);
  transform: translateX(-50%);
}

.timeline-line::before {
  top: 0;
}

.timeline-line::after {
  bottom: 0;
}

.timeline-point {
  position: relative;
  min-height: 200px;
  padding: 12px 0;
}

.timeline-point:nth-of-type(even) {
  grid-column: 2;
}

.timeline-path--offset .timeline-point:nth-of-type(even) {
  transform: translateY(98px);
}

.timeline-point:nth-of-type(odd) {
  grid-column: 1;
  text-align: right;
}

.timeline-path--offset .timeline-point {
  min-height: 165px;
  padding: 8px 0;
}

.timeline-path--offset .timeline-point:nth-of-type(odd) {
  text-align: left;
}

.timeline-copy > span {
  display: block;
  margin-bottom: 12px;
  color: var(--color-electric);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.timeline-copy h3 {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
  color: var(--color-navy);
  font-size: 25px;
}

.timeline-point:nth-of-type(odd) .timeline-copy h3 {
  justify-content: flex-end;
}

.timeline-path--offset .timeline-point:nth-of-type(odd) .timeline-copy h3 {
  justify-content: flex-start;
}

.timeline-copy h3 i {
  flex: 0 0 40px;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--color-white);
  background: var(--gradient-blue-action);
  border-radius: var(--radius-circle);
  box-shadow: 0 10px 22px rgba(8, 124, 255, .18);
  font-size: 14px;
  transition: transform var(--duration-slow) var(--ease-standard), background var(--duration-slow) var(--ease-standard), color var(--duration-slow) var(--ease-standard);
}

.timeline-copy p {
  color: var(--color-muted);
  line-height: 1.75;
}

.timeline-path--offset .timeline-copy h3 {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  justify-content: start;
}

.timeline-path--offset .timeline-copy p {
  margin: 0;
  padding-left: 53px;
}

/* 27. Reusable component: Angled feature section
   -------------------------------------------------------------------------- */
.angled-feature {
  position: relative;
  padding-top: calc(var(--section-y) + 35px);
  padding-bottom: calc(var(--section-y) + 50px);
  background: var(--color-paper-blue);
  overflow: visible;
}

.angled-feature-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 93, 172, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 93, 172, .045) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(90deg, transparent, black);
}

.angled-feature-layout {
  position: relative;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 70px;
}

.angled-feature-copy h2 {
  font-size: clamp(45px, 6vw, 74px);
}

.angled-feature-copy h3 {
  color: var(--color-electric);
  font-size: 20px;
}

.angled-feature-copy p {
  color: var(--color-muted);
}

.angled-feature-copy .button {
  margin-top: 20px;
}

.moving-asset-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
}

.moving-asset-stage img {
  max-height: 430px;
  width: auto;
  opacity: 0;
  transform: translateX(160px);
  filter: drop-shadow(0 24px 22px rgba(3, 29, 55, .16));
  transition: opacity 1.62s ease, transform 2.48s var(--ease-standard);
}

.moving-asset-stage.is-visible img {
  opacity: 1;
  transform: translateX(0);
}

/* 28. Homepage composition: Green / sustainability section
   -------------------------------------------------------------------------- */
.green {
  position: relative;
  color: var(--color-white);
  background: var(--gradient-green);
  overflow: hidden;
}

.green > .container {
  position: relative;
  z-index: 2;
}

.green-heading {
  position: relative;
}

.green-heading h2,
.green-card h3 {
  color: var(--color-white);
}

.green-heading p {
  max-width: 820px;
  margin-inline: auto;
  color: rgba(255, 255, 255, .84);
  font-weight: 400;
  line-height: 1.7;
}

.green-card {
  padding: 38px;
  color: var(--color-white);
  background: rgba(2, 49, 43, .32);
  border: 1px solid rgba(255, 255, 255, .25);
  box-shadow: 0 20px 45px rgba(1, 42, 36, .18);
  backdrop-filter: blur(15px);
}

.green-card:hover {
  background: rgba(2, 49, 43, .45);
  border-color: rgba(168, 255, 229, .45);
  box-shadow: 0 25px 55px rgba(1, 42, 36, .25);
}

.green-card > i {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 25px;
  color: #073f36;
  background: #a8ffe5;
  border-radius: 17px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .14);
  font-size: 22px;
}

.green-card h3 {
  margin-bottom: 14px;
  font-size: 21px;
}

.green-card p {
  color: rgba(255, 255, 255, .88);
  line-height: 1.75;
}

/* 29. Reusable component: Feature list cards
   -------------------------------------------------------------------------- */
.hassle {
  position: relative;
  background: var(--color-paper);
  overflow-x: clip;
}

.hassle > .container {
  position: relative;
  z-index: 2;
}

.hassle-heading {
  max-width: 780px;
}

.feature-list-card {
  isolation: isolate;
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 22px;
  align-items: start;
  min-height: 180px;
  padding: 28px;
  background: var(--color-white);
  border: 1px solid var(--color-line-blue);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 34px rgba(3, 29, 55, .07);
  overflow: hidden;
}

.feature-list-card h3,
.feature-list-card p,
.feature-list-card .small-icon {
  position: relative;
  z-index: 2;
  transition: color var(--duration-standard), background var(--duration-standard), transform var(--duration-standard), box-shadow var(--duration-standard);
}

.feature-list-card h3 {
  margin-bottom: 7px;
  font-size: 19px;
}

.feature-list-card p {
  color: var(--color-muted);
  line-height: 1.7;
}

@media (max-width: 768px), (hover: none), (pointer: coarse) {
  .card,
  .feature-card,
  .feature-list-card,
  .green-card,
  .pricing-card,
  .option-card,
  .support-card,
  .timeline-point,
  .tld-card {
    pointer-events: none;
  }

  .card a,
  .card button,
  .feature-card a,
  .feature-card button,
  .feature-list-card a,
  .feature-list-card button,
  .green-card a,
  .green-card button,
  .pricing-card a,
  .pricing-card button,
  .option-card a,
  .option-card button,
  .support-card a,
  .support-card button,
  .timeline-point a,
  .timeline-point button,
  .tld-card a,
  .tld-card button {
    pointer-events: auto;
  }
}

/* 30. Homepage composition: Testimonials
   -------------------------------------------------------------------------- */
.testimonials {
  position: relative;
  color: var(--color-white);
  background: var(--gradient-blue-deep);
  overflow: hidden;
}

.testimonials > .container {
  position: relative;
  z-index: 2;
}

.testimonial-glow {
  left: 50%;
  top: 40%;
  width: 500px;
  height: 500px;
  background: rgba(24, 211, 223, .13);
  filter: blur(70px);
  transform: translate(-50%, -50%);
}

.testimonial-heading h2,
.testimonial h3 {
  color: var(--color-white);
}

.testimonial-heading p {
  color: rgba(255, 255, 255, .65);
}

.carousel {
  position: relative;
  max-width: 900px;
  min-height: 520px;
  margin: auto;
  padding: 35px 100px 110px;
}

.carousel-track {
  position: relative;
  min-height: 390px;
}

.testimonial {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration-slow), transform var(--duration-slow);
  pointer-events: none;
}

.testimonial.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.testimonial h3 {
  margin: 0;
  font-size: clamp(25px, 3.5vw, 42px);
}

.testimonial blockquote {
  max-width: 720px;
  margin: 28px auto 22px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.65;
  letter-spacing: 0;
}

.testimonial strong,
.testimonial span {
  display: block;
}

.testimonial strong {
  font-size: 16px;
  font-weight: 500;
}

.testimonial span {
  color: rgba(255, 255, 255, .55);
  font-size: 14px;
}

.carousel-button {
  position: absolute;
  z-index: 3;
  top: 45%;
  width: 48px;
  height: 48px;
  color: var(--color-white);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-circle);
}

.carousel-button:hover {
  color: var(--color-navy);
  background: var(--color-cyan);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 38px;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}

.carousel-dots button {
  width: 6px;
  height: 6px;
  padding: 0;
  background: rgba(255, 255, 255, .35);
  border: 0;
  border-radius: var(--radius-md);
}

.carousel-dots button.active {
  width: 25px;
  background: var(--color-cyan);
}

/* 31. Web hosting composition
   -------------------------------------------------------------------------- */
.hosting-benefits {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.benefits-intro h2 {
  font-size: clamp(43px, 5vw, 70px);
}

.benefits-intro p {
  color: var(--color-muted);
  font-size: 17px;
}

.benefits-intro .text-link {
  margin-top: 18px;
}

.hosting-pricing {
  position: relative;
  background: var(--color-paper-blue);
  overflow: hidden;
  isolation: isolate;
}

.hosting-pricing > .container {
  position: relative;
  z-index: 2;
}

.hosting-pricing .plan-assurances {
  margin: -35px auto 45px;
}

.hosting-pricing .billing-toggle {
  margin: -18px auto 48px;
}

.hosting-stories > .container {
  position: relative;
  z-index: 2;
}

.hosting-stories {
  position: relative;
  background: var(--color-white);
  overflow: hidden;
}

.hosting-stories__callout {
  margin-top: 110px;
}

.feature-explorer {
  position: relative;
  background: var(--color-paper-blue);
  padding-bottom: 165px;
  overflow: hidden;
}

.green-hosting-statement {
  z-index: 2;
  padding-block: 130px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

@media (max-width: 768px) {
  .feature-explorer {
    padding-bottom: 105px;
  }

  .green-hosting-statement {
    padding-block: 100px;
  }

}

/* 32. Domains composition
   -------------------------------------------------------------------------- */
.domain-checker-section {
  padding: 68px 0 100px;
}

.domain-checker-section .section-heading {
  max-width: 860px;
  margin-bottom: 28px;
}

.domain-popular-section {
  padding: 38px 0 100px;
}

.domain-transfer {
  padding: 145px 0 125px;
}

/* 33. Reusable component: Legal pages
   -------------------------------------------------------------------------- */
.legal-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 560px;
  padding: 180px 0 100px;
  color: var(--color-white);
  background: radial-gradient(circle at 82% 18%, rgba(24, 211, 223, .2), transparent 28%), var(--gradient-blue-deep);
  overflow: hidden;
}

.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .75), transparent 82%);
  opacity: .55;
}

.legal-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
}

.legal-hero-copy h1 {
  max-width: 780px;
  margin: 18px 0 22px;
  color: var(--color-white);
  font-size: clamp(54px, 7vw, 88px);
  line-height: .96;
}

.legal-hero-copy > p:not(.legal-updated) {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 20px;
  line-height: 1.75;
}

.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  margin-top: 18px;
  padding: 7px 11px;
  color: #cceaf3;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.legal-updated i {
  color: var(--color-cyan);
}

.legal-hero-copy .hero-actions {
  margin-top: 34px;
}

.legal-content-section {
  background: var(--color-paper-blue);
}

.legal-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: start;
  gap: 34px;
}

.legal-toc {
  position: sticky;
  top: 112px;
  max-height: calc(100vh - 136px);
  padding: 24px;
  background: var(--color-white);
  border: 1px solid var(--color-line-blue);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 45px rgba(3, 29, 55, .07);
  overflow: auto;
}

.legal-toc strong {
  display: block;
  margin-bottom: 14px;
  color: var(--color-navy);
  font: 800 15px var(--font-heading);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-toc nav {
  display: grid;
  gap: 4px;
}

.legal-toc a {
  display: block;
  padding: 9px 10px;
  color: #536c82;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--color-electric);
  background: #edf6fb;
}

.legal-document {
  min-width: 0;
}

.legal-intro,
.legal-section {
  padding: 38px 42px;
  background: var(--color-white);
  border: 1px solid var(--color-line-blue);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 45px rgba(3, 29, 55, .06);
}

.legal-section {
  margin-top: 18px;
}

.legal-intro p,
.legal-section p {
  margin: 0 0 18px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.82;
}

.legal-intro p:last-child,
.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  display: grid;
  gap: 9px;
  margin: 0 0 22px;
  padding-left: 22px;
  color: var(--color-muted);
  line-height: 1.78;
}

.legal-section li::marker {
  color: var(--color-electric);
}

.legal-section h2 {
  margin: 0 0 24px;
  color: var(--color-navy);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
}

.legal-section h3 {
  margin: 26px 0 10px;
  color: var(--color-electric);
  font: 800 18px var(--font-heading);
}

.legal-section strong,
.legal-intro strong {
  color: var(--color-navy);
}

@media (max-width: 1024px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-hero {
    min-height: auto;
    padding: 158px 0 82px;
  }

  .legal-toc {
    position: relative;
    top: auto;
    max-height: 360px;
  }
}

@media (max-width: 480px) {
  .legal-hero-copy h1 {
    font-size: 46px;
  }

  .legal-hero-copy > p:not(.legal-updated) {
    font-size: 17px;
  }

  .legal-hero-copy .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-intro,
  .legal-section {
    padding: 24px;
    border-radius: var(--radius-md);
  }

  .legal-content-section {
    padding-top: 64px;
  }

  .legal-section h2 {
    font-size: 27px;
  }
}

/* 34. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  position: relative;
  padding: 80px 0 42px;
  color: var(--color-white);
  background: var(--color-navy);
  overflow: hidden;
}

.site-footer::before {
  --halo-right: -280px;
  --halo-bottom: -330px;
}

.site-footer::after {
  --halo-size: 310px;
  --halo-top: -190px;
  --halo-left: -210px;
  --halo-border: rgba(8, 124, 255, .2);
  --halo-shadow: 0 0 0 55px rgba(8, 124, 255, .055);
}

.site-footer > .container {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(430px, 1.45fr) minmax(220px, .9fr);
  gap: 55px;
  align-items: start;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.footer-grid .brand img {
  width: 160px;
}

.footer-grid p {
  margin-top: 18px;
  color: rgba(255, 255, 255, .55);
  font-size: 14px;
}

.footer-grid strong {
  margin-bottom: 10px;
  color: var(--color-cyan);
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-link-group {
  min-width: 0;
  padding-top: 28px;
  align-items: flex-start;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
}

.footer-menu span {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, .58);
}

.footer-grid a:not(.brand) {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
}

.footer-grid .footer-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: none;
  margin-bottom: 0;
  padding-bottom: 4px;
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
}

.footer-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--color-cyan);
  box-shadow: 0 0 10px rgba(24, 211, 223, .55);
  transition: right var(--duration-fast);
}

.footer-menu a:hover,
.footer-grid a:not(.brand):hover {
  color: var(--color-white);
}

.footer-menu a:hover::after {
  right: 0;
}

.footer-menu i {
  display: block;
  width: 1px;
  height: 1em;
  margin: 0 13px;
  background: var(--color-cyan);
  opacity: .55;
}

.drayton-details img {
  width: min(160px, 100%);
  margin-bottom: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: flex-start;
  margin-top: 54px;
  padding-top: 20px;
  color: rgba(255, 255, 255, .46);
  border-top: 1px solid rgba(255, 255, 255, .11);
  font-size: 14px;
}

.footer-bottom-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-bottom a,
.footer-cookie-link {
  appearance: none;
  padding: 0;
  color: rgba(255, 255, 255, .46);
  background: transparent;
  border: 0;
  border-radius: 0;
  font: inherit;
  line-height: inherit;
  transition: color var(--duration-fast);
}

.footer-bottom a:hover,
.footer-cookie-link:hover,
.footer-cookie-link:focus-visible {
  color: var(--color-cyan);
}

/* 35. Cookie controls
   -------------------------------------------------------------------------- */
.cookie-consent[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-consent {
  position: fixed;
  z-index: 120;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  pointer-events: none;
}

.cookie-consent__panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  padding: 22px;
  color: var(--color-white);
  background: rgba(3, 29, 55, .96);
  border: 1px solid rgba(24, 211, 223, .32);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
  backdrop-filter: blur(16px);
  pointer-events: auto;
}

.cookie-consent h2,
.cookie-modal h2 {
  margin: 0 0 8px;
  color: var(--color-white);
  font-size: 1.35rem;
}

.cookie-consent p,
.cookie-modal p {
  color: #cbe1ed;
  font-size: 14px;
  line-height: 1.65;
}

.cookie-consent__actions,
.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-modal {
  position: fixed;
  z-index: 130;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 14, 29, .72);
  backdrop-filter: blur(8px);
}

.cookie-modal__panel {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  padding: 34px;
  background: var(--gradient-blue-footer);
  border: 1px solid rgba(24, 211, 223, .34);
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .48);
  overflow: auto;
}

.cookie-modal__close {
  position: absolute;
  right: 18px;
  top: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--color-white);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-pill);
  font-size: 1.5rem;
  line-height: 1;
}

.cookie-modal__close:hover,
.cookie-modal__close:focus-visible {
  color: var(--color-cyan);
  border-color: rgba(24, 211, 223, .75);
}

.cookie-eyebrow {
  margin-bottom: 14px;
  color: var(--color-cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.cookie-options {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.cookie-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-sm);
}

.cookie-option strong {
  display: block;
  margin-bottom: 5px;
  color: var(--color-white);
}

.cookie-option input {
  width: 24px;
  height: 24px;
  accent-color: var(--color-cyan);
}

.cookie-required {
  padding: 6px 10px;
  color: var(--color-cyan);
  border: 1px solid rgba(24, 211, 223, .34);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* 36. Motion and reveal
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* 37. Responsive rules
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-link-group,
  .footer-menu {
    align-items: flex-start;
  }
}

@media (max-width: 1024px) {
  .angled-feature-layout,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-layout--balanced {
    grid-template-columns: minmax(460px, 1.08fr) minmax(0, .92fr);
    gap: 32px;
  }

  .split-banner {
    position: relative;
    bottom: auto;
    margin-top: 50px;
  }

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

  .top-accent--right {
    --top-accent-gradient: linear-gradient(90deg, var(--color-electric), var(--color-cyan));
  }

}

@media (max-width: 768px) {
  :root {
    --anchor-offset: 116px;
  }

  .timeline-path {
    grid-template-columns: 34px 1fr;
    column-gap: 20px;
    row-gap: 35px;
    max-width: 720px;
  }

  .timeline-line {
    left: 17px;
  }

  .timeline-path--offset::before {
    left: 17px;
  }

  .timeline-point,
  .timeline-point:nth-of-type(even),
  .timeline-point:nth-of-type(odd) {
    grid-column: 2;
    min-height: auto;
    padding-bottom: 20px;
    text-align: left;
    transform: none;
  }

  .timeline-point:nth-of-type(odd) .timeline-copy h3 {
    justify-content: flex-start;
  }

  .timeline-path--offset .timeline-point:nth-of-type(even) {
    transform: none;
  }

  .timeline-copy h3 {
    font-size: 21px;
  }

  .timeline-copy h3 i {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  :root {
    --gutter: 28px;
  }

  h1 {
    font-size: clamp(40px, 6vw, 50px);
  }

  h2 {
    font-size: clamp(34px, 6vw, 46px);
  }

  .section {
    padding-block: 85px;
  }

  .section--after-hero-no-banner {
    padding-top: 65px;
  }

  .utility-inner nav {
    gap: 12px;
  }

  .utility-inner nav a {
    font-size: 0;
  }

  .utility-inner nav i {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, .08);
    border-radius: var(--radius-circle);
    font-size: 9px;
  }

  .nav-shell {
    position: relative;
    z-index: 103;
    height: 66px;
  }

  .brand img {
    width: 108px;
  }

  .site-header {
    height: auto;
  }

  body.menu-open .site-header {
    height: 100dvh;
    pointer-events: none;
  }

  body.menu-open .nav-shell,
  body.menu-open .site-nav,
  body.menu-open .menu-toggle {
    pointer-events: auto;
  }

  .site-header::after {
    content: "";
    position: fixed;
    z-index: 99;
    inset: 0;
    background: rgba(1, 14, 29, .58);
    opacity: 0;
    visibility: hidden;
    transition: var(--duration-standard);
    backdrop-filter: blur(5px);
    pointer-events: none;
  }

  body.menu-open .site-header::after {
    opacity: 1;
    visibility: visible;
  }

  .menu-toggle {
    position: relative;
    z-index: 120;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 46px;
    height: 46px;
    padding: 10px;
    background: rgba(3, 29, 55, .28);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 15px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, .12);
    backdrop-filter: blur(10px);
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 4px;
    transform-origin: center;
    transition: transform .28s, opacity .2s, width var(--duration-fast);
  }

  .menu-toggle.active span:first-child {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    width: 0;
    opacity: 0;
  }

  .menu-toggle.active span:last-child {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    z-index: 104;
    inset: 112px 14px auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 28px 20px;
    background:
      radial-gradient(circle at 85% 8%, rgba(24, 211, 223, .18), transparent 28%),
      var(--gradient-blue-nav);
    border: 1px solid rgba(137, 247, 255, .17);
    border-radius: 30px;
    box-shadow: 0 28px 75px rgba(0, 0, 0, .4), inset 0 1px rgba(255, 255, 255, .08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px) scale(.98);
    pointer-events: none;
    overflow: hidden;
    transition: var(--duration-standard) var(--ease-standard);
  }

  .site-nav::before {
    content: "";
    position: absolute;
    right: -20px;
    bottom: -140px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(24, 211, 223, .18);
    border-radius: var(--radius-circle);
    box-shadow: 0 0 0 36px rgba(24, 211, 223, .045), 0 0 0 72px rgba(24, 211, 223, .02);
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .site-nav a {
    position: relative;
    z-index: 2;
    padding: 22px 20px;
    color: rgba(255, 255, 255, .76);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font: 600 18px var(--font-heading);
    letter-spacing: -.02em;
    text-decoration: none;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after,
  .nav-mega::after {
    display: none;
  }

  .site-nav a:hover::after,
  .site-nav .active::after {
    display: none;
  }

  .site-nav a:hover:not(.mega-trigger),
  .site-nav .active:not(.mega-trigger),
  .site-nav > .nav-mega > .mega-trigger:hover span,
  .site-nav > .nav-mega > .mega-trigger.active span,
  .nav-mega.mobile-open .mega-trigger span {
    text-decoration: underline;
    text-decoration-color: var(--color-cyan);
  }

  .nav-mega {
    position: relative;
    z-index: 2;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .site-nav > .nav-mega > .mega-trigger {
    padding: 22px 20px 14px;
    border-bottom: 0;
  }

  .site-nav > .nav-mega > .mega-trigger span {
    text-decoration: none;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
  }

  .site-nav .nav-mega .mega-trigger i {
    margin-left: auto;
    font-size: 9px;
    transform: none;
  }

  .site-nav .nav-mega.mobile-open .mega-trigger i {
    transform: rotate(180deg);
  }

  .mega-menu {
    position: static;
    width: auto;
    max-height: 0;
    padding: 0 8px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: none;
    overflow: hidden;
    backdrop-filter: none;
    transition: max-height var(--duration-slow) ease, opacity var(--duration-fast) ease, padding var(--duration-slow) ease;
  }

  .mega-menu::before {
    display: none;
  }

  .nav-mega.mobile-open .mega-menu {
    max-height: 320px;
    padding: 0 8px 15px;
    opacity: 1;
    visibility: visible;
  }

  .mega-grid {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .site-nav .mega-grid > a {
    grid-template-columns: 43px 1fr 18px;
    min-height: 68px;
    padding: 10px 12px;
    color: var(--color-white);
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 15px;
    text-decoration: none;
  }

  .site-nav .mega-grid > a:hover,
  .site-nav .mega-grid > a.active {
    color: var(--color-white);
    background: rgba(255, 255, 255, .11);
    border-color: rgba(137, 247, 255, .25);
    text-decoration: none;
  }

  .site-nav .mega-grid > a:hover > i,
  .site-nav .mega-grid > a.active > i {
    color: var(--color-navy);
    background: var(--color-cyan);
  }

  .site-nav .mega-grid > a:hover b,
  .site-nav .mega-grid > a.active b {
    color: rgba(255, 255, 255, .72);
  }

  .site-nav .mega-grid > a > i {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 15px;
  }

  .site-nav .mega-grid strong {
    margin: 0;
    color: var(--color-white);
    font-size: 13px;
  }

  .site-nav .mega-grid small {
    display: none;
  }

  .site-nav .mega-grid b {
    color: rgba(255, 255, 255, .42);
    font-size: 9px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content h1,
  .hero-content > p,
  .hero-subhead {
    margin-inline: auto;
  }

  .hero-badge-list,
  .hero-actions,
  .hero-assurances {
    justify-content: center;
  }

  .hero-section {
    min-height: auto;
    padding: 185px 0 155px;
  }

  .hero-section::after,
  .hero-ambient-glow,
  .art-chip {
    display: none;
  }

  .hero-layout {
    gap: 100px;
  }

  .hero-visual {
    min-height: auto;
  }

  .floating-media {
    width: min(360px, 90vw);
  }

  .media-orbit {
    box-shadow: 0 0 0 24px rgba(142, 239, 255, .055), 0 0 0 48px rgba(142, 239, 255, .025);
  }

  .media-orbit--hosting {
    box-shadow: 0 0 0 25px rgba(142, 239, 255, .05), 0 0 0 50px rgba(142, 239, 255, .024);
  }

  .media-orbit--cloud {
    box-shadow: 0 0 0 26px rgba(142, 239, 255, .052), 0 0 0 52px rgba(142, 239, 255, .024);
  }

  .media-orbit--domains {
    box-shadow: 0 0 0 25px rgba(142, 239, 255, .052), 0 0 0 50px rgba(142, 239, 255, .024);
  }

  .hero-section--wordpress {
    padding: 155px 0;
  }

  .hero-section--wordpress::after {
    display: block;
    inset: auto -18% -52px;
    height: 105px;
  }

  .hero-content--wordpress h1 {
    font-size: 49px;
  }

  .hero-content--wordpress .hero-subhead {
    font-size: 17px;
  }

  .hero-content--wordpress .hero-actions {
    flex-direction: column;
  }

  .hero-visual--wordpress {
    min-height: 300px;
  }

  .floating-media--wordpress {
    width: 105vw;
  }

  .hero-badge-list li {
    font-size: 12px;
  }

  .split-banner {
    margin-top: 95px;
    grid-template-columns: 1fr;
    border-radius: var(--radius-md);
  }

  .split-banner-card {
    grid-template-columns: 1fr 88px;
    padding: 22px;
  }

  .split-banner-media {
    height: 110px;
  }

  .grid--two,
  .grid--three,
  .grid--four {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card--large {
    min-height: auto;
    padding: 30px;
  }

  .feature-card--large h3 {
    font-size: 25px;
  }

  .cta-banner {
    display: block;
    padding: 32px;
  }

  .cta-section--white {
    padding: 75px 0;
  }

  .cta-banner .button {
    margin-top: 20px;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .feature-list-card {
    grid-template-columns: 55px 1fr;
    min-height: auto;
    padding: 20px;
    gap: 15px;
  }

  .small-icon {
    width: 50px;
    height: 50px;
  }

  .carousel {
    min-height: 520px;
    padding: 25px 44px 95px;
  }

  .carousel-button {
    width: 38px;
    height: 38px;
  }

  .footer-menu,
  .footer-menu span,
  .footer-bottom-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-menu i {
    display: none;
  }

  .cookie-consent {
    padding: 12px;
  }

  .cookie-consent__panel,
  .cookie-option {
    grid-template-columns: 1fr;
  }

  .cookie-consent__panel {
    width: 100%;
    padding: 20px;
    border-radius: 20px;
  }

  .cookie-consent__actions,
  .cookie-modal__actions {
    justify-content: flex-start;
  }

  .cookie-consent__actions .button {
    justify-content: center;
    width: 100%;
  }
}

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