@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Oswald:wght@600;700&display=swap");

:root {
  --bg: #070707;
  --bg-soft: #0b0b0b;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-strong: rgba(255, 255, 255, 0.085);
  --surface-light: #f4f1ea;
  --card-light: #151515;
  --text: #f4f1ea;
  --text-soft: rgba(244, 241, 234, 0.72);
  --text-dark: #111111;
  --text-dark-soft: #4d4942;
  --accent: #ff8a00;
  --accent-strong: #ff9d2e;
  --accent-dark: #c96c00;
  --green: #7e897c;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(255, 255, 255, 0.12);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.56);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1220px;
  --font-heading: "Oswald", "Arial Narrow", Impact, sans-serif;
  --font-body: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 17% 12%, rgba(255, 138, 0, 0.15), transparent 24%),
    radial-gradient(circle at 84% 7%, rgba(255, 255, 255, 0.075), transparent 25%),
    linear-gradient(180deg, #070707 0%, #0b0b0b 52%, #111 100%);
  color: var(--text);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.16) 0.7px, transparent 0.9px);
  background-size: 72px 72px, 72px 72px, 5px 5px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.32));
}

.site-shell {
  overflow-x: clip;
  overflow-y: visible;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(191, 161, 115, 0.36);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: #fff;
  color: #000;
  padding: 12px 16px;
  border-radius: 999px;
  z-index: 1000;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(16, 23, 34, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.1)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.brand-mark img {
  width: 86%;
  height: 86%;
  display: block;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.brand-text small {
  color: var(--text-soft);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-nav a,
.nav-dropdown-toggle {
  position: relative;
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 650;
  white-space: nowrap;
}

.nav-dropdown-toggle {
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 650;
  cursor: pointer;
}

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

.site-nav a.is-active,
.nav-dropdown-toggle.is-active {
  min-width: 0;
  color: var(--text);
  cursor: default;
  padding: 11px 16px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(214, 191, 154, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 26px rgba(0, 0, 0, 0.14);
}

.site-nav a.is-active::before,
.nav-dropdown-toggle.is-active::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow:
    0 0 0 4px rgba(213, 182, 138, 0.12),
    0 0 16px rgba(213, 182, 138, 0.7);
  transform: translateX(-50%);
  animation: active-nav-orbit 2.6s linear infinite;
}

.site-nav a.is-active::after {
  content: none;
}

.nav-dropdown {
  position: relative;
  padding: 12px 0;
  margin: -12px 0;
}

.nav-dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.nav-dropdown.is-open .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after,
.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: translateY(2px) rotate(225deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 50;
  display: grid;
  min-width: 290px;
  padding: 10px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    rgba(17, 25, 34, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.nav-dropdown-menu a {
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(245, 239, 226, 0.78);
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.07);
}

.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  padding: 12px 16px;
  font: inherit;
  font-weight: 700;
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease,
    box-shadow 0.24s ease;
}

.nav-cta {
  min-height: 48px;
  padding-inline: 20px;
}

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

.button-primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  animation: pulse-button 5.6s ease-in-out infinite;
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  color: var(--text);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  animation: pulse-button-soft 6.2s ease-in-out infinite;
}

.button-light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07)),
    rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
}

.hero {
  position: relative;
  padding: 84px 0 64px;
}

.hero-orb,
.contact-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  pointer-events: none;
}

.hero-orb {
  opacity: 0.75;
}

.hero-ring,
.hero-dot-cluster,
.section-ring,
.section-orb,
.section-dot-cluster {
  position: absolute;
  pointer-events: none;
}

.hero-orb-left {
  top: 90px;
  left: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(86, 149, 132, 0.34), transparent 68%);
  animation: drift 14s ease-in-out infinite;
}

.hero-orb-right {
  top: 40px;
  right: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(215, 190, 148, 0.28), transparent 68%);
  animation: drift 18s ease-in-out infinite reverse;
}

.hero-ring {
  border-radius: 50%;
  border: 1px solid rgba(214, 191, 154, 0.14);
  box-shadow:
    0 0 0 18px rgba(214, 191, 154, 0.04),
    0 0 0 42px rgba(214, 191, 154, 0.025);
  opacity: 0.72;
}

.hero-ring-one {
  top: 156px;
  right: 14%;
  width: 220px;
  height: 220px;
  animation:
    orbit 18s ease-in-out infinite,
    pulse-ring 4.8s ease-in-out infinite;
}

.hero-ring-two {
  bottom: 90px;
  left: 48%;
  width: 118px;
  height: 118px;
  border-color: rgba(111, 183, 163, 0.16);
  box-shadow:
    0 0 0 14px rgba(111, 183, 163, 0.04),
    0 0 0 30px rgba(111, 183, 163, 0.025);
  animation:
    orbit 14s ease-in-out infinite reverse,
    pulse-ring 4.2s ease-in-out infinite;
}

.hero-ring-three {
  top: 220px;
  left: 9%;
  width: 84px;
  height: 84px;
  border-color: rgba(111, 183, 163, 0.14);
  box-shadow:
    0 0 0 12px rgba(111, 183, 163, 0.03),
    0 0 0 24px rgba(111, 183, 163, 0.016);
  animation:
    orbit 11s ease-in-out infinite,
    pulse-ring-soft 4.6s ease-in-out infinite;
}

.hero-ring-four {
  right: 18%;
  bottom: 180px;
  width: 64px;
  height: 64px;
  animation:
    orbit 9s ease-in-out infinite reverse,
    pulse-ring-soft 3.8s ease-in-out infinite;
}

.hero-dot-cluster {
  width: 180px;
  height: 180px;
  opacity: 0.4;
  background-image: radial-gradient(rgba(241, 231, 211, 0.72) 1.2px, transparent 1.2px);
  background-size: 18px 18px;
  mask-image: radial-gradient(circle, rgba(0, 0, 0, 0.95), transparent 72%);
}

.hero-dot-cluster-one {
  top: 112px;
  left: 46%;
  animation: drift 20s ease-in-out infinite;
}

.hero-dot-cluster-two {
  right: 6%;
  bottom: 130px;
  width: 140px;
  height: 140px;
  opacity: 0.28;
  animation: drift 16s ease-in-out infinite reverse;
}

.section-orb {
  border-radius: 50%;
  filter: blur(22px);
  opacity: 0.34;
}

.section-dot-cluster {
  width: 150px;
  height: 150px;
  opacity: 0.26;
  background-image: radial-gradient(rgba(241, 231, 211, 0.64) 1.15px, transparent 1.15px);
  background-size: 16px 16px;
  mask-image: radial-gradient(circle, rgba(0, 0, 0, 0.95), transparent 72%);
}

.section-ring {
  border-radius: 50%;
  border: 1px solid rgba(214, 191, 154, 0.12);
  box-shadow:
    0 0 0 16px rgba(214, 191, 154, 0.035),
    0 0 0 34px rgba(214, 191, 154, 0.02);
  opacity: 0.48;
}

.section-orb-services {
  top: 80px;
  right: 8%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(104, 163, 146, 0.28), transparent 68%);
  animation: drift 15s ease-in-out infinite;
}

.section-orb-services-two {
  bottom: 140px;
  left: 4%;
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, rgba(191, 161, 115, 0.18), transparent 68%);
  animation: drift 12s ease-in-out infinite reverse;
}

.section-ring-services {
  top: 180px;
  left: 7%;
  width: 120px;
  height: 120px;
  animation:
    orbit 15s ease-in-out infinite,
    pulse-ring-soft 5.4s ease-in-out infinite;
}

.section-ring-services-two {
  top: 92px;
  right: 22%;
  width: 76px;
  height: 76px;
  animation:
    orbit 10s ease-in-out infinite,
    pulse-ring-soft 4.1s ease-in-out infinite;
}

.section-dot-cluster-services {
  top: 220px;
  left: 28%;
  animation: drift 18s ease-in-out infinite reverse;
}

.section-orb-trust {
  top: 120px;
  left: -20px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(191, 161, 115, 0.22), transparent 70%);
  animation: drift 17s ease-in-out infinite reverse;
}

.section-orb-trust-two {
  bottom: 120px;
  left: 18%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(110, 135, 197, 0.14), transparent 70%);
  animation: drift 13s ease-in-out infinite;
}

.section-ring-trust {
  bottom: 80px;
  right: 10%;
  width: 160px;
  height: 160px;
  border-color: rgba(111, 183, 163, 0.13);
  box-shadow:
    0 0 0 18px rgba(111, 183, 163, 0.03),
    0 0 0 40px rgba(111, 183, 163, 0.018);
  animation:
    orbit 18s ease-in-out infinite reverse,
    pulse-ring-soft 6.2s ease-in-out infinite;
}

.section-ring-trust-two {
  top: 160px;
  right: 24%;
  width: 92px;
  height: 92px;
  animation:
    orbit 12s ease-in-out infinite,
    pulse-ring-soft 4.4s ease-in-out infinite;
}

.section-dot-cluster-trust {
  top: 90px;
  left: 9%;
  width: 120px;
  height: 120px;
  animation: drift 16s ease-in-out infinite;
}

.section-orb-process {
  top: 40px;
  right: 5%;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(110, 135, 197, 0.16), transparent 72%);
  animation: drift 14s ease-in-out infinite;
}

.section-orb-process-two {
  bottom: 90px;
  left: 6%;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(191, 161, 115, 0.14), transparent 72%);
  animation: drift 16s ease-in-out infinite reverse;
}

.section-ring-process {
  top: 180px;
  left: 12%;
  width: 96px;
  height: 96px;
  animation:
    orbit 13s ease-in-out infinite,
    pulse-ring-soft 4.8s ease-in-out infinite;
}

