:root {
  --bg: #eef4f8;
  --bg-soft: #f8fbfd;
  --bg-strong: #dde8f0;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: #ffffff;
  --surface-soft: rgba(245, 250, 253, 0.92);
  --surface-dark: #071621;
  --surface-dark-strong: #0c2230;
  --surface-dark-soft: rgba(10, 28, 40, 0.74);
  --text: #0c1b29;
  --text-light: #f2f8fb;
  --muted: #556572;
  --muted-light: #b4c4cf;
  --line: rgba(12, 27, 41, 0.1);
  --line-strong: rgba(86, 200, 255, 0.26);
  --brand: #10b2ad;
  --brand-dark: #0d6a72;
  --brand-bright: #45d9d3;
  --accent: #ff8d3b;
  --accent-strong: #ffc247;
  --signal: #56c8ff;
  --shadow: 0 26px 80px rgba(7, 22, 33, 0.14);
  --shadow-strong: 0 36px 120px rgba(7, 22, 33, 0.22);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 15.5px;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 2%, rgba(255, 141, 59, 0.16), transparent 24rem),
    radial-gradient(circle at 92% 8%, rgba(16, 178, 173, 0.18), transparent 28rem),
    linear-gradient(180deg, #edf4f8 0%, #e3edf3 45%, #f7fafc 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(12, 27, 41, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 27, 41, 0.025) 1px, transparent 1px);
  background-size: 76px 76px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 88%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 88%);
  pointer-events: none;
  z-index: -3;
}

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

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

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong), var(--signal));
  box-shadow: 0 0 24px rgba(86, 200, 255, 0.45);
}

.page-glow {
  position: fixed;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.38;
  pointer-events: none;
  z-index: -2;
  animation: glowFloat 14s ease-in-out infinite;
}

.page-glow-left {
  top: -14rem;
  left: -12rem;
  background: rgba(255, 141, 59, 0.42);
}

.page-glow-right {
  top: 6rem;
  right: -12rem;
  background: rgba(86, 200, 255, 0.34);
  animation-delay: -6s;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(7, 22, 33, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 22, 33, 0.82);
  border-bottom-color: rgba(86, 200, 255, 0.16);
  box-shadow: 0 14px 38px rgba(4, 14, 23, 0.24);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.15rem;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
}

.brand-logo {
  width: clamp(7rem, 14vw, 8.5rem);
  height: auto;
  filter:
    drop-shadow(0 8px 24px rgba(86, 200, 255, 0.2))
    drop-shadow(0 4px 14px rgba(0, 0, 0, 0.24));
}

.brand-text {
  display: flex;
  align-items: center;
}

.brand-text small {
  color: rgba(242, 248, 251, 0.7);
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a,
.nav-dropdown-toggle {
  position: relative;
  font-size: 0.89rem;
  color: rgba(242, 248, 251, 0.76);
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a::after,
.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.42rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--signal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  color: var(--text-light);
  transform: translateY(-1px);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.nav-dropdown-toggle:hover::after,
.nav-dropdown-toggle:focus-visible::after,
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.nav-dropdown-toggle::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.08rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::before,
.nav-dropdown:focus-within .nav-dropdown-toggle::before {
  transform: rotate(225deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% - 0.2rem);
  left: 50%;
  display: grid;
  gap: 0.25rem;
  min-width: 19rem;
  padding: 0.7rem;
  border-radius: 1.2rem;
  background: rgba(7, 22, 33, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-submenu a {
  padding: 0.8rem 0.9rem;
  border-radius: 0.95rem;
  color: rgba(242, 248, 251, 0.84);
  line-height: 1.35;
}

.nav-submenu a::after {
  display: none;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  transform: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
}

.site-nav .nav-cta {
  padding: 0.92rem 1.26rem;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 141, 59, 0.2), rgba(86, 200, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-light);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-nav .nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 1.65rem;
  height: 2px;
  background: var(--text-light);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  padding: 4.1rem 0 2.35rem;
  color: var(--text-light);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 141, 59, 0.34), transparent 20rem),
    radial-gradient(circle at 88% 16%, rgba(86, 200, 255, 0.28), transparent 22rem),
    linear-gradient(135deg, #071621 0%, #0c2230 52%, #0f2a3b 100%);
  z-index: -3;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 1.25rem;
  border-radius: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  pointer-events: none;
  z-index: -2;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.82fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy,
.hero-panel {
  position: relative;
}

.eyebrow,
.section-kicker,
.profile-kicker,
.panel-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.92rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(86, 200, 255, 0.16);
  color: var(--signal);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.hero .eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--signal));
  box-shadow: 0 0 16px rgba(86, 200, 255, 0.45);
  animation: pulseDot 2.6s ease-in-out infinite;
}