.section-ring-process-two {
  top: 110px;
  right: 18%;
  width: 70px;
  height: 70px;
  border-color: rgba(111, 183, 163, 0.13);
  box-shadow:
    0 0 0 10px rgba(111, 183, 163, 0.028),
    0 0 0 22px rgba(111, 183, 163, 0.014);
  animation:
    orbit 8.5s ease-in-out infinite reverse,
    pulse-ring-soft 3.9s ease-in-out infinite;
}

.section-dot-cluster-process {
  top: 200px;
  left: 36%;
  width: 132px;
  height: 132px;
  animation: drift 17s ease-in-out infinite reverse;
}

.section-orb-showcase {
  bottom: 40px;
  left: 3%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(191, 161, 115, 0.16), transparent 72%);
  animation: drift 19s ease-in-out infinite;
}

.section-orb-showcase-two {
  top: 160px;
  left: 24%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(104, 163, 146, 0.16), transparent 70%);
  animation: drift 11s ease-in-out infinite reverse;
}

.section-ring-showcase {
  top: 70px;
  right: 7%;
  width: 140px;
  height: 140px;
  animation:
    orbit 16s ease-in-out infinite reverse,
    pulse-ring-soft 5.6s ease-in-out infinite;
}

.section-ring-showcase-two {
  bottom: 110px;
  right: 16%;
  width: 88px;
  height: 88px;
  animation:
    orbit 12.5s ease-in-out infinite,
    pulse-ring-soft 4.2s ease-in-out infinite;
}

.section-dot-cluster-showcase {
  top: 110px;
  left: 8%;
  width: 124px;
  height: 124px;
  animation: drift 15s ease-in-out infinite;
}

.section-ring-contact {
  top: 34px;
  right: 44px;
  width: 180px;
  height: 180px;
  animation:
    orbit 16s ease-in-out infinite,
    pulse-ring-soft 5s ease-in-out infinite;
}

.section-ring-contact-two {
  bottom: 60px;
  left: 8%;
  width: 96px;
  height: 96px;
  animation:
    orbit 11.5s ease-in-out infinite reverse,
    pulse-ring-soft 4.6s ease-in-out infinite;
}

.section-orb-contact {
  top: 120px;
  right: 28%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(191, 161, 115, 0.14), transparent 72%);
  animation: drift 14s ease-in-out infinite;
}

.hero-gridline {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 85%);
  opacity: 0.32;
  pointer-events: none;
}

.hero-layout {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 34px;
  align-items: center;
}

.hero-main {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  z-index: 2;
  width: min(80%, 1120px);
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.hero-stage {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  align-self: center;
}

.page-hero {
  padding-bottom: 82px;
}

.page-hero-layout {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 34px;
  align-items: center;
}

.page-hero-copy h1 {
  max-width: 14ch;
  margin: 0 auto;
  font-size: clamp(3rem, 6.1vw, 5.75rem);
}

.page-hero-copy .hero-lead {
  margin-left: auto;
  margin-right: auto;
}

.page-hero-copy {
  max-width: 980px;
  text-align: center;
}

.price-summary {
  width: min(100%, 1040px);
  padding: 26px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(191, 161, 115, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow);
}

.price-summary-header {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.price-summary-header .signal-label,
.price-summary-header p {
  margin: 0;
}

.price-summary-header p:last-child {
  color: var(--text-soft);
}

.price-summary dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.price-summary dl div {
  display: grid;
  gap: 12px;
  min-height: 132px;
  padding: 22px;
  border-bottom: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(18, 29, 40, 0.88);
}

.price-summary dt,
.price-summary dd {
  margin: 0;
}

.price-summary dt {
  color: var(--text-soft);
}

.price-summary dd {
  color: var(--text);
  font-size: clamp(1.28rem, 2vw, 1.7rem);
  font-weight: 800;
  white-space: nowrap;
}

.eyebrow {
  margin: 0 0 18px;
  color: #d7b37a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

#services .eyebrow,
#why-ai-pro .eyebrow,
.showcase-card-main .eyebrow {
  color: #d7b37a;
}

.eyebrow-light {
  color: #d7b37a;
}

h1,
h2,
h3,
.signal-title,
.signal-metric,
.footer-title {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  font-weight: 800;
  position: relative;
}

h2 {
  font-size: clamp(2.1rem, 4.8vw, 4.2rem);
  font-weight: 800;
}

h3,
.signal-title {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 760;
}

p,
li {
  font-size: 1.04rem;
}

.hero-lead,
.section-header p,
.split-copy p,
.contact-lead,
.editorial-feature p,
.process-node p,
.trust-line p,
.showcase-card li,
.showcase-card p,
.footer-grid p,
.footer-links a {
  color: var(--text-soft);
}

.hero-lead {
  max-width: 58ch;
  margin: 26px auto 0;
  font-size: 1.18rem;
}

.hero-home h1 {
  max-width: 17ch;
}

.hero-body {
  max-width: 62ch;
  margin: 18px auto 0;
  color: var(--text-soft);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 34px 0 24px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.hero-trust span,
.service-marquee span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #d7b37a;
  font-size: 0.96rem;
  font-weight: 650;
}

.hero-stage-frame {
  position: relative;
  min-height: auto;
  padding: 26px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-stage-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.signal-stack {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  grid-template-rows: auto auto auto;
  gap: 18px;
  z-index: 1;
  align-items: stretch;
}

.signal-card {
  padding: 24px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(25, 40, 58, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.signal-card-large {
  padding-top: 120px;
  min-height: 100%;
  grid-column: 1;
  grid-row: 1 / span 3;
  background:
    radial-gradient(circle at top right, rgba(191, 161, 115, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03)),
    rgba(22, 38, 56, 0.72);
}

.signal-card-large::before {
  content: "";
  position: absolute;
  top: 30px;
  right: 30px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 28px rgba(255, 255, 255, 0.03),
    0 0 0 58px rgba(255, 255, 255, 0.02);
}

.signal-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-content: start;
}

.signal-card-wide {
  background:
    linear-gradient(135deg, rgba(60, 125, 108, 0.16), rgba(191, 161, 115, 0.08)),
    rgba(255, 255, 255, 0.04);
  grid-column: 2;
  grid-row: 3;
}

.signal-label {
  margin: 0 0 12px;
  color: #d7b37a;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signal-title {
  max-width: 12ch;
  margin-bottom: 14px;
  font-size: clamp(1.85rem, 3.4vw, 2.8rem);
}

.signal-copy {
  max-width: 28ch;
  margin: 0;
  color: rgba(245, 239, 226, 0.72);
}

.signal-metric {
  font-size: 1.35rem;
}

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

.signal-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(245, 239, 226, 0.84);
}

.signal-list li::before,
.showcase-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #e8d2ae 100%);
}

.section {
  position: relative;
  padding: 110px 0;
}

.intro-band {
  padding: 28px 0 90px;
}

.intro-band-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.intro-band-kicker {
  margin: 0;
  color: rgba(245, 239, 226, 0.94);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.intro-band-copy {
  margin: 0;
}

.studio-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 92px 0 104px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 74% 18%, rgba(87, 113, 162, 0.26), transparent 32%),
    radial-gradient(circle at 24% 78%, rgba(191, 161, 115, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018) 42%, rgba(60, 125, 108, 0.08));
}

.studio-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 62% 42%, #000 0%, transparent 68%);
  opacity: 0.5;
}

.studio-atmosphere,
.studio-orbit,
.studio-mesh {
  position: absolute;
  pointer-events: none;
}

.studio-atmosphere {
  z-index: -1;
  border-radius: 999px;
  filter: blur(18px);
}

.studio-atmosphere-one {
  top: -80px;
  right: 4%;
  width: 330px;
  height: 330px;
  background: radial-gradient(circle, rgba(191, 161, 115, 0.22), transparent 68%);
  animation: drift 15s ease-in-out infinite;
}

.studio-atmosphere-two {
  bottom: -120px;
  left: 7%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(60, 125, 108, 0.24), transparent 70%);
  animation: drift 18s ease-in-out infinite reverse;
}

.studio-orbit {
  z-index: -1;
  border-radius: 50%;
  border: 1px solid rgba(213, 182, 138, 0.18);
  box-shadow:
    0 0 0 18px rgba(213, 182, 138, 0.04),
    0 0 0 48px rgba(87, 113, 162, 0.04);
  opacity: 0.78;
}

.studio-orbit-one {
  right: 12%;
  top: 82px;
  width: 210px;
  height: 210px;
  animation:
    orbit 16s ease-in-out infinite,
    pulse-ring-soft 5.8s ease-in-out infinite;
}

.studio-orbit-two {
  left: 10%;
  bottom: 74px;
  width: 112px;
  height: 112px;
  border-color: rgba(111, 183, 163, 0.18);
  box-shadow:
    0 0 0 16px rgba(111, 183, 163, 0.035),
    0 0 0 38px rgba(255, 255, 255, 0.025);
  animation:
    orbit 14s ease-in-out infinite reverse,
    pulse-ring-soft 5.2s ease-in-out infinite;
}

.studio-mesh {
  right: 38%;
  top: 28%;
  width: 180px;
  height: 180px;
  opacity: 0.26;
  background-image: radial-gradient(circle, rgba(245, 239, 226, 0.82) 1.2px, transparent 1.2px);
  background-size: 18px 18px;
}

.studio-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: center;
}

.studio-layout > *,
.studio-copy,
.studio-console {
  min-width: 0;
}

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

.studio-copy h2 {
  max-width: 11ch;
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: 0.93;
}

.studio-copy p {
  max-width: 62ch;
}

.studio-language-note {
  margin: 22px 0 0;
  padding-left: 18px;
  border-left: 2px solid rgba(213, 182, 138, 0.58);
  color: rgba(245, 239, 226, 0.82);
}

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

.studio-button {
  border-color: rgba(213, 182, 138, 0.38);
  background:
    linear-gradient(180deg, rgba(213, 182, 138, 0.32), rgba(213, 182, 138, 0.12)),
    rgba(255, 255, 255, 0.06);
}

.studio-meta {
  color: rgba(245, 239, 226, 0.68);
  font-size: 0.94rem;
  font-weight: 650;
}

.studio-console {
  display: block;
  position: relative;
  z-index: 1;
  min-height: 560px;
  padding: 28px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 78% 16%, rgba(87, 113, 162, 0.28), transparent 34%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(13, 17, 22, 0.72);
  box-shadow:
    0 34px 88px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.studio-console::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: calc(var(--radius-xl) - 12px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(112deg, transparent 0 38%, rgba(213, 182, 138, 0.12) 39%, rgba(245, 239, 226, 0.38) 40%, rgba(111, 183, 163, 0.16) 41%, transparent 43%),
    linear-gradient(112deg, transparent 0 56%, rgba(111, 183, 163, 0.13) 57%, rgba(245, 239, 226, 0.28) 58%, rgba(213, 182, 138, 0.12) 59%, transparent 61%);
  background-size: 180% 180%, 150% 150%;
  filter: drop-shadow(0 0 14px rgba(213, 182, 138, 0.32));
  opacity: 0.72;
  pointer-events: none;
  animation: studio-current 5.8s ease-in-out infinite;
}

.studio-console::after {
  content: "";
  position: absolute;
  left: 10%;
  top: 20%;
  width: 82%;
  height: 70%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 12% 42%, rgba(245, 239, 226, 0.92) 0 2px, transparent 4px),
    radial-gradient(circle at 48% 34%, rgba(213, 182, 138, 0.9) 0 2px, transparent 5px),
    radial-gradient(circle at 76% 50%, rgba(111, 183, 163, 0.86) 0 2px, transparent 5px),
    conic-gradient(from 210deg at 50% 50%, transparent 0deg, rgba(213, 182, 138, 0.16) 18deg, transparent 46deg, rgba(111, 183, 163, 0.12) 76deg, transparent 110deg);
  filter: blur(0.2px) drop-shadow(0 0 18px rgba(213, 182, 138, 0.44));
  opacity: 0.58;
  transform: rotate(-8deg);
  animation: studio-spark 4.8s ease-in-out infinite;
}

.studio-console-top,
.studio-flagship-grid,
.studio-tool-list {
  position: relative;
  z-index: 1;
}

.studio-console-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
  color: rgba(245, 239, 226, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.studio-flagship-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.studio-flagship-card {
  min-height: 260px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(213, 182, 138, 0.18);
  background:
    radial-gradient(circle at top right, rgba(213, 182, 138, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.028)),
    rgba(255, 255, 255, 0.035);
}

.studio-flagship-card h3 {
  max-width: 12ch;
  margin: 0 0 16px;
  color: var(--text);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.studio-flagship-card p {
  margin: 0;
}

.studio-flagship-kicker,
.studio-tool-heading {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.25;
  text-transform: uppercase;
}

.studio-tool-heading {
  position: relative;
  z-index: 1;
  margin-top: 4px;
  margin-bottom: 10px;
}

.studio-flagship-card p:not(.studio-flagship-kicker) {
  color: rgba(245, 239, 226, 0.9);
  font-size: 0.98rem;
  line-height: 1.55;
}

.studio-tool-list {
  counter-reset: studio-tools;
  display: grid;
  gap: 10px;
}

.studio-tool-list span {
  counter-increment: studio-tools;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  min-height: 56px;
  padding: 12px 16px 12px 12px;
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.028)),
    rgba(255, 255, 255, 0.024);
  color: rgba(245, 239, 226, 0.92);
  font-weight: 700;
}

.studio-tool-list span::before {
  content: counter(studio-tools, decimal-leading-zero);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.blog-hero {
  min-height: auto;
}

.blog-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.65fr);
  gap: 34px;
  align-items: end;
}

.blog-hero-copy h1 {
  max-width: 11ch;
}

.blog-hero-panel,
.blog-card,
.blog-post-layout,
.blog-editor-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(18, 28, 39, 0.72);
  box-shadow: var(--shadow);
}

.blog-hero-panel {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.blog-hero-panel p:not(.eyebrow) {
  margin-top: 0;
  color: var(--text-soft);
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.blog-card {
  min-height: 290px;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.blog-card-date {
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1.06;
}

.blog-card h3 a,
.blog-read-more {
  text-decoration: none;
}

.blog-card p {
  color: var(--text-soft);
}

.blog-read-more {
  display: inline-flex;
  margin-top: 12px;
  color: var(--accent-strong);
  font-weight: 800;
}

.blog-post-layout,
.blog-editor-layout {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
}

.blog-post-layout {
  padding: 34px;
  border-radius: var(--radius-xl);
}

.blog-post-header {
  margin-bottom: 34px;
}

.blog-post-header h1,
.blog-editor-layout h1 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  line-height: 0.94;
}

.blog-admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.blog-admin-tabs a,
.blog-admin-tabs button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.blog-admin-tabs form {
  margin: 0;
}

.blog-admin-tabs a:hover,
.blog-admin-tabs a:focus-visible,
.blog-admin-tabs button:hover,
.blog-admin-tabs button:focus-visible {
  border-color: rgba(213, 182, 138, 0.48);
  background: rgba(213, 182, 138, 0.12);
}

.blog-post-header p:not(.eyebrow) {
  color: var(--text-soft);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.blog-post-body {
  color: rgba(245, 239, 226, 0.86);
  font-size: 1.08rem;
  line-height: 1.78;
}

.blog-post-body h2,
.blog-post-body h3 {
  margin-top: 34px;
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.12;
}

.blog-post-body h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.blog-post-body h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.blog-post-body a {
  color: var(--accent-strong);
}

.blog-post-body li + li {
  margin-top: 8px;
}

.blog-post-nav {
  margin-top: 34px;
}

.blog-editor-panel {
  margin-top: 26px;
  padding: 28px;
  border-radius: var(--radius-xl);
}

.blog-editor-message h2,
.blog-editor-posts h2 {
  margin-top: 0;
}

.blog-editor-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  align-items: center;
}

.blog-editor-posts h2 {
  width: 100%;
}

.blog-editor-posts a {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
}

.blog-delete-form {
  margin-left: auto;
}

.blog-delete-button {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 120, 120, 0.32);
  border-radius: 999px;
  background: rgba(120, 32, 32, 0.2);
  color: #ffd7d7;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.blog-delete-button:hover,
.blog-delete-button:focus-visible {
  border-color: rgba(255, 120, 120, 0.58);
  background: rgba(120, 32, 32, 0.34);
}

.blog-leads-panel {
  display: grid;
  gap: 20px;
}

.blog-leads-panel > h2 {
  max-width: 760px;
  margin: -12px 0 0;
  color: var(--text);
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.blog-leads-panel > p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.blog-lead-list {
  display: grid;
  gap: 18px;
}

.blog-lead-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.blog-lead-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.blog-lead-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.45rem;
  line-height: 1.08;
}

.blog-lead-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.blog-lead-meta div {
  min-width: 0;
  padding: 14px;
  border-radius: 16px;
  background: rgba(10, 15, 22, 0.32);
}

.blog-lead-meta dt {
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-lead-meta dd {
  margin: 4px 0 0;
  color: var(--text);
  overflow-wrap: anywhere;
}

.blog-lead-message {
  padding: 16px;
  border-radius: 18px;
  background: rgba(10, 15, 22, 0.26);
}

.blog-lead-message h4 {
  margin: 0 0 8px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-lead-message p {
  margin: 0;
  color: var(--text-soft);
  white-space: normal;
}

.blog-lead-message p + p,
.blog-lead-message ul + p,
.blog-lead-message p + ul {
  margin-top: 10px;
}

.blog-lead-message ul {
  display: grid;
  gap: 6px;
  margin: 8px 0 0;
  padding-left: 1.15rem;
  color: var(--text-soft);
}

.blog-lead-message li::marker {
  color: var(--accent-strong);
}

.blog-lead-message strong {
  color: var(--text);
  font-weight: 900;
}

.blog-editor-form {
  display: grid;
  gap: 16px;
}

.blog-editor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 22px;
  align-items: start;
}

.blog-editor-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.blog-editor-form label {
  display: grid;
  gap: 8px;
  color: var(--accent-strong);
  font-weight: 800;
}

.blog-editor-form input,
.blog-editor-form select,
.blog-editor-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(13, 17, 22, 0.78);
  color: var(--text);
  font: inherit;
  padding: 14px 16px;
}

.blog-editor-form select {
  appearance: auto;
}

.blog-editor-form textarea {
  min-height: 480px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  line-height: 1.55;
}

.blog-editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(13, 17, 22, 0.42);
}

.blog-editor-toolbar button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.035);
  color: var(--text);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.blog-editor-toolbar button:hover,
.blog-editor-toolbar button:focus-visible {
  border-color: rgba(213, 182, 138, 0.34);
  color: var(--accent-strong);
}

.blog-upload-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.blog-editor-preview {
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 130px);
  overflow: auto;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(213, 182, 138, 0.12), transparent 34%),
    rgba(13, 17, 22, 0.54);
}

.blog-post-body blockquote {
  margin: 24px 0;
  padding: 4px 0 4px 18px;
  border-left: 2px solid rgba(213, 182, 138, 0.65);
  color: rgba(245, 239, 226, 0.78);
}