.section-kicker,
.profile-kicker {
  color: var(--brand-dark);
  margin-bottom: 1rem;
}

.hero h1,
.section-heading h2,
.method-intro h2,
.profile-card h2,
.cta-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 14ch;
  font-size: clamp(2.55rem, 5.8vw, 4.5rem);
  color: var(--text-light);
}

.hero h1 span {
  color: transparent;
  background:
    linear-gradient(120deg, var(--accent-strong) 0%, #ffffff 38%, var(--signal) 76%, var(--brand-bright) 100%);
  background-size: 180% 180%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradientShift 8s ease infinite;
}

.hero-text {
  max-width: 40rem;
  margin-top: 1.2rem;
  color: rgba(242, 248, 251, 0.78);
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.45rem;
  padding: 0.84rem 1.38rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -34%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-24deg);
  opacity: 0;
}

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

.button:hover::before,
.button:focus-visible::before {
  animation: buttonSweep 760ms ease;
}

.button-primary {
  background:
    linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 42%, var(--signal) 100%);
  color: #071621;
  box-shadow: 0 18px 34px rgba(255, 141, 59, 0.24);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.button-product-link {
  border-color: rgba(16, 178, 173, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(240, 247, 251, 0.96));
  color: var(--brand-dark);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 16px 28px rgba(12, 27, 41, 0.08);
}

.button-product-link:hover,
.button-product-link:focus-visible {
  border-color: rgba(86, 200, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 18px 32px rgba(12, 27, 41, 0.12);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.95rem;
}

.highlight-pill {
  padding: 0.68rem 0.94rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(242, 248, 251, 0.78);
  font-size: 0.84rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: softPulse 5s ease-in-out infinite;
}

.highlight-pill:nth-child(2) {
  animation-delay: -1.2s;
}

.highlight-pill:nth-child(3) {
  animation-delay: -2.4s;
}

.hero-signals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.signal-card {
  position: relative;
  padding: 1rem 1.1rem;
  border-radius: 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.signal-card::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -14%;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(86, 200, 255, 0.24), transparent 70%);
}

.signal-card strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text-light);
  font-size: 0.91rem;
}

.signal-card span {
  color: rgba(242, 248, 251, 0.72);
  font-size: 0.85rem;
}

.hero-panel {
  display: grid;
  gap: 1rem;
  min-height: 100%;
}

.hero-orbit {
  position: absolute;
  inset: -2.4rem -1rem auto auto;
  width: 16rem;
  height: 16rem;
  pointer-events: none;
}

.orbit-ring,
.orbit-dot {
  position: absolute;
  border-radius: 50%;
}

.orbit-ring {
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: orbitSpin 16s linear infinite;
}

.orbit-ring-2 {
  inset: 2rem;
  border-color: rgba(86, 200, 255, 0.18);
  animation-direction: reverse;
  animation-duration: 12s;
}

.orbit-dot {
  width: 0.95rem;
  height: 0.95rem;
  background: linear-gradient(135deg, var(--accent-strong), var(--signal));
  box-shadow: 0 0 20px rgba(86, 200, 255, 0.38);
  animation: orbitBob 7s ease-in-out infinite;
}

.orbit-dot-1 {
  top: 1.4rem;
  left: 3.2rem;
}

.orbit-dot-2 {
  right: 2.6rem;
  top: 5.3rem;
  animation-delay: -2s;
}