.blog-post-body img {
  width: 100%;
  height: auto;
  margin: 26px 0;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

.section-header {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: end;
  margin-bottom: 42px;
}

.services-editorial {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)),
    transparent;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 22px;
}

.main-area-grid,
.service-priority-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.editorial-feature,
.trust-panel,
.process-node,
.showcase-card,
.contact-panel {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.028);
}

.editorial-feature {
  min-height: 360px;
  padding: 30px;
}

.main-area-grid .editorial-feature,
.service-priority-grid .editorial-feature {
  min-height: 410px;
}

.editorial-feature-dark {
  background:
    radial-gradient(circle at top right, rgba(191, 161, 115, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.feature-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin: 0 0 18px;
  border-radius: 50%;
  background: rgba(191, 161, 115, 0.12);
  border: 1px solid rgba(191, 161, 115, 0.24);
  color: #d7b37a;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-shadow: none;
}

.editorial-feature .feature-index {
  color: #d7b37a;
}

.editorial-feature h3 {
  max-width: 14ch;
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
}

.feature-kicker {
  margin: 0 0 12px;
  color: #d7b37a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-area-grid .editorial-feature h3,
.service-priority-grid .editorial-feature h3 {
  max-width: 15ch;
  font-size: clamp(1.32rem, 1.8vw, 1.78rem);
}

.service-marquee {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.split-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 36px;
  align-items: start;
}

.split-copy p:last-child {
  max-width: 58ch;
}

.trust-panel {
  --trust-panel-gutter: 18px;
  padding: var(--trust-panel-gutter);
}

.trust-line {
  box-sizing: border-box;
  width: 100%;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-line:last-child {
  border-bottom: 0;
}

.trust-line h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: #d7b37a;
}

.process-canvas {
  padding-top: 80px;
}

.process-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.process-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.process-rail::before {
  display: none;
}

.process-node {
  position: relative;
  padding: 26px;
}

.process-node h3 {
  font-weight: 690;
  letter-spacing: -0.028em;
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(191, 161, 115, 0.12);
  border: 1px solid rgba(191, 161, 115, 0.24);
  color: var(--accent-strong);
  font-weight: 800;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1fr 1fr;
  gap: 22px;
}

.price-section {
  padding-top: 70px;
}

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

.price-card,
.package-card,
.price-calculator {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.028);
}

.price-card {
  min-height: 390px;
  padding: 28px;
}

.price-card-feature {
  grid-column: span 2;
  background:
    radial-gradient(circle at top right, rgba(60, 125, 108, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
}

.price-card h3,
.package-card h3 {
  margin-bottom: 16px;
}

.price-card p,
.package-card p,
.calculator-copy p {
  color: var(--text-soft);
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
  color: rgba(245, 239, 226, 0.78);
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #e8d2ae 100%);
}

.package-section {
  padding-top: 54px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.package-card {
  display: grid;
  gap: 12px;
  align-content: space-between;
  min-height: 220px;
  padding: 24px;
}

.package-card h3 {
  overflow-wrap: anywhere;
  hyphens: auto;
}

.package-card strong {
  color: #d7b37a;
  font-size: 1.45rem;
}

.calculator-section {
  padding-top: 60px;
}

.calculator-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
}

.calculator-copy {
  max-width: 860px;
}

.price-calculator {
  display: grid;
  gap: 20px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.calculator-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.price-calculator fieldset {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 26px 20px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.025);
}

.price-calculator fieldset:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-calculator legend {
  padding: 0;
}

.calculator-group-title {
  width: fit-content;
  max-width: 100%;
  margin: 0 0 12px;
  color: #d7b37a;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  line-height: 1.35;
}

.price-calculator label {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px;
  gap: 14px;
  align-items: center;
  color: rgba(245, 239, 226, 0.82);
}

.price-calculator input[type="number"] {
  width: 100%;
  min-height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  padding: 0 14px;
  font: inherit;
  font-weight: 700;
}

.price-calculator input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--accent);
}

.price-calculator .check-row {
  grid-template-columns: 24px minmax(0, 1fr) auto;
}

.check-row strong {
  color: var(--text);
  white-space: nowrap;
}

.calculator-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(191, 161, 115, 0.2), transparent 42%),
    rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(191, 161, 115, 0.2);
}

.calculator-total span {
  color: var(--text-soft);
  font-weight: 750;
}

.calculator-total strong {
  color: #d7b37a;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
}

.calculator-note {
  margin: 0;
  color: rgba(245, 239, 226, 0.62);
  font-size: 0.95rem;
}

.tool-hero {
  padding-bottom: 86px;
}

.app-hero {
  padding-bottom: 86px;
}

.tool-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 42px;
  align-items: end;
}

.app-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 42px;
  align-items: end;
}

.tool-hero-copy h1 {
  max-width: 13ch;
}

.app-hero-copy h1 {
  max-width: 13ch;
}

.tool-hero-copy .hero-lead {
  margin-left: 0;
  margin-right: 0;
}

.app-hero-copy .hero-lead {
  margin-left: 0;
  margin-right: 0;
}

.tool-summary,
.app-signal,
.designer-embed,
.live-preview-tool,
.support-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.028);
}

.tool-summary {
  padding: 28px;
  box-shadow: var(--shadow);
}

.app-signal {
  padding: 28px;
  box-shadow: var(--shadow);
}

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

.app-benefit-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 22px;
}

.app-card,
.app-example {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.028);
}

.app-card {
  min-height: 310px;
  padding: 30px;
}

.app-card h3,
.app-example h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  font-weight: 690;
  line-height: 1.08;
  letter-spacing: -0.018em;
}

.app-card-main {
  background:
    radial-gradient(circle at top right, rgba(60, 125, 108, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.app-card p,
.app-example p {
  color: var(--text-soft);
}

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

.app-card-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(245, 239, 226, 0.78);
}

.app-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #e8d2ae 100%);
}

.app-card-action {
  width: fit-content;
  margin-top: 24px;
}

.app-examples-section,
.app-process-section,
.app-pricing-section {
  padding-top: 64px;
}

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

.app-example {
  min-height: 240px;
  padding: 28px;
}

.app-example h3 {
  margin-bottom: 14px;
}

.designer-section {
  padding-top: 70px;
}

.designer-layout {
  display: grid;
  gap: 34px;
}

.designer-copy {
  max-width: 840px;
}

.designer-copy p {
  color: var(--text-soft);
}

.designer-embed {
  position: relative;
  padding: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 100%;
}

.designer-embed iframe {
  display: block;
  width: 100% !important;
  max-width: 1400px !important;
  height: 1200px !important;
  min-height: 1200px !important;
  max-height: 3000px !important;
  border: 0 !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.04);
}

.live-preview-section {
  padding-top: 64px;
}

.live-preview-layout {
  display: grid;
  gap: 34px;
}

.live-preview-copy {
  max-width: 900px;
}

.live-preview-copy p {
  color: var(--text-soft);
}

.live-preview-tool {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
  width: 100%;
}

.live-preview-tool > label,
.live-preview-tool > textarea,
.live-preview-tool > button,
.live-preview-tool > iframe {
  grid-column: 1 / -1 !important;
}

.live-preview-tool label {
  color: #d7b37a;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.live-preview-tool textarea {
  display: block;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  min-height: 360px !important;
  height: 360px;
  resize: vertical;
  border-radius: 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: rgba(9, 14, 20, 0.72) !important;
  color: var(--text) !important;
  padding: 18px !important;
  font: 0.95rem/1.55 ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace !important;
  box-sizing: border-box !important;
}

.live-preview-tool textarea::placeholder {
  color: rgba(245, 239, 226, 0.46);
}

.live-preview-tool button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.live-preview-tool iframe {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 1200px !important;
  height: 1200px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 18px !important;
  background: #fff !important;
}

.support-section {
  padding-top: 64px;
}

.support-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 22px;
}

.support-card {
  min-height: 280px;
  padding: 30px;
}

.support-card-main {
  background:
    radial-gradient(circle at top right, rgba(60, 125, 108, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.support-card p {
  color: var(--text-soft);
}

.support-card strong {
  display: block;
  margin-top: 24px;
  color: #d7b37a;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.05;
}

.contact-page-hero {
  padding-bottom: 86px;
}

.contact-page-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 42px;
  align-items: end;
}

.contact-page-copy h1 {
  max-width: 11ch;
}

.contact-page-copy .hero-lead {
  margin-left: 0;
  margin-right: 0;
}

.contact-direct-panel,
.ai-pro-contact-form {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.028);
}

.contact-direct-panel {
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-direct-panel p:last-child {
  color: var(--text-soft);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: start;
}

.contact-form-intro p {
  color: var(--text-soft);
}

.ai-pro-contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  box-shadow: var(--shadow);
}

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

.ai-pro-contact-form label {
  display: grid;
  gap: 9px;
  color: rgba(245, 239, 226, 0.82);
}

.ai-pro-contact-form label span {
  color: #d7b37a;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.ai-pro-contact-form input,
.ai-pro-contact-form select,
.ai-pro-contact-form textarea {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 14, 20, 0.72);
  color: var(--text);
  padding: 0 16px;
  font: inherit;
  box-sizing: border-box;
}

.ai-pro-contact-form textarea {
  min-height: 190px;
  padding: 16px;
  resize: vertical;
}

.ai-pro-contact-form input[type="file"] {
  padding: 14px 16px;
  color: var(--text-soft);
}

.ai-pro-contact-form button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.contact-form-note {
  margin: 0;
  color: rgba(245, 239, 226, 0.58);
  font-size: 0.92rem;
}

.contact-topic-section {
  padding-top: 60px;
}

.pricing-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.page-hero > .container,
.price-section > .container,
.package-section > .container,
.calculator-section > .container {
  position: relative;
  z-index: 2;
}

.pricing-deco-ring {
  border-radius: 50%;
  border: 1.5px solid rgba(214, 191, 154, 0.3);
  box-shadow:
    0 0 0 14px rgba(214, 191, 154, 0.08),
    0 0 0 34px rgba(214, 191, 154, 0.04),
    0 0 42px rgba(214, 191, 154, 0.08);
  opacity: 0.92;
}

.pricing-deco-orb {
  border-radius: 999px;
  filter: blur(14px);
  opacity: 0.68;
}

.pricing-deco-dots {
  opacity: 0.48;
  background-image: radial-gradient(rgba(241, 231, 211, 0.92) 1.35px, transparent 1.35px);
  background-size: 18px 18px;
  mask-image: radial-gradient(circle, rgba(0, 0, 0, 0.95), transparent 72%);
}

.pricing-deco-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(214, 191, 154, 0.74), transparent);
  opacity: 0.56;
}

.pricing-deco-01 {
  top: 138px;
  left: 9%;
  width: 74px;
  height: 74px;
  animation:
    orbit 10s ease-in-out infinite,
    pulse-ring-soft 4.2s ease-in-out infinite;
}

.pricing-deco-02 {
  right: 12%;
  bottom: 178px;
  width: 148px;
  height: 148px;
  border-color: rgba(111, 183, 163, 0.36);
  box-shadow:
    0 0 0 18px rgba(111, 183, 163, 0.09),
    0 0 0 42px rgba(111, 183, 163, 0.04),
    0 0 44px rgba(111, 183, 163, 0.08);
  animation:
    orbit 16s ease-in-out infinite reverse,
    pulse-ring-soft 5.8s ease-in-out infinite;
}

.pricing-deco-03 {
  left: 16%;
  bottom: 100px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(104, 163, 146, 0.48), transparent 70%);
  animation: drift 13s ease-in-out infinite reverse;
}

.pricing-deco-04 {
  top: 250px;
  right: 30%;
  width: 132px;
  height: 132px;
  animation: drift 18s ease-in-out infinite;
}

.pricing-deco-05 {
  left: 50%;
  bottom: 64px;
  width: 280px;
  transform: translateX(-50%) rotate(-4deg);
  animation: shimmer-line 8s ease-in-out infinite;
}

.pricing-deco-06 {
  top: 150px;
  right: 5%;
  width: 136px;
  height: 136px;
  animation:
    orbit 12s ease-in-out infinite,
    pulse-ring-soft 4.6s ease-in-out infinite;
}

.pricing-deco-07 {
  top: 46%;
  left: 5%;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(191, 161, 115, 0.42), transparent 72%);
  animation: drift 17s ease-in-out infinite;
}

.pricing-deco-08 {
  right: 10%;
  bottom: 26%;
  width: 210px;
  height: 210px;
  animation: drift 19s ease-in-out infinite reverse;
}

.pricing-deco-09 {
  left: 31%;
  bottom: 150px;
  width: 78px;
  height: 78px;
  border-color: rgba(214, 191, 154, 0.38);
  animation:
    orbit 8s ease-in-out infinite reverse,
    pulse-ring-soft 3.8s ease-in-out infinite;
}

.pricing-deco-10 {
  top: 96px;
  right: 23%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(110, 135, 197, 0.34), transparent 70%);
  animation: drift 15s ease-in-out infinite reverse;
}

.pricing-deco-11 {
  left: 7%;
  bottom: 116px;
  width: 160px;
  height: 160px;
  animation:
    orbit 14s ease-in-out infinite,
    pulse-ring-soft 5.2s ease-in-out infinite;
}

.pricing-deco-12 {
  right: 8%;
  bottom: 76px;
  width: 320px;
  transform: rotate(8deg);
  animation: shimmer-line 9s ease-in-out infinite reverse;
}

.pricing-deco-13 {
  right: 7%;
  top: 82px;
  width: 172px;
  height: 172px;
  border-color: rgba(111, 183, 163, 0.34);
  box-shadow:
    0 0 0 16px rgba(111, 183, 163, 0.08),
    0 0 0 34px rgba(111, 183, 163, 0.04),
    0 0 42px rgba(111, 183, 163, 0.08);
  animation:
    orbit 13s ease-in-out infinite reverse,
    pulse-ring-soft 5.4s ease-in-out infinite;
}

.pricing-deco-14 {
  left: 6%;
  bottom: 150px;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(191, 161, 115, 0.4), transparent 72%);
  animation: drift 16s ease-in-out infinite;
}

.pricing-deco-15 {
  right: 28%;
  bottom: 118px;
  width: 180px;
  height: 180px;
  animation: drift 20s ease-in-out infinite reverse;
}

@keyframes shimmer-line {
  0%,
  100% {
    opacity: 0.18;
    scale: 0.92 1;
  }
  50% {
    opacity: 0.44;
    scale: 1.05 1;
  }
}

.showcase-card {
  min-height: 320px;
  padding: 30px;
}

.showcase-card-main {
  background:
    radial-gradient(circle at top left, rgba(60, 125, 108, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.showcase-card ul,
.footer-links {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.showcase-card li {
  position: relative;
  padding-left: 22px;
  color: var(--text-soft);
}

.showcase-card ul {
  margin-top: 22px;
}

.contact-stage {
  padding-bottom: 90px;
}

.contact-glow {
  bottom: 40px;
  right: -100px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(191, 161, 115, 0.22), transparent 68%);
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 420px;
  gap: 32px;
  align-items: center;
  padding: 42px;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.contact-panel {
  padding: 28px;
}

.contact-kicker {
  margin: 0 0 16px;
  color: #d7b37a;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.contact-link {
  display: block;
  width: fit-content;
  margin-top: 10px;
  color: var(--text);
  text-decoration: none;
  font-size: 1.32rem;
  font-weight: 740;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 16px;
}

.contact-note {
  margin: 0;
  color: rgba(245, 239, 226, 0.64);
}

.site-footer {
  padding: 24px 0 18px;
  background:
    radial-gradient(circle at right top, rgba(191, 161, 115, 0.12), transparent 24%),
    linear-gradient(180deg, #101722 0%, #0e151d 100%);
  color: var(--text);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-rw-page {
  margin: 0;
  background:
    radial-gradient(circle at 95% 10%, rgba(54, 91, 94, 0.24), transparent 28%),
    radial-gradient(circle at 6% 20%, rgba(191, 161, 115, 0.12), transparent 22%),
    linear-gradient(180deg, #101722 0%, #0e151d 46%, #101923 100%);
  color: var(--text);
  font-size: 17px;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.contact-rw-page .site-header .container,
.contact-rw-page .contact-rw-hero .container,
.contact-rw-page .site-footer .container {
  width: min(var(--container), calc(100% - 40px)) !important;
  max-width: var(--container) !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.contact-rw-page .site-header {
  width: 100% !important;
}

.contact-rw-page .site-header,
.contact-rw-page .site-header * {
  box-sizing: border-box;
}

.contact-rw-page .site-header {
  font-size: 16px !important;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif !important;
}

.contact-rw-page .brand {
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif !important;
}

.contact-rw-page .brand strong {
  display: block;
  color: var(--text) !important;
  font-size: 16px !important;
  line-height: 1.1 !important;
  letter-spacing: 0.08em !important;
  font-weight: 850 !important;
}

.contact-rw-page .brand small {
  display: block;
  margin-top: 4px;
  color: var(--text-soft) !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
  letter-spacing: 0 !important;
}

.contact-rw-page .site-nav a,
.contact-rw-page .nav-dropdown-toggle {
  color: var(--text-soft) !important;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif !important;
  font-size: 15px !important;
  line-height: 1.2 !important;
  font-weight: 760 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.contact-rw-page .site-nav a.is-active,
.contact-rw-page .nav-dropdown-toggle.is-active {
  color: var(--text) !important;
}

.contact-rw-page .nav-wrap,
.contact-rw-page #spacerStackstacks_in_2_16,
.contact-rw-page #stacks_out_60,
.contact-rw-page #s-wrapper-stacks_in_62 {
  display: none !important;
}

.contact-rw-page .stacks_top,
.contact-rw-page .stacks_out,
.contact-rw-page .stacks_in,
.contact-rw-page .stripped-wrapper,
.contact-rw-page .stripped-outer,
.contact-rw-page .stripped-container,
.contact-rw-page .stripped-content {
  background: transparent !important;
  border: 0 !important;
}

.contact-rw-page #s-content-stacks_in_4 {
  width: min(1050px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 82px !important;
}

.contact-rw-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 5vw, 68px) 0 clamp(18px, 3vw, 30px);
}

.contact-rw-hero-layout {
  display: block !important;
  max-width: 920px !important;
  text-align: center;
}

.contact-rw-hero h1 {
  max-width: 880px;
  margin: 0 auto;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(58px, 5.8vw, 92px);
  line-height: 0.92;
  letter-spacing: 0;
  color: var(--text);
}

.contact-rw-hero .hero-lead {
  max-width: 680px;
  margin: 18px auto 0;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.65;
}

.contact-rw-hero .hero-actions {
  margin-top: 22px;
  justify-content: center;
}

.contact-rw-hero .hero-actions .button {
  min-width: 210px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  color: var(--text) !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.045) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.contact-rw-card {
  display: none;
  padding: 26px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    rgba(26, 38, 50, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: var(--shadow);
}

.contact-rw-card a {
  display: block;
  margin: 12px 0;
  color: var(--text);
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 800;
  text-decoration: none;
}

.contact-rw-card p:last-child {
  margin-bottom: 0;
  color: rgba(245, 239, 226, 0.7);
}

.contact-rw-form-anchor {
  scroll-margin-top: 110px;
}

.contact-rw-page #stacks_out_7 {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 88% 12%, rgba(191, 161, 115, 0.15), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(27, 39, 52, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: var(--shadow);
}

.contact-rw-page #stacks_out_7::before {
  content: "Kontaktformular";
  display: block;
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-rw-page .yd-form {
  padding: 0 !important;
  color: var(--text) !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
  background: transparent !important;
}

.contact-rw-page .yd-form label,
.contact-rw-page .yd-form .yd-item > label,
.contact-rw-page .yd-form span[yd-text="label"] {
  color: var(--accent-strong) !important;
  font-size: 15px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em;
}

.contact-rw-page .yd-form input,
.contact-rw-page .yd-form select,
.contact-rw-page .yd-form textarea {
  width: 100% !important;
  border-radius: 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  background: rgba(12, 20, 29, 0.58) !important;
  color: var(--text) !important;
  font-size: 16px !important;
  line-height: 1.45 !important;
  box-shadow: none !important;
}

.contact-rw-page .yd-form p,
.contact-rw-page .yd-form li,
.contact-rw-page .yd-form .yd-subtext,
.contact-rw-page .yd-form .yd-error-msg,
.contact-rw-page .yd-dropzone [yd-text],
.contact-rw-page .yd-dropzone [yd-html] {
  font-size: 15px !important;
  line-height: 1.5 !important;
}

.contact-rw-page .yd-form input::placeholder,
.contact-rw-page .yd-form textarea::placeholder {
  color: rgba(245, 239, 226, 0.44) !important;
}

.contact-rw-page .yd-form select option {
  color: #101722;
}

.contact-rw-page .yd-dropzone .yd-relative.yd-mt-1 {
  border-radius: 20px !important;
  background: rgba(12, 20, 29, 0.46) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
}

.contact-rw-page .yd-dropzone .yd-ref,
.contact-rw-page .yd-dropzone [yd-ref="dnd"] {
  border-color: rgba(191, 161, 115, 0.34) !important;
}

.contact-rw-page .yd-button.submit,
.contact-rw-page button[type="submit"] {
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05)),
    rgba(191, 161, 115, 0.86) !important;
  color: #101722 !important;
  font-size: 17px !important;
  line-height: 1.2 !important;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 900 !important;
}

@media (max-width: 900px) {
  .contact-rw-hero-layout {
    display: block !important;
  }

  .contact-rw-card {
    display: none;
  }
}

@media (max-width: 640px) {
  .contact-rw-page #s-content-stacks_in_4 {
    width: min(100% - 28px, 920px);
    padding-bottom: 58px !important;
  }

  .contact-rw-page #stacks_out_7 {
    padding: 22px 16px;
    border-radius: 24px;
  }

  .contact-rw-hero {
    padding: 42px 0 22px;
  }

  .contact-rw-hero h1 {
    font-size: clamp(3.1rem, 15vw, 4.9rem);
  }

  .contact-rw-card {
    padding: 22px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 24px;
  padding: 22px 0 26px;
}

.footer-title {
  margin-bottom: 12px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--text);
}

.footer-grid p,
.footer-links a {
  color: rgba(245, 239, 226, 0.72);
}

.footer-links a {
  text-decoration: none;
}

.footer-bottom {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom p,
.footer-bottom small {
  margin: 0;
}

.footer-admin-link {
  color: rgba(245, 239, 226, 0.34);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-admin-link:hover,
.footer-admin-link:focus-visible {
  color: rgba(245, 239, 226, 0.72);
}

.ai-chat-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: min(380px, calc(100vw - 32px));
  font-family: inherit;
}

.ai-chat-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 13px 18px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06)),
    rgba(20, 28, 36, 0.88);
  color: var(--text);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  backdrop-filter: blur(18px);
}

.ai-chat-toggle-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent-strong);
  box-shadow:
    0 0 0 6px rgba(213, 182, 138, 0.12),
    0 0 24px rgba(213, 182, 138, 0.45);
}