.orbit-dot-3 {
  bottom: 2.2rem;
  left: 5.6rem;
  animation-delay: -3.8s;
}

.panel-card {
  position: relative;
  padding: 1.55rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.panel-card::after {
  content: "";
  position: absolute;
  inset: auto -2rem -3rem auto;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 141, 59, 0.14), transparent 72%);
}

.panel-card-main {
  isolation: isolate;
  padding: 1.85rem;
  animation: drift 8s ease-in-out infinite;
}

.panel-card-main::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    linear-gradient(145deg, rgba(255, 141, 59, 0.36), rgba(86, 200, 255, 0.18));
  z-index: -1;
  opacity: 0.72;
}

.panel-label {
  color: var(--signal);
  margin-bottom: 1rem;
}

.panel-list {
  display: grid;
  gap: 0.95rem;
  color: var(--text-light);
}

.panel-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.panel-list li::before {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  margin-top: 0.48rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-strong), var(--brand-bright));
  box-shadow: 0 0 16px rgba(255, 194, 71, 0.28);
  flex: 0 0 auto;
}

.panel-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.panel-stack .panel-card:first-child {
  animation: drift 9s ease-in-out infinite 0.8s;
}

.panel-card p:not(.panel-label) {
  color: rgba(242, 248, 251, 0.72);
}

.hero-strip-shell {
  margin-top: 1.75rem;
  padding: 0.75rem;
  overflow: hidden;
  border-radius: 1.4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.hero-strip-track {
  display: flex;
  gap: 0.9rem;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.hero-strip-shell:hover .hero-strip-track {
  animation-play-state: paused;
}

.hero-strip-item {
  min-width: 15rem;
  padding: 1rem 1.12rem;
  border-radius: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 141, 59, 0.18), rgba(86, 200, 255, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(242, 248, 251, 0.88);
  font-size: 0.87rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.section {
  position: relative;
  padding: 4.35rem 0;
}

.section-light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.24));
}

.section-accent {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 141, 59, 0.18), transparent 20rem),
    radial-gradient(circle at 90% 78%, rgba(86, 200, 255, 0.14), transparent 24rem),
    linear-gradient(135deg, #071621 0%, #0d2433 100%);
}

.section-accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.28;
  pointer-events: none;
}

.section-heading {
  max-width: 44rem;
}

.section-heading p:not(.section-kicker) {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.97rem;
}

.section-heading h2,
.method-intro h2,
.profile-card h2,
.cta-card h2 {
  font-size: clamp(1.85rem, 4vw, 3rem);
}

.section-heading h2 {
  position: relative;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 5.2rem;
  height: 0.28rem;
  margin-top: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--signal));
}

.section-accent .section-kicker,
.section-accent .section-heading h2,
.section-accent .flow-card h3 {
  color: var(--text-light);
}

.section-accent .section-heading p:not(.section-kicker),
.section-accent .flow-card p {
  color: rgba(242, 248, 251, 0.7);
}

.feature-grid,
.service-grid,
.flow-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

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

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

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

.feature-card,
.service-card,
.flow-card,
.profile-card,
.cta-card,
.timeline-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(12, 27, 41, 0.08);
  box-shadow: var(--shadow);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.feature-card::before,
.service-card::before,
.flow-card::before,
.timeline-item::before,
.cta-card::before {
  content: "";
  position: absolute;
  inset: -35% auto auto -12%;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(86, 200, 255, 0.16), transparent 70%);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 240ms ease, transform 240ms ease;
  pointer-events: none;
}

.feature-card:hover,
.service-card:hover,
.flow-card:hover,
.timeline-item:hover,
.cta-card:hover {
  transform: translateY(-8px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-strong);
}

.feature-card:hover::before,
.service-card:hover::before,
.flow-card:hover::before,
.timeline-item:hover::before,
.cta-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.feature-card,
.service-card,
.timeline-item,
.cta-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(244, 249, 252, 0.88));
}

.flow-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05));
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
}

.feature-card,
.service-card,
.flow-card {
  padding: 1.5rem;
}

.feature-card h3,
.service-card h3,
.flow-card h3,
.timeline-item h3 {
  margin: 0 0 0.8rem;
  font-size: 1.02rem;
}

.feature-card h3,
.service-card h3,
.timeline-item h3 {
  color: var(--brand-dark);
}

.feature-card p,
.service-card p,
.flow-card p,
.timeline-item p,
.profile-copy p,
.cta-card p {
  color: var(--muted);
}

.product-card-meta {
  display: inline-block;
  margin-bottom: 0.95rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(86, 200, 255, 0.1);
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.products-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  height: 100%;
  padding: 1.7rem;
  background:
    radial-gradient(circle at 92% 12%, rgba(86, 200, 255, 0.24), transparent 11rem),
    radial-gradient(circle at 4% 100%, rgba(255, 141, 59, 0.18), transparent 12rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(240, 247, 251, 0.95));
  border-color: rgba(16, 178, 173, 0.16);
}

.product-card h3 {
  margin-bottom: 0;
  font-size: 1.24rem;
}

.product-card-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.product-card-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.48rem 0.85rem;
  border-radius: 999px;
  background: rgba(16, 178, 173, 0.12);
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

.product-card-status::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #1fbf5f, #7cf29d);
  box-shadow: 0 0 12px rgba(31, 191, 95, 0.35);
}

.product-card-status-muted {
  background: rgba(12, 27, 41, 0.08);
  color: var(--muted);
}

.product-card-status-muted::before {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 0 12px rgba(255, 141, 59, 0.2);
}

.product-card-lead {
  color: var(--text) !important;
  font-size: 1rem;
  font-weight: 700;
}

.product-card-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.2rem;
}

.product-card-list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--muted);
}

.product-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.63rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--signal));
  box-shadow: 0 0 12px rgba(86, 200, 255, 0.2);
}

.product-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: auto;
  padding-top: 0.25rem;
}

.product-card-actions .button {
  min-width: 15rem;
}

.service-card {
  isolation: isolate;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -2rem -4rem auto;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 141, 59, 0.18), transparent 72%);
  z-index: 0;
}

.service-card:nth-child(2n)::after {
  background: radial-gradient(circle, rgba(86, 200, 255, 0.2), transparent 72%);
}

.service-index {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.18em;
}

.method-layout,
.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.method-intro p:not(.section-kicker) {
  margin-top: 1rem;
  color: var(--muted);
}

.timeline {
  position: relative;
  display: grid;
  gap: 1rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 1.38rem;
  top: 1rem;
  bottom: 1rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 141, 59, 0.36), rgba(86, 200, 255, 0.22));
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.5rem;
}

.timeline-item span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--accent), var(--signal));
  color: #071621;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(255, 141, 59, 0.18);
}

.profile-card {
  padding: 1.9rem;
  background:
    radial-gradient(circle at 90% 12%, rgba(86, 200, 255, 0.22), transparent 10rem),
    linear-gradient(150deg, rgba(7, 22, 33, 0.98), rgba(13, 36, 51, 0.92));
  color: #fff8f1;
}

.profile-card .profile-kicker,
.profile-card h2,
.profile-card .profile-role {
  color: inherit;
}

.profile-role {
  margin-top: 0.85rem;
  font-size: 0.98rem;
  opacity: 0.92;
}

.profile-copy {
  display: grid;
  gap: 1.2rem;
  padding-top: 0.8rem;
}

.cta-section {
  padding-top: 2.2rem;
  padding-bottom: 5.7rem;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: 2rem;
  padding: 2.1rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(240, 247, 251, 0.92));
}

.contact-block {
  display: grid;
  align-content: start;
  gap: 1.2rem;
}

.contact-actions {
  display: grid;
  gap: 0.9rem;
}

.contact-actions .button {
  width: 100%;
}