.ai-chat-panel {
  position: absolute;
  right: 0;
  bottom: 70px;
  display: grid;
  grid-template-rows: auto minmax(180px, 330px) auto auto;
  width: 100%;
  max-height: min(680px, calc(100vh - 120px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(191, 161, 115, 0.2), transparent 38%),
    linear-gradient(135deg, rgba(45, 58, 72, 0.96), rgba(18, 27, 38, 0.98));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(22px);
}

.ai-chat-panel[hidden] {
  display: none;
}

.ai-chat-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 20px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-chat-kicker {
  margin: 0 0 6px;
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ai-chat-header h2 {
  margin: 0;
  color: var(--text);
  font-size: 1.18rem;
  line-height: 1.12;
}

.ai-chat-close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 1.3rem;
  line-height: 1;
}

.ai-chat-messages {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  overflow-y: auto;
}

.ai-chat-message {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 18px;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.45;
  white-space: pre-wrap;
}

.ai-chat-message p {
  margin: 0;
  white-space: normal;
}

.ai-chat-message p + p,
.ai-chat-message ul + p,
.ai-chat-message p + ul {
  margin-top: 10px;
}

.ai-chat-message ul {
  display: grid;
  gap: 6px;
  margin: 8px 0 0;
  padding-left: 1.1rem;
  white-space: normal;
}

.ai-chat-message li::marker {
  color: var(--accent-strong);
}

.ai-chat-message strong {
  color: var(--text);
  font-weight: 900;
}

.ai-chat-message em {
  color: var(--text-soft);
}

.ai-chat-message a {
  color: var(--accent-strong);
  font-weight: 800;
}

.ai-chat-message-assistant {
  align-self: flex-start;
  border-bottom-left-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.ai-chat-message-user {
  align-self: flex-end;
  border-bottom-right-radius: 6px;
  background: rgba(191, 161, 115, 0.22);
}

.ai-chat-thinking {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  color: rgba(245, 239, 226, 0.82);
}

.ai-chat-thinking::after {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: linear-gradient(105deg, transparent 35%, rgba(213, 182, 138, 0.22), transparent 65%);
  animation: ai-chat-scan 1.9s ease-in-out infinite;
}

.ai-chat-thinking-orb {
  position: relative;
  z-index: 1;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent-strong);
  box-shadow:
    0 0 0 5px rgba(213, 182, 138, 0.12),
    0 0 18px rgba(213, 182, 138, 0.5);
  animation: ai-chat-orb-pulse 1.4s ease-in-out infinite;
}

.ai-chat-thinking-text,
.ai-chat-thinking-dots {
  position: relative;
  z-index: 1;
}

.ai-chat-thinking-dots {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ai-chat-thinking-dots span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--accent-strong);
  opacity: 0.35;
  animation: ai-chat-dot 1.15s ease-in-out infinite;
}

.ai-chat-thinking-dots span:nth-child(2) {
  animation-delay: 0.16s;
}

.ai-chat-thinking-dots span:nth-child(3) {
  animation-delay: 0.32s;
}

.ai-chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-chat-form textarea {
  width: 100%;
  min-height: 46px;
  max-height: 110px;
  resize: vertical;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(10, 15, 22, 0.64);
  color: var(--text);
  padding: 12px 13px;
  font: inherit;
  line-height: 1.35;
}

.ai-chat-form textarea::placeholder {
  color: rgba(245, 239, 226, 0.48);
}

.ai-chat-form button {
  min-width: 70px;
  border: 0;
  border-radius: 16px;
  background: var(--accent-strong);
  color: #141c24;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.ai-chat-form button:disabled,
.ai-chat-form textarea:disabled {
  cursor: wait;
  opacity: 0.72;
}

.ai-chat-note {
  margin: 0;
  padding: 0 18px 16px;
  color: rgba(245, 239, 226, 0.58);
  font-size: 0.78rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

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

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, 18px, 0) scale(1.05);
  }
}

@keyframes ai-chat-dot {
  0%,
  80%,
  100% {
    opacity: 0.28;
    transform: translateY(0) scale(0.82);
  }

  40% {
    opacity: 1;
    transform: translateY(-4px) scale(1.1);
  }
}

@keyframes ai-chat-orb-pulse {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.75;
  }

  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

@keyframes ai-chat-scan {
  0% {
    transform: translateX(-60%);
    opacity: 0;
  }

  35%,
  65% {
    opacity: 1;
  }

  100% {
    transform: translateX(60%);
    opacity: 0;
  }
}

@keyframes orbit {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -14px, 0) scale(1.03);
  }
}

@keyframes pulse-ring {
  0%,
  100% {
    opacity: 0.34;
    transform: scale(0.92);
  }
  50% {
    opacity: 0.98;
    transform: scale(1.14);
  }
}

@keyframes pulse-ring-soft {
  0%,
  100% {
    opacity: 0.26;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.58;
    transform: scale(1.08);
  }
}

@keyframes pulse-button {
  0%,
  100% {
    transform: translateY(0) scale(1);
    border-color: rgba(255, 255, 255, 0.16);
  }
  50% {
    transform: translateY(-1px) scale(1.02);
    border-color: rgba(214, 191, 154, 0.3);
  }
}

@keyframes pulse-button-soft {
  0%,
  100% {
    transform: translateY(0) scale(1);
    border-color: rgba(255, 255, 255, 0.14);
  }
  50% {
    transform: translateY(-1px) scale(1.015);
    border-color: rgba(214, 191, 154, 0.24);
  }
}