.button-whatsapp {
  background: linear-gradient(135deg, #1fbf5f 0%, #25d366 50%, #7cf29d 100%);
  color: #04130a;
  box-shadow: 0 18px 34px rgba(31, 191, 95, 0.24);
}

.button-linkedin {
  background: linear-gradient(135deg, #0a66c2 0%, #1987ff 55%, #72b6ff 100%);
  color: #f7fbff;
  box-shadow: 0 18px 34px rgba(10, 102, 194, 0.24);
}

.contact-meta {
  display: grid;
  gap: 0.6rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(248, 251, 253, 0.96), rgba(238, 246, 250, 0.92));
  border: 1px solid rgba(12, 27, 41, 0.08);
}

.contact-meta strong {
  color: var(--text);
}

.contact-link {
  color: var(--brand-dark);
  font-weight: 600;
  border-bottom: 1px solid rgba(13, 106, 114, 0.18);
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: #0a66c2;
  border-color: rgba(10, 102, 194, 0.36);
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.demo-modal[hidden] {
  display: none;
}

.demo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 22, 33, 0.72);
  backdrop-filter: blur(12px);
}

.demo-modal-dialog {
  position: relative;
  width: min(44rem, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  margin: 1rem auto;
  overflow: auto;
  border-radius: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 92% 10%, rgba(86, 200, 255, 0.22), transparent 10rem),
    radial-gradient(circle at 6% 94%, rgba(255, 141, 59, 0.14), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(241, 248, 251, 0.97));
  box-shadow: var(--shadow-strong);
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.demo-modal.is-visible .demo-modal-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.demo-modal-copy,
.demo-form {
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}

.demo-modal-copy {
  padding-top: 1.6rem;
}

.demo-modal-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  line-height: 1.06;
  color: var(--brand-dark);
}

.demo-modal-copy p:not(.section-kicker) {
  margin-top: 0.95rem;
  color: var(--muted);
}

.demo-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.8rem;
  height: 2.8rem;
  border: 0;
  border-radius: 999px;
  background: rgba(7, 22, 33, 0.08);
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.demo-modal-close:hover,
.demo-modal-close:focus-visible {
  background: rgba(16, 178, 173, 0.14);
  transform: rotate(90deg);
}

.demo-form {
  position: relative;
  padding-top: 1.4rem;
  padding-bottom: 1.6rem;
}

.demo-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field,
.form-consent {
  display: grid;
  gap: 0.45rem;
}

.form-field span,
.form-consent span {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(12, 27, 41, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  font: inherit;
  padding: 0.95rem 1rem;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(16, 178, 173, 0.55);
  box-shadow: 0 0 0 4px rgba(16, 178, 173, 0.12);
  transform: translateY(-1px);
}

.form-field textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-field-full {
  margin-top: 1rem;
}

.form-consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.8rem;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(12, 27, 41, 0.08);
}

.form-consent input {
  margin-top: 0.24rem;
  accent-color: var(--brand);
}

.form-consent a {
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.demo-form-actions {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.demo-submit[disabled] {
  opacity: 0.75;
  cursor: wait;
}

.demo-form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.demo-form-feedback {
  min-height: 1.4rem;
  margin-top: 1rem;
  color: var(--muted);
  font-weight: 600;
}

.demo-form-feedback.is-success {
  color: #0e7c47;
}

.demo-form-feedback.is-error {
  color: #b83827;
}

.legal-main {
  padding-bottom: 2rem;
}

.legal-hero {
  position: relative;
  padding: 5rem 0 2rem;
  color: var(--text-light);
  overflow: hidden;
}

.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 141, 59, 0.3), transparent 18rem),
    radial-gradient(circle at 86% 18%, rgba(86, 200, 255, 0.24), transparent 22rem),
    linear-gradient(135deg, #071621 0%, #0c2230 56%, #102d40 100%);
  z-index: -2;
}

.legal-hero-inner {
  max-width: 52rem;
  padding: 1rem 0 0.5rem;
}

.legal-hero-inner h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5.5vw, 3.9rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.legal-intro,
.legal-update {
  max-width: 44rem;
}

.legal-intro {
  margin-top: 1.25rem;
  color: rgba(242, 248, 251, 0.8);
  font-size: 0.96rem;
}

.legal-update {
  margin-top: 1rem;
  color: rgba(242, 248, 251, 0.62);
  font-size: 0.92rem;
}

.legal-section {
  padding-top: 2.75rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.legal-card {
  padding: 1.7rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 249, 252, 0.92));
  border: 1px solid rgba(12, 27, 41, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.legal-card-full {
  grid-column: 1 / -1;
}

.legal-card h2 {
  margin: 0 0 0.9rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  color: var(--brand-dark);
}

.legal-card p + p {
  margin-top: 0.9rem;
}

.cookie-table-wrap {
  overflow-x: auto;
}

.cookie-table {
  width: 100%;
  min-width: 32rem;
  border-collapse: collapse;
  font-size: 0.96rem;
}

.cookie-table th,
.cookie-table td {
  padding: 0.95rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(12, 27, 41, 0.08);
}

.cookie-table thead th {
  color: var(--brand-dark);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.2rem;
}

.footer-links a {
  color: inherit;
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--brand-dark);
}

.cookie-notice {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  width: min(30rem, calc(100% - 2rem));
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.cookie-notice.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-notice-content {
  padding: 1rem 1rem 1.05rem;
  border-radius: 1.2rem;
  background:
    linear-gradient(180deg, rgba(7, 22, 33, 0.96), rgba(12, 34, 48, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
  color: rgba(242, 248, 251, 0.88);
}

.cookie-notice-content p {
  color: inherit;
  font-size: 0.94rem;
}

.cookie-notice-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.95rem;
}

.cookie-notice-actions a {
  color: var(--signal);
  font-size: 0.92rem;
}

.cookie-notice-close {
  min-height: 2.7rem;
  padding: 0.7rem 1rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--signal));
  color: #071621;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.site-footer {
  padding: 0 0 2.5rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.7rem;
  border-top: 1px solid rgba(12, 27, 41, 0.1);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-seo-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.4rem;
  padding: 1.8rem 0 1.4rem;
  border-top: 1px solid rgba(12, 27, 41, 0.1);
}

.footer-company {
  display: grid;
  gap: 0.7rem;
  color: var(--muted);
}

.footer-title,
.footer-mini-title {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.footer-title {
  font-size: 1.02rem;
}

.footer-mini-title {
  font-size: 0.92rem;
}

.footer-links-compact {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.faq-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.35rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 248, 251, 0.94));
  border: 1px solid rgba(12, 27, 41, 0.08);
  box-shadow: 0 18px 40px rgba(7, 22, 33, 0.08);
}

.faq-card h3,
.page-content-card h2,
.page-content-card h3,
.blog-card h3,
.article-prose h2,
.article-prose h3 {
  margin: 0;
  color: var(--text);
}

.page-hero {
  padding: 3.8rem 0 2rem;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(17rem, 0.9fr);
  gap: 1.6rem;
  align-items: start;
}

.page-kicker {
  margin-bottom: 0.9rem;
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero h1 {
  margin: 0;
  max-width: 15ch;
  font-size: clamp(2.2rem, 4vw, 3.45rem);
  line-height: 1.06;
}

.page-lead {
  margin-top: 1rem;
  max-width: 65ch;
  color: var(--muted);
  font-size: 1.03rem;
}

.page-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.page-badge {
  padding: 0.52rem 0.9rem;
  border-radius: 999px;
  background: rgba(12, 27, 41, 0.06);
  border: 1px solid rgba(12, 27, 41, 0.08);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
}

.page-card,
.page-content-card,
.blog-card,
.article-shell {
  padding: 1.35rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(242, 248, 251, 0.94));
  border: 1px solid rgba(12, 27, 41, 0.08);
  box-shadow: 0 18px 40px rgba(7, 22, 33, 0.08);
}

.page-card {
  display: grid;
  gap: 0.85rem;
}

.page-card ul,
.page-content-list,
.article-prose ul {
  margin: 0;
  padding-left: 1.1rem;
  list-style: disc;
}

.page-card li,
.page-content-list li,
.article-prose li {
  margin: 0.35rem 0 0;
}