@keyframes active-nav-orbit {
  0% {
    top: -4px;
    left: 50%;
    transform: translate(-50%, 0);
  }
  25% {
    top: 50%;
    left: calc(100% + 4px);
    transform: translate(-50%, -50%);
  }
  50% {
    top: calc(100% + 4px);
    left: 50%;
    transform: translate(-50%, -50%);
  }
  75% {
    top: 50%;
    left: -4px;
    transform: translate(-50%, -50%);
  }
  100% {
    top: -4px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}

@keyframes studio-current {
  0%,
  100% {
    background-position: 0% 40%, 100% 55%;
    opacity: 0.36;
    filter: drop-shadow(0 0 10px rgba(213, 182, 138, 0.24));
  }
  50% {
    background-position: 100% 62%, 0% 42%;
    opacity: 0.9;
    filter:
      drop-shadow(0 0 14px rgba(213, 182, 138, 0.42))
      drop-shadow(0 0 28px rgba(111, 183, 163, 0.2));
  }
}

@keyframes studio-spark {
  0%,
  100% {
    opacity: 0.24;
    transform: translate3d(-8px, -8px, 0) rotate(-10deg) scale(0.96);
  }
  45% {
    opacity: 0.74;
    transform: translate3d(12px, 8px, 0) rotate(-6deg) scale(1.04);
  }
  70% {
    opacity: 0.42;
    transform: translate3d(0, 0, 0) rotate(-8deg) scale(1);
  }
}

@media (max-width: 1320px) {
  .site-nav {
    gap: 8px;
  }

  .site-nav a,
  .nav-dropdown-toggle {
    font-size: 0.78rem;
  }

  .nav-cta {
    padding-inline: 16px;
  }

  .brand-text small {
    display: none;
  }
}

@media (max-width: 1180px) {
  .header-inner {
    flex-wrap: wrap;
    min-height: auto;
    padding: 16px 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0 4px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-cta {
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .section-header,
  .split-trust-grid,
  .contact-layout,
  .footer-grid,
  .intro-band-grid,
  .blog-hero-layout,
  .blog-editor-grid,
  .app-hero-layout,
  .contact-page-hero-layout,
  .contact-form-layout,
  .tool-hero-layout,
  .calculator-layout {
    grid-template-columns: 1fr;
  }

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

  .blog-editor-preview {
    position: static;
    max-height: none;
  }

  .studio-copy h2 {
    max-width: 13ch;
  }

  .editorial-grid,
  .main-area-grid,
  .service-priority-grid,
  .showcase-grid,
  .process-rail,
  .blog-card-grid,
  .price-grid,
  .package-grid,
  .app-benefit-grid,
  .app-example-grid,
  .tool-steps,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .price-card-feature {
    grid-column: auto;
  }

  .price-summary-header,
  .price-summary dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .calculator-fields {
    grid-template-columns: 1fr;
  }

  .calculator-copy {
    position: static;
  }

  .process-rail::before {
    display: none;
  }

  .hero-stage-frame {
    min-height: auto;
  }

  .hero-ring-two,
  .hero-ring-three,
  .hero-ring-four,
  .hero-dot-cluster-two,
  .section-ring-contact,
  .section-ring-contact-two,
  .pricing-deco-04,
  .pricing-deco-08,
  .pricing-deco-12,
  .pricing-deco-15 {
    display: none;
  }

  .signal-stack {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .signal-card-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .signal-card-large,
  .signal-row {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 820px) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .header-inner {
    flex-wrap: wrap;
    min-height: auto;
    padding: 16px 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0 4px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-cta {
    width: 100%;
  }

  .nav-dropdown {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .nav-dropdown-toggle {
    width: 100%;
    text-align: left;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    width: 100%;
    margin-top: 10px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: none;
  }

  .hero,
  .section {
    padding: 78px 0;
  }

  .studio-section {
    padding: 74px 0;
  }

  .studio-console {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    -webkit-transform: none !important;
    transition: none !important;
    background:
      radial-gradient(circle at 74% 12%, rgba(87, 113, 162, 0.26), transparent 36%),
      linear-gradient(150deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
      rgba(13, 17, 22, 0.82);
  }

  .studio-console::before,
  .studio-console::after {
    display: none;
  }

  .hero-layout {
    gap: 28px;
  }

  .hero-stage {
    width: 100%;
  }

  .intro-band {
    padding-top: 10px;
  }

  .hero-trust,
  .service-marquee,
  .contact-actions,
  .hero-actions {
    gap: 10px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  h1 {
    max-width: none;
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(1.95rem, 10vw, 3rem);
  }

  .hero,
  .section {
    padding: 66px 0;
  }

  .hero-ring,
  .hero-dot-cluster,
  .section-ring,
  .section-orb,
  .section-dot-cluster,
  .pricing-deco {
    display: none;
  }

  .hero-stage-frame,
  .contact-layout,
  .editorial-feature,
  .blog-hero-panel,
  .blog-card,
  .blog-post-layout,
  .blog-editor-panel,
  .price-card,
  .package-card,
  .price-calculator,
  .price-summary,
  .app-signal,
  .app-card,
  .app-example,
  .contact-direct-panel,
  .ai-pro-contact-form,
  .tool-summary,
  .designer-embed,
  .live-preview-tool,
  .support-card,
  .process-node,
  .showcase-card,
  .contact-panel,
  .signal-card {
    padding: 22px;
  }

  .signal-card-large {
    min-height: auto;
    padding-top: 120px;
  }

  .signal-card-large::before {
    width: 110px;
    height: 110px;
    right: 22px;
    top: 22px;
    box-shadow:
      0 0 0 20px rgba(255, 255, 255, 0.03),
      0 0 0 42px rgba(255, 255, 255, 0.02);
  }

  .signal-row {
    grid-template-columns: 1fr;
  }

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

  .button {
    width: 100%;
  }

  .studio-console {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: 22px;
  }

  .studio-copy h2 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10vw, 3.05rem);
    line-height: 1;
  }

  .studio-copy p,
  .studio-language-note,
  .studio-meta,
  .studio-tool-list span {
    overflow-wrap: break-word;
  }

  .studio-meta {
    display: block;
    max-width: 100%;
  }

  .studio-console-top,
  .studio-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .studio-flagship-grid {
    grid-template-columns: 1fr;
  }

  .studio-flagship-card {
    min-height: auto;
  }

  .studio-tool-list span {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .contact-layout {
    padding: 24px;
  }

  .page-hero-copy h1 {
    max-width: none;
  }

  .app-hero-copy h1 {
    max-width: none;
  }

  .blog-post-layout,
  .blog-editor-layout {
    width: min(100% - 24px, 920px);
  }

  .blog-editor-fields,
  .blog-upload-row {
    grid-template-columns: 1fr;
  }

  .blog-lead-card-header {
    flex-direction: column;
  }

  .blog-lead-meta {
    grid-template-columns: 1fr;
  }

  .blog-hero-copy h1,
  .blog-post-header h1,
  .blog-editor-layout h1 {
    max-width: none;
  }

  .contact-page-copy h1 {
    max-width: none;
  }

  .tool-hero-copy h1 {
    max-width: none;
  }

  .page-hero-copy {
    text-align: left;
  }

  .page-hero-copy .hero-lead {
    margin-left: 0;
    margin-right: 0;
  }

  .price-summary-header,
  .price-summary dl {
    grid-template-columns: 1fr;
  }

  .price-summary dl div {
    min-height: auto;
  }

  .price-calculator label,
  .price-calculator .check-row {
    grid-template-columns: 1fr;
  }

  .contact-field-grid {
    grid-template-columns: 1fr;
  }

  .price-calculator {
    gap: 14px;
  }

  .price-calculator fieldset {
    padding: 24px 16px 16px;
  }

  .price-calculator input[type="number"] {
    max-width: 100%;
  }

  .designer-embed iframe {
    height: 900px !important;
    min-height: 900px !important;
  }

  .live-preview-tool iframe {
    height: 900px !important;
    min-height: 900px !important;
  }

  .live-preview-tool textarea {
    height: 300px;
    min-height: 300px !important;
  }

  .check-row strong {
    white-space: normal;
  }

  .calculator-total {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .ai-chat-widget {
    right: 14px;
    bottom: 14px;
    width: calc(100vw - 28px);
  }

  .ai-chat-toggle {
    min-height: 50px;
    padding: 12px 15px;
    font-size: 0.94rem;
  }

  .ai-chat-panel {
    bottom: 64px;
    grid-template-rows: auto minmax(170px, 42vh) auto auto;
    max-height: calc(100vh - 96px);
    border-radius: 22px;
  }

  .ai-chat-message {
    max-width: 94%;
  }

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

  .ai-chat-form button {
    min-height: 44px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

/* Scandinavian industrial tech theme layer */
#main-content {
  display: flex;
  flex-direction: column;
}

.hero-home {
  order: -1;
}

.hero-title-line {
  display: block;
}

.hero-title-mobile {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  background: rgba(7, 7, 7, 0.88);
  border-bottom: 1px solid rgba(255, 138, 0, 0.22);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

.brand-mark {
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 138, 0, 0.18), rgba(255, 255, 255, 0.06)),
    #111;
  border-color: rgba(255, 138, 0, 0.38);
}

.brand-text strong,
.site-nav a,
.nav-dropdown-toggle,
.button,
.eyebrow,
.signal-label,
.price-summary-header .signal-label,
.feature-index,
.studio-flagship-kicker,
.studio-tool-heading,
.calculator-group-title,
.price-calculator legend,
.site-footer h2,
.site-footer h3,
.site-footer h4 {
  letter-spacing: 0.06em;
}

.site-nav a,
.nav-dropdown-toggle {
  color: rgba(244, 241, 234, 0.78);
  font-weight: 800;
}

.site-nav a.is-active,
.nav-dropdown-toggle.is-active {
  background:
    linear-gradient(135deg, rgba(255, 138, 0, 0.22), rgba(255, 255, 255, 0.035)),
    #111;
  border-color: rgba(255, 138, 0, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 34px rgba(255, 138, 0, 0.12);
}

.site-nav a.is-active::before,
.nav-dropdown-toggle.is-active::before {
  background: var(--accent);
  box-shadow:
    0 0 0 4px rgba(255, 138, 0, 0.18),
    0 0 20px rgba(255, 138, 0, 0.92);
}

.nav-dropdown-menu {
  background:
    linear-gradient(180deg, rgba(255, 138, 0, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(10, 10, 10, 0.98);
  border-color: rgba(255, 138, 0, 0.28);
  border-radius: 14px;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: rgba(255, 138, 0, 0.14);
}

h1,
h2,
h3,
.signal-title,
.signal-metric,
.footer-title {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.005em;
  text-transform: none;
}

h1 {
  max-width: 13ch;
  font-size: clamp(3.35rem, 8.2vw, 7.4rem);
}

h2 {
  font-size: clamp(2.3rem, 5.2vw, 4.75rem);
}

h3,
.signal-title {
  font-size: clamp(1.25rem, 2.1vw, 1.85rem);
}

.eyebrow,
.signal-label,
.studio-flagship-kicker,
.studio-tool-heading,
.calculator-group-title,
.price-calculator legend {
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 900;
  text-transform: uppercase;
}

.hero {
  background:
    linear-gradient(90deg, rgba(255, 138, 0, 0.07) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 80% 10%, rgba(255, 138, 0, 0.12), transparent 28%);
  background-size: 104px 104px, auto;
}

.hero::after,
.section::after,
.studio-section::after,
.contact-rw-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(115deg, transparent 0 42%, rgba(255, 138, 0, 0.26) 42.2% 42.55%, transparent 42.8% 100%),
    radial-gradient(rgba(255, 255, 255, 0.22) 0.65px, transparent 0.9px);
  background-size: auto, 6px 6px;
  mix-blend-mode: screen;
}

.hero-layout,
.page-hero-layout,
.studio-layout,
.section-header,
.contact-rw-hero-layout,
.price-grid,
.package-grid,
.calculator-layout {
  z-index: 1;
}

.hero-orb,
.section-orb,
.studio-atmosphere {
  opacity: 0.42;
  filter: blur(14px);
}

.hero-orb-left,
.section-orb-services,
.section-orb-contact,
.studio-atmosphere-one {
  background: radial-gradient(circle, rgba(255, 138, 0, 0.22), transparent 68%);
}

.hero-orb-right,
.section-orb-services-two,
.studio-atmosphere-two {
  background: radial-gradient(circle, rgba(244, 241, 234, 0.09), transparent 70%);
}

.hero-ring,
.section-ring,
.studio-orbit {
  border-color: rgba(255, 138, 0, 0.2);
  box-shadow:
    0 0 0 18px rgba(255, 138, 0, 0.035),
    0 0 0 42px rgba(255, 138, 0, 0.018);
}

.hero-dot-cluster,
.section-dot-cluster,
.studio-mesh {
  background-image: radial-gradient(rgba(255, 138, 0, 0.72) 1px, transparent 1.2px);
  opacity: 0.26;
}

.hero-main {
  width: min(100%, 1160px);
}

.hero-lead,
.section-header p,
.split-copy p,
.contact-lead,
.editorial-feature p,
.process-node p,
.trust-line p,
.showcase-card li,
.showcase-card p,
.footer-grid p,
.footer-links a,
.studio-copy p,
.price-card p,
.price-card li,
.package-card p,
.calculator-copy p {
  color: var(--text-soft);
}

.hero-trust span,
.service-marquee span {
  border-color: rgba(255, 138, 0, 0.28);
  background: rgba(255, 138, 0, 0.08);
  color: var(--accent-strong);
  border-radius: 8px;
}

.button {
  border-radius: 8px;
  min-height: 52px;
  font-weight: 900;
  text-transform: uppercase;
}

.button-primary,
.contact-rw-page .yd-button.submit,
.contact-rw-page button[type="submit"] {
  background:
    linear-gradient(180deg, #ff9d2e, #f28c00);
  color: #101010;
  border: 1px solid rgba(255, 176, 63, 0.82);
  box-shadow:
    0 16px 38px rgba(255, 138, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation: none;
}

.button-primary:hover,
.button-primary:focus-visible,
.contact-rw-page .yd-button.submit:hover,
.contact-rw-page button[type="submit"]:hover {
  box-shadow:
    0 20px 46px rgba(255, 138, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button-ghost,
.button-light,
.button-ghost-light,
.button-secondary {
  background: rgba(7, 7, 7, 0.52);
  color: var(--text);
  border: 1px solid rgba(255, 138, 0, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: none;
}

.hero-stage-frame,
.signal-card,
.intro-band,
.studio-console,
.studio-flagship-card,
.blog-hero-panel,
.blog-card,
.blog-editor-panel,
.blog-lead-card,
.price-summary,
.price-summary dl div,
.price-card,
.package-card,
.price-calculator,
.contact-panel,
.contact-rw-card,
.contact-rw-page #stacks_out_7,
.showcase-card,
.process-node,
.trust-line {
  background:
    linear-gradient(145deg, rgba(255, 138, 0, 0.075), rgba(255, 255, 255, 0.025)),
    #111;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.price-card,
.package-card,
.studio-flagship-card,
.blog-card,
.showcase-card,
.process-node {
  border-radius: 16px;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.price-card:hover,
.package-card:hover,
.studio-flagship-card:hover,
.blog-card:hover,
.showcase-card:hover,
.process-node:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 138, 0, 0.42);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.62);
}

.price-card-feature,
.signal-card-large,
.studio-flagship-card:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(255, 138, 0, 0.16), rgba(255, 255, 255, 0.035)),
    #141414;
  border-color: rgba(255, 138, 0, 0.32);
}

.feature-index {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: var(--accent);
  color: #111;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 28px rgba(255, 138, 0, 0.18);
}

.price-card li::before,
.signal-list li::before,
.showcase-card li::before {
  background: var(--accent);
  border-radius: 2px;
}

.price-summary dl {
  border-radius: 12px;
  border-color: rgba(255, 138, 0, 0.24);
}

.price-summary dd,
.package-card strong,
.calculator-total strong,
.contact-rw-card a {
  color: var(--accent-strong);
}

.price-calculator fieldset {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 138, 0, 0.04)),
    rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

.price-calculator input[type="number"],
.price-calculator input[type="checkbox"],
.contact-rw-page .yd-form input,
.contact-rw-page .yd-form select,
.contact-rw-page .yd-form textarea,
.ai-chat-form textarea {
  background: #080808;
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
}

.calculator-total {
  background:
    linear-gradient(145deg, rgba(255, 138, 0, 0.2), rgba(255, 255, 255, 0.035)),
    #111;
  border-color: rgba(255, 138, 0, 0.32);
}

.contact-rw-page {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 138, 0, 0.11), transparent 28%),
    linear-gradient(180deg, #070707, #0b0b0b 62%, #111);
}

.contact-rw-page .site-header {
  background: rgba(7, 7, 7, 0.9) !important;
}

.contact-rw-hero {
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 138, 0, 0.12), transparent 28%),
    linear-gradient(180deg, #070707, #0d0d0d);
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(255, 138, 0, 0.05), transparent 42%),
    #080808;
  border-top: 1px solid rgba(255, 138, 0, 0.22);
}

.ai-chat-toggle,
.ai-chat-panel {
  border-color: rgba(255, 138, 0, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 138, 0, 0.14), rgba(255, 255, 255, 0.04)),
    #101010;
}

.ai-chat-toggle-dot,
.ai-chat-thinking-orb {
  background: var(--accent);
  box-shadow:
    0 0 0 5px rgba(255, 138, 0, 0.13),
    0 0 18px rgba(255, 138, 0, 0.8);
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, var(--container));
    max-width: calc(100vw - 24px);
  }

  body::before {
    opacity: 0.2;
    background-size: 52px 52px, 52px 52px, 6px 6px;
  }

  h1 {
    font-size: clamp(2.85rem, 12vw, 3.85rem);
    max-width: 100%;
    line-height: 0.98;
  }

  .hero-home h1 {
    font-size: clamp(1.95rem, 8vw, 2.25rem);
  }

  .hero-title-desktop {
    display: none;
  }

  .hero-title-mobile {
    display: block;
  }

  .button {
    width: 100%;
  }

  .hero,
  .hero-copy,
  .page-hero-copy,
  .app-hero-copy,
  .tool-hero-copy {
    max-width: 100%;
    min-width: 0;
  }

  .page-hero-copy h1,
  .app-hero-copy h1,
  .tool-hero-copy h1,
  .blog-hero-copy h1 {
    width: min(100%, 11ch);
    max-width: calc(100vw - 24px);
    font-size: clamp(2.15rem, 10vw, 3rem);
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .hero-lead {
    max-width: 30ch;
    padding-inline: 4px;
    font-size: 0.98rem;
    overflow-wrap: break-word;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    justify-content: center;
  }

  .hero-trust {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-trust span {
    justify-content: center;
    width: 100%;
    border-radius: 8px;
  }

  .studio-console,
  .hero-stage-frame,
  .price-summary,
  .price-calculator,
  .contact-panel {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .studio-console {
    padding: 22px;
  }

  .studio-flagship-grid {
    grid-template-columns: 1fr;
  }

  .studio-flagship-card {
    min-width: 0;
  }
}

@media (max-width: 420px) {
  .hero-home h1 {
    font-size: clamp(1.85rem, 7.2vw, 2rem);
  }
}