.page-content-grid,
.blog-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.page-content-card {
  display: grid;
  gap: 0.85rem;
}

.page-content-card p + p,
.article-prose p + p {
  margin-top: 0.95rem;
}

.page-cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.breadcrumb a {
  color: var(--brand-dark);
}

.blog-card {
  display: grid;
  gap: 0.85rem;
}

.blog-card p,
.article-prose p,
.page-content-card p,
.page-card p,
.faq-card p {
  color: var(--muted);
}

.blog-meta {
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-shell {
  display: grid;
  gap: 1rem;
}

.article-prose {
  display: grid;
  gap: 0.85rem;
}

.article-prose h2 {
  margin-top: 0.4rem;
  font-size: 1.45rem;
}

.article-prose h3 {
  margin-top: 0.3rem;
  font-size: 1.05rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 760ms ease,
    transform 760ms ease,
    filter 760ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@keyframes glowFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, 1.2rem, 0) scale(1.06);
  }
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes pulseDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.72;
  }
}

@keyframes softPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  50% {
    transform: translateY(-2px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 10px 24px rgba(0, 0, 0, 0.14);
  }
}

@keyframes buttonSweep {
  0% {
    left: -34%;
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    left: 130%;
    opacity: 0;
  }
}

@keyframes orbitSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitBob {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .scroll-progress span {
    transform: scaleX(0) !important;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .method-layout,
  .profile-layout,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }

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

  .panel-stack,
  .hero-signals {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-orbit {
    width: 13rem;
    height: 13rem;
  }

}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0.2rem;
    padding: 0.65rem;
    background: rgba(7, 22, 33, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.2rem;
    box-shadow: var(--shadow-strong);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.95rem 0.8rem;
    border-radius: 0.9rem;
  }

  .nav-dropdown {
    display: grid;
    gap: 0.35rem;
  }

  .nav-dropdown-toggle {
    padding: 0.95rem 0.8rem;
    border-radius: 0.9rem;
  }

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

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .nav-dropdown-toggle:hover,
  .nav-dropdown-toggle:focus-visible {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-dropdown-toggle::before {
    margin-left: auto;
    order: 2;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    padding: 0 0 0 0.45rem;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-submenu a {
    padding: 0.72rem 0.8rem;
    color: rgba(242, 248, 251, 0.7);
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .site-nav .nav-cta {
    justify-content: center;
  }

  .site-header.is-open .menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .site-header.is-open .menu-toggle span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .hero {
    padding-top: 3.3rem;
  }

  .hero::after {
    inset: 0.7rem;
    border-radius: 1.6rem;
  }

  .service-grid,
  .feature-grid,
  .flow-grid,
  .faq-grid,
  .page-content-grid,
  .blog-list,
  .footer-seo-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .cta-section {
    padding: 3.6rem 0;
  }

  .hero-strip-item {
    min-width: 13.5rem;
  }

  .cookie-notice {
    left: 1rem;
    right: 1rem;
    width: auto;
  }

  .cookie-notice-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-notice-close {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero {
    padding-top: 3rem;
  }

  .demo-form-grid {
    grid-template-columns: 1fr;
  }

  .demo-modal-dialog {
    width: min(100% - 1rem, 44rem);
    margin: 0.5rem auto;
    max-height: calc(100vh - 1rem);
    border-radius: 1.35rem;
  }

  .demo-modal-copy,
  .demo-form {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 520px) {
  .header-inner {
    min-height: 5rem;
  }

  .brand-logo {
    width: 6.6rem;
  }

  .brand-text small {
    display: none;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .button,
  .site-nav .nav-cta {
    width: 100%;
  }

  .product-card-actions .button {
    min-width: 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .panel-card,
  .feature-card,
  .service-card,
  .flow-card,
  .timeline-item,
  .cta-card,
  .profile-card,
  .hero-strip-shell {
    border-radius: 1.25rem;
  }

  .hero-orbit {
    width: 11rem;
    height: 11rem;
    top: -1.6rem;
    right: -0.5rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .page-cta-links .button {
    width: 100%;
  }
}
