:root {
  --power: #132b45;
  --mindful: #e7aab7;
  --competence: #283278;
  --positivity: #d8603c;
  --authenticity: #f6f6f6;
  --innovation: #7082a3;
  --health: #c1d5d6;
  --serenity: #f8e0ac;
  --ink: #12263d;
  --muted: #667486;
  --line: #e7edf2;
  --soft: #f8fafb;
  --shadow: 0 18px 45px rgba(19, 43, 69, 0.07);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
}

html.theme-dark {
  --power: #f2f7ff;
  --competence: #c5d7ff;
  --innovation: #9eb2d5;
  --health: #b9d7dc;
  --serenity: #f8e0ac;
  --ink: #edf3ff;
  --muted: #aebbd1;
  --line: rgba(163, 184, 214, 0.2);
  --soft: rgba(16, 31, 52, 0.82);
  --shadow: 0 18px 45px rgba(3, 9, 18, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: "Barlow", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

html.theme-dark body {
  background: #081321;
}

body::before,
body::after {
  position: fixed;
  inset: auto;
  z-index: -1;
  display: block;
  width: 74rem;
  height: 50rem;
  border-radius: 48% 52% 62% 38%;
  background:
    radial-gradient(circle at 18% 28%, rgba(193, 213, 214, 0.82), transparent 34%),
    radial-gradient(circle at 52% 22%, rgba(231, 170, 183, 0.56), transparent 37%),
    radial-gradient(circle at 80% 54%, rgba(248, 224, 172, 0.42), transparent 40%),
    radial-gradient(circle at 34% 74%, rgba(112, 130, 163, 0.28), transparent 42%),
    radial-gradient(circle at 72% 26%, rgba(216, 96, 60, 0.12), transparent 28%);
  filter: blur(28px);
  opacity: 0.86;
  content: "";
  pointer-events: none;
  transform-origin: center;
  background-position:
    var(--ambient-bg-1x, 0%) var(--ambient-bg-1y, 0%),
    var(--ambient-bg-2x, 0%) var(--ambient-bg-2y, 0%),
    var(--ambient-bg-3x, 0%) var(--ambient-bg-3y, 0%),
    var(--ambient-bg-4x, 0%) var(--ambient-bg-4y, 0%),
    var(--ambient-bg-5x, 0%) var(--ambient-bg-5y, 0%);
}

html.theme-dark body::before,
html.theme-dark body::after {
  opacity: 0.52;
  filter: blur(32px);
}

body::before {
  top: var(--ambient-before-top, -16rem);
  right: var(--ambient-before-right, -12rem);
  width: var(--ambient-before-width, 74rem);
  height: var(--ambient-before-height, 50rem);
  opacity: var(--ambient-before-opacity, 0.86);
  border-radius: var(--ambient-before-radius, 48% 52% 62% 38%);
  transform: translate3d(var(--ambient-before-x, 0rem), var(--ambient-before-y, 0rem), 0)
    rotate(var(--ambient-before-rotate, 0deg))
    scale(var(--ambient-before-scale, 1));
}

body::after {
  top: var(--ambient-after-top, 2rem);
  left: var(--ambient-after-left, -18rem);
  width: var(--ambient-after-width, 60rem);
  height: var(--ambient-after-height, 38rem);
  opacity: var(--ambient-after-opacity, 0.64);
  border-radius: var(--ambient-after-radius, 56% 44% 46% 54%);
  transform: translate3d(var(--ambient-after-x, 0rem), var(--ambient-after-y, 0rem), 0)
    rotate(var(--ambient-after-rotate, 0deg))
    scale(var(--ambient-after-scale, 1));
}

@keyframes ambientMorphPrimary {
  0% {
    border-radius: 48% 52% 62% 38%;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

  50% {
    border-radius: 62% 38% 44% 56%;
    transform: translate3d(-3.2rem, 2.6rem, 0) rotate(7deg) scale(1.1);
  }

  100% {
    border-radius: 38% 62% 54% 46%;
    transform: translate3d(3.8rem, -2rem, 0) rotate(-6deg) scale(1.04);
  }
}

@keyframes ambientMorphSecondary {
  0% {
    border-radius: 56% 44% 46% 54%;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

  50% {
    border-radius: 44% 56% 60% 40%;
    transform: translate3d(2.6rem, -1.8rem, 0) rotate(-5deg) scale(1.07);
  }

  100% {
    border-radius: 60% 40% 50% 50%;
    transform: translate3d(-2.4rem, 1.6rem, 0) rotate(4deg) scale(1.03);
  }
}

@keyframes ambientDriftPrimary {
  0% {
    background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }

  100% {
    background-position: -2rem 1.2rem, 2rem -1rem, 1.4rem 1.8rem, -1.2rem -1.6rem, 1rem 0.8rem;
  }
}

@keyframes ambientDriftSecondary {
  0% {
    background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }

  100% {
    background-position: 1.6rem -1rem, -1.4rem 1.2rem, -2rem -0.8rem, 1rem 1.6rem, -0.8rem -0.6rem;
  }
}

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

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

button {
  appearance: none;
  -webkit-appearance: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  display: grid;
  width: 100%;
  height: 84px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 30px;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: background 220ms ease, backdrop-filter 220ms ease, -webkit-backdrop-filter 220ms ease, box-shadow 220ms ease;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -28px;
  left: 0;
  height: 36px;
  background: transparent;
  content: "";
  pointer-events: none;
  opacity: 1;
  transition: opacity 220ms ease;
}

.site-header.is-solid {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(24px) saturate(1.08);
  -webkit-backdrop-filter: blur(24px) saturate(1.08);
  box-shadow: 0 10px 32px rgba(19, 43, 69, 0.06);
}

.site-header.is-solid::after {
  opacity: 0.35;
}

.brand {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(3px);
}

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

.nav-toggle {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  min-width: 112px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--power);
  background: rgba(255, 255, 255, 0.56);
  cursor: pointer;
  font-weight: 700;
  backdrop-filter: blur(24px) saturate(1.08);
  -webkit-backdrop-filter: blur(24px) saturate(1.08);
}

.nav-toggle i,
.nav-toggle i::before,
.nav-toggle i::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--competence);
  content: "";
}

.nav-toggle i::before {
  transform: translateY(-6px);
}

.nav-toggle i::after {
  transform: translateY(4px);
}

.nav-panel {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  justify-content: flex-end;
  background: rgba(19, 43, 69, 0);
  pointer-events: none;
  transition: background 220ms ease;
}

.nav-panel.is-open {
  background: rgba(19, 43, 69, 0.08);
  pointer-events: auto;
}

.nav-panel-inner {
  width: min(390px, 100%);
  height: 100%;
  padding: 24px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: -18px 0 44px rgba(19, 43, 69, 0.08);
  backdrop-filter: blur(34px) saturate(1.08);
  -webkit-backdrop-filter: blur(34px) saturate(1.08);
  transform: translateX(100%);
  transition: transform 260ms ease;
}

.nav-panel.is-open .nav-panel-inner {
  transform: translateX(0);
}

.nav-close {
  display: block;
  margin-left: auto;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--power);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.language-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.nav-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  align-items: center;
}

.language-switch button,
.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 600;
}

.language-switch a {
  text-decoration: none;
}

.theme-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.theme-switch button {
  display: inline-flex;
  min-width: 74px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 600;
}

.theme-switch--icon button {
  min-width: 42px;
  width: 42px;
  padding: 0;
  font-size: 1rem;
  line-height: 1;
}

.theme-switch--icon button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.theme-switch--icon button svg {
  width: 18px;
  height: 18px;
  display: block;
}

.language-switch button.is-active,
.language-switch a.is-active,
.theme-switch button.is-active {
  color: #ffffff;
  background: var(--competence);
}

.nav-panel nav {
  display: grid;
  gap: 2px;
  margin-top: 24px;
}

.nav-panel nav a {
  display: grid;
  gap: 4px;
  padding: 13px 0;
}

.nav-panel nav strong {
  color: var(--power);
  font-size: 1.05rem;
}

.nav-panel nav span {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero,
.proof-strip,
.section,
.chat-section,
.quote-section,
.legal,
footer {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
  scroll-margin-top: 110px;
}

.hero {
  min-height: 88vh;
  display: grid;
  place-items: center;
  padding: 156px 0 72px;
  text-align: center;
}

.hero-grid {
  position: relative;
  width: min(860px, 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--positivity);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  min-height: 10.95rem;
  margin: 0;
  color: var(--power);
  font-size: 5.7rem;
  line-height: 0.96;
  font-weight: 700;
}

h1.is-typing::after {
  display: inline-block;
  width: 0.08em;
  height: 0.85em;
  margin-left: 0.08em;
  background: var(--positivity);
  content: "";
  transform: translateY(0.08em);
  animation: cursorBlink 850ms steps(1) infinite;
}

@keyframes cursorBlink {
  50% {
    opacity: 0;
  }
}

.hero-lede {
  max-width: 690px;
  margin: 14px auto 0;
  color: #30465f;
  font-size: 1.24rem;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.trial-note {
  max-width: 590px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 500;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  line-height: 1;
}

.button.primary {
  color: #ffffff;
  border-color: var(--positivity);
  background: var(--positivity);
  box-shadow: 0 12px 26px rgba(216, 96, 60, 0.18);
}

.button:disabled {
  cursor: default;
  opacity: 0.82;
}

.button.secondary {
  color: var(--power);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(224, 231, 239, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 22px 54px rgba(19, 43, 69, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.proof-strip div {
  min-height: 132px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    inset 0 -1px 0 rgba(210, 219, 231, 0.36);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

html.theme-dark .site-header.is-solid,
html.theme-dark .nav-toggle,
html.theme-dark .nav-panel-inner,
html.theme-dark .nav-close,
html.theme-dark .language-switch,
html.theme-dark .theme-switch,
html.theme-dark .proof-strip,
html.theme-dark .proof-strip div,
html.theme-dark .usecase-card,
html.theme-dark .difference-card,
html.theme-dark .reason-list div,
html.theme-dark .start-steps div,
html.theme-dark .chat-shell,
html.theme-dark .architecture-step,
html.theme-dark .preview-window,
html.theme-dark .partner-copy,
html.theme-dark .partner-points div,
html.theme-dark .pricing-card,
html.theme-dark .faq-item,
html.theme-dark .contact-form,
html.theme-dark .legal,
html.theme-dark .cookie-banner {
  border-color: rgba(163, 184, 214, 0.18);
  background: rgba(10, 22, 38, 0.72);
  box-shadow: 0 18px 48px rgba(2, 8, 18, 0.26);
}

html.theme-dark .button.secondary,
html.theme-dark .chat-topbar,
html.theme-dark .message.assistant,
html.theme-dark .chat-form input,
html.theme-dark .contact-form input,
html.theme-dark .contact-form textarea,
html.theme-dark .trial-form input,
html.theme-dark .trial-form select,
html.theme-dark .trial-form textarea,
html.theme-dark .preview-bubble.assistant,
html.theme-dark .preview-thinking {
  background: rgba(14, 28, 47, 0.82);
  color: var(--ink);
}

html.theme-dark .button.primary,
html.theme-dark .button.secondary,
html.theme-dark .chat-prompts button,
html.theme-dark .theme-switch button.is-active,
html.theme-dark .language-switch a.is-active {
  color: #132b45;
}

html.theme-dark .nav-panel {
  background: rgba(2, 9, 18, 0.22);
}

html.theme-dark .brand img,
html.theme-dark footer a:first-child img {
  filter: brightness(0) invert(1);
}

html.theme-dark h1,
html.theme-dark h2,
html.theme-dark h3,
html.theme-dark .proof-strip strong,
html.theme-dark .usecase-card h3,
html.theme-dark .reason-list h3,
html.theme-dark .start-steps h3,
html.theme-dark .architecture-step h3,
html.theme-dark .preview-bar strong,
html.theme-dark .preview-bubble,
html.theme-dark .preview-action p,
html.theme-dark .pricing-card h3,
html.theme-dark .faq-item summary strong,
html.theme-dark .price span,
html.theme-dark .contact-form label > span,
html.theme-dark .trial-dialog-copy h2,
html.theme-dark .trial-form span,
html.theme-dark .message strong,
html.theme-dark .legal a,
html.theme-dark summary {
  color: var(--ink);
}

html.theme-dark .nav-panel nav span,
html.theme-dark .proof-strip span,
html.theme-dark .usecase-card p,
html.theme-dark .difference-card p,
html.theme-dark .reason-list p,
html.theme-dark .start-steps p,
html.theme-dark .contact-privacy,
html.theme-dark .cookie-banner p,
html.theme-dark .partner-lede,
html.theme-dark .partner-points span,
html.theme-dark .preview-bar small,
html.theme-dark .trial-note,
html.theme-dark .section-heading p:not(.eyebrow),
html.theme-dark .chat-copy p:not(.eyebrow),
html.theme-dark .contact-section p:not(.eyebrow),
html.theme-dark .legal p {
  color: var(--muted);
}

html.theme-dark .faq-answer p {
  color: #d7e5fa;
}

html.theme-dark .preview-stack span,
html.theme-dark .preview-bubble.user {
  background: rgba(40, 50, 120, 0.24);
}

html.theme-dark .message.user,
html.theme-dark .chat-prompts button,
html.theme-dark .button.secondary,
html.theme-dark .theme-switch button.is-active,
html.theme-dark .language-switch a.is-active,
html.theme-dark .preview-bubble.user,
html.theme-dark .preview-stack span:nth-child(2) {
  background: rgba(197, 215, 255, 0.88);
  color: #132b45;
}

html.theme-dark .preview-window,
html.theme-dark .preview-stack span,
html.theme-dark .preview-bubble.assistant,
html.theme-dark .preview-action {
  border-color: rgba(116, 137, 173, 0.38);
}

html.theme-dark .preview-action {
  background: linear-gradient(180deg, rgba(216, 96, 60, 0.14), rgba(11, 23, 39, 0.48));
}

html.theme-dark .quote-section {
  background: #0f2240;
}

html.theme-dark .partner-stage {
  background:
    linear-gradient(90deg, rgba(8, 19, 33, 0.74) 0%, rgba(8, 19, 33, 0.44) 36%, rgba(8, 19, 33, 0.18) 62%, rgba(8, 19, 33, 0.42) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.08)),
    url("assets/natura-fit-hero.jpg");
  background-position: center center;
  background-size: cover;
}

html.theme-dark .theme-switch button,
html.theme-dark .nav-toggle,
html.theme-dark .nav-close,
html.theme-dark .language-switch a,
html.theme-dark .button.secondary {
  color: var(--ink);
}

html.theme-dark .theme-switch button.is-active,
html.theme-dark .language-switch a.is-active {
  color: #132b45;
  background: var(--competence);
}

html.theme-dark .site-header {
  background: rgba(8, 19, 33, 0);
  box-shadow: none;
  border-color: transparent;
}

html.theme-dark .trial-dialog,
html.theme-dark .trial-success {
  border-color: rgba(116, 137, 173, 0.34);
  background:
    linear-gradient(180deg, rgba(11, 23, 39, 0.96), rgba(10, 22, 38, 0.92)),
    rgba(10, 22, 38, 0.94);
  box-shadow: 0 30px 90px rgba(2, 8, 18, 0.42);
}

html.theme-dark .trial-close {
  color: #132b45;
  border-color: rgba(197, 215, 255, 0.82);
  background: rgba(197, 215, 255, 0.9);
}

html.theme-dark .trial-dialog-copy p:not(.eyebrow),
html.theme-dark .trial-form span,
html.theme-dark .trial-privacy,
html.theme-dark .contact-privacy {
  color: #d7e5fa;
}

html.theme-dark .trial-form input,
html.theme-dark .trial-form select,
html.theme-dark .trial-form textarea {
  border-color: rgba(116, 137, 173, 0.36);
  background: rgba(18, 33, 55, 0.96);
  color: #edf3ff;
  -webkit-text-fill-color: #edf3ff;
}

html.theme-dark .trial-form input::placeholder,
html.theme-dark .trial-form textarea::placeholder,
html.theme-dark .contact-form input::placeholder,
html.theme-dark .contact-form textarea::placeholder,
html.theme-dark .chat-form input::placeholder {
  color: rgba(215, 229, 250, 0.62);
}

html.theme-dark .trial-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color-scheme: dark;
  padding-right: 56px;
  background: rgba(18, 33, 55, 0.96);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='%23d7e5fa' d='M1.6 1.2a1 1 0 0 1 1.4 0L7 5.18l3.99-3.98a1 1 0 1 1 1.41 1.41L7.7 7.31a1 1 0 0 1-1.41 0L1.6 2.61a1 1 0 0 1 0-1.41Z'/%3E%3C/svg%3E");
  background-position: right 18px center;
  background-repeat: no-repeat;
  background-size: 14px 9px;
  line-height: 1.25;
  box-shadow: none;
}

html.theme-dark .trial-form select:focus {
  border-color: rgba(216, 96, 60, 0.56);
  box-shadow: 0 0 0 4px rgba(216, 96, 60, 0.12);
}

html.theme-dark .trial-form select option {
  color: #edf3ff;
  background: #122137;
}

html.theme-dark .trial-form select optgroup {
  color: #edf3ff;
  background: #122137;
}

html.theme-dark .hero-lede,
html.theme-dark .trial-note {
  color: #d7e5fa;
}

html.theme-dark .button.secondary {
  background: rgba(197, 215, 255, 0.88);
  border-color: rgba(197, 215, 255, 0.82);
  color: #132b45;
}

html.theme-dark .button.primary {
  color: #ffffff;
}

html.theme-dark .chat-prompts button {
  border: 1px solid rgba(197, 215, 255, 0.74);
  box-shadow: 0 10px 24px rgba(8, 19, 33, 0.24);
}

html.theme-dark .chat-prompts button:hover,
html.theme-dark .chat-prompts button:focus-visible {
  color: #ffffff;
  background: rgba(216, 96, 60, 0.92);
  border-color: rgba(216, 96, 60, 0.92);
  box-shadow: 0 12px 24px rgba(216, 96, 60, 0.22);
}

html.theme-dark .message.assistant {
  background: rgba(18, 33, 55, 0.96);
  color: #edf3ff;
}

html.theme-dark .message.user {
  border: 1px solid rgba(197, 215, 255, 0.72);
}

html.theme-dark .message.user strong,
html.theme-dark .chat-prompts button strong {
  color: #132b45;
}

html.theme-dark .preview-thinking {
  background: rgba(14, 28, 47, 0.9);
  border-color: rgba(116, 137, 173, 0.44);
}

html.theme-dark .preview-thinking i {
  background: rgba(237, 243, 255, 0.92);
}

html.theme-dark .contact-form input,
html.theme-dark .contact-form textarea {
  border-color: rgba(116, 137, 173, 0.36);
  background: rgba(18, 33, 55, 0.96);
  color: #edf3ff;
  -webkit-text-fill-color: #edf3ff;
}

html.theme-dark .contact-form input:focus,
html.theme-dark .contact-form textarea:focus {
  border-color: rgba(216, 96, 60, 0.56);
  box-shadow: 0 0 0 4px rgba(216, 96, 60, 0.12);
}

html.theme-dark .footer-badge {
  border-color: rgba(116, 137, 173, 0.42);
  background: rgba(18, 33, 55, 0.92);
  box-shadow: 0 14px 30px rgba(2, 8, 18, 0.28);
}

html.theme-dark .footer-badge small {
  color: #d7e5fa;
}

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

.proof-strip strong {
  color: var(--power);
  font-size: 1.08rem;
}

.proof-strip span {
  margin-top: 8px;
  color: var(--muted);
}

.section,
.chat-section,
.pricing-section {
  padding-block: 90px 28px;
}

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

.section-heading h2,
.chat-copy h2,
.contact-section h2,
.legal h2 {
  margin: 0;
  color: var(--power);
  font-size: 3.8rem;
  line-height: 1;
  font-weight: 700;
}

.section-heading p:not(.eyebrow),
.chat-copy p:not(.eyebrow),
.contact-section p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 500;
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}

.difference-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 24px;
}

.difference-card h3 {
  margin: 0 0 10px;
  color: var(--power);
  font-size: 1.14rem;
  line-height: 1.16;
  font-weight: 700;
}

.difference-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.48;
  font-weight: 500;
}

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

.faq-shell {
  display: grid;
  gap: 16px;
  margin-top: 38px;
}

.faq-topic-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.faq-topic-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
  color: var(--power);
  text-decoration: none;
  font-size: 0.98rem;
  line-height: 1;
  font-weight: 650;
  box-shadow: 0 10px 28px rgba(20, 38, 64, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.faq-topic-link.is-active {
  background: rgba(37, 55, 130, 0.92);
  border-color: rgba(37, 55, 130, 0.92);
  color: #fff;
  box-shadow: 0 14px 32px rgba(37, 55, 130, 0.18);
}

.faq-groups {
  display: grid;
  gap: 14px;
  margin-top: 6px;
}

.faq-empty-state {
  display: none;
  gap: 10px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.faq-empty-state.is-active {
  display: grid;
}

.faq-empty-state strong {
  color: var(--power);
  font-size: 1.04rem;
  line-height: 1.2;
  font-weight: 700;
}

.faq-empty-state p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
  font-weight: 500;
}

.faq-group {
  display: none;
  gap: 12px;
}

.faq-group.is-active {
  display: grid;
}

.faq-group-heading h3 {
  margin: 0;
  color: var(--power);
  font-size: 1.22rem;
  line-height: 1.2;
  font-weight: 700;
}

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

.faq-item {
  margin-top: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  list-style: none;
  margin: 0;
}

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

.faq-item summary strong {
  color: var(--power);
  font-size: 1.12rem;
  line-height: 1.22;
  font-weight: 700;
}

.faq-item summary span {
  flex: 0 0 auto;
  color: var(--positivity);
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 500;
  transition: transform 180ms ease;
}

.faq-item[open] summary span {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 22px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
}

.faq-answer p + p {
  margin-top: 12px;
}

html.theme-dark .faq-empty-state,
html.theme-dark .faq-topic-link {
  border-color: rgba(163, 184, 214, 0.18);
  background: rgba(10, 22, 38, 0.72);
  box-shadow: 0 18px 48px rgba(2, 8, 18, 0.26);
}

html.theme-dark .faq-group-heading h3,
html.theme-dark .faq-empty-state strong,
html.theme-dark .faq-topic-link {
  color: var(--ink);
}

html.theme-dark .faq-empty-state p {
  color: var(--muted);
}

html.theme-dark .faq-topic-link.is-active {
  background: rgba(197, 215, 255, 0.88);
  border-color: rgba(197, 215, 255, 0.88);
  color: #132b45;
}

.usecase-card,
.trial-process,
.reason-list div,
.start-steps div,
.chat-shell,
.legal {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.usecase-card {
  display: flex;
  flex-direction: column;
  min-height: 216px;
  padding: 22px;
}

.usecase-card span {
  color: var(--innovation);
  font-size: 0.92rem;
  font-weight: 700;
}

.usecase-card h3,
.reason-list h3,
.start-steps h3 {
  margin: 38px 0 10px;
  color: var(--competence);
  font-size: 1.18rem;
  line-height: 1.16;
  font-weight: 700;
}

.usecase-card h3 {
  margin-top: 12px;
}

.usecase-card p,
.reason-list p,
.start-steps p,
.legal p {
  color: var(--muted);
  font-weight: 500;
}

.usecase-card p {
  max-width: 18rem;
}

.architecture-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 20px;
  margin-top: 38px;
  align-items: stretch;
}

.architecture-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 14px;
  height: 100%;
}

.architecture-step,
.preview-window {
  border: 1px solid rgba(210, 219, 231, 0.82);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.architecture-step {
  position: relative;
  min-height: 100%;
  height: 100%;
  padding: 18px 18px 18px 18px;
}

.architecture-step span {
  display: none;
}

.architecture-step.accent span {
  background: rgba(216, 96, 60, 0.14);
  color: var(--positivity);
}

.architecture-step:nth-child(2) {
  background: rgba(40, 50, 120, 0.07);
}

.architecture-step:nth-child(3) {
  background: rgba(193, 213, 214, 0.14);
}

.architecture-step:nth-child(4) {
  background: rgba(216, 96, 60, 0.07);
}

.architecture-step:nth-child(5) {
  background: rgba(40, 50, 120, 0.08);
}

.architecture-step:nth-child(6) {
  background: rgba(193, 213, 214, 0.14);
}

.architecture-step h3 {
  margin: 0;
  color: var(--competence);
  font-size: 1.06rem;
  line-height: 1.12;
  font-weight: 700;
  max-width: 13ch;
  text-wrap: balance;
}

.architecture-step p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.99rem;
  line-height: 1.48;
  font-weight: 500;
}

.architecture-preview {
  display: flex;
  height: 100%;
  min-height: 100%;
  gap: 12px;
}

.preview-window {
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(246, 246, 246, 0.34));
  display: grid;
  align-content: start;
  height: 100%;
  min-height: 100%;
  flex: 1 1 auto;
}

.preview-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.preview-bar strong {
  color: var(--power);
}

.preview-bar small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.preview-bar small::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #24c06f;
  box-shadow: 0 0 0 4px rgba(36, 192, 111, 0.12), 0 0 10px rgba(36, 192, 111, 0.4);
}

.preview-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.preview-stage {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.preview-stage::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(216, 96, 60, 0.22), rgba(210, 219, 231, 0.3));
}

.preview-stage span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--positivity);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(216, 96, 60, 0.18);
}

.preview-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(40, 50, 120, 0.11);
  color: var(--competence);
  font-size: 0.9rem;
  font-weight: 600;
}

.preview-chips span:nth-child(2),
.preview-chips span:nth-child(4) {
  background: rgba(216, 96, 60, 0.12);
  color: var(--positivity);
}

.preview-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.preview-stack span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.32);
  color: var(--power);
  font-size: 0.84rem;
  font-weight: 600;
  text-align: center;
  border: 1px solid rgba(210, 219, 231, 0.62);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.preview-stack span:nth-child(2) {
  background: rgba(40, 50, 120, 0.1);
  color: var(--competence);
}

.preview-stack span:nth-child(3) {
  background: rgba(216, 96, 60, 0.1);
  color: var(--positivity);
}

.preview-messages {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.preview-bubble {
  max-width: 86%;
  padding: 12px 14px;
  border-radius: 18px;
  color: var(--power);
  font-size: 0.96rem;
  line-height: 1.45;
  font-weight: 500;
}

.preview-bubble.user {
  margin-left: auto;
  background: rgba(40, 50, 120, 0.1);
  border: 1px solid rgba(40, 50, 120, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.preview-bubble.assistant {
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(193, 213, 214, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.preview-thinking {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 2px 0 2px 18px;
  padding: 10px 14px;
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
  border: 1px solid rgba(210, 219, 231, 0.56);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.preview-thinking i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(40, 50, 120, 0.42);
  animation: previewPulse 1.2s ease-in-out infinite;
}

.preview-thinking i:nth-child(2) {
  animation-delay: 0.15s;
}

.preview-thinking i:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes previewPulse {
  0%, 80%, 100% {
    transform: translateY(0);
    opacity: 0.35;
  }
  40% {
    transform: translateY(-2px);
    opacity: 1;
  }
}

.preview-action {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(216, 96, 60, 0.18);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(216, 96, 60, 0.09), rgba(255, 255, 255, 0.22));
  box-shadow: 0 10px 24px rgba(216, 96, 60, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.preview-action strong {
  color: var(--positivity);
  font-size: 0.92rem;
  font-weight: 700;
}

.preview-action p {
  margin: 0;
  color: var(--power);
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 500;
}


.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.reason-list {
  display: grid;
  gap: 10px;
}

.reason-list div {
  padding: 20px 22px;
  box-shadow: none;
}

.reason-list h3 {
  margin-top: 0;
}

#why-now .section-heading p:not(.eyebrow) {
  max-width: 34rem;
  margin-top: 18px;
  font-size: 1rem;
}

#why-now .reason-list h3 {
  font-size: 1.05rem;
  line-height: 1.12;
}

#why-now .reason-list p {
  margin: 10px 0 0;
  font-size: 0.98rem;
  line-height: 1.45;
}

.start-section {
  padding-bottom: 72px;
}

.start-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}

.start-steps div {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 192px;
  padding: 22px;
}

.start-steps strong {
  color: var(--positivity);
  font-weight: 700;
  margin-bottom: 14px;
}

.start-steps h3 {
  margin: 0 0 10px;
}

.start-steps p {
  margin: 0;
  align-self: end;
}

.trial-process {
  margin-top: 14px;
  padding: 14px 16px;
}

.trial-process-title {
  margin: 0 0 10px;
  color: var(--positivity);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

.trial-process-steps div {
  display: grid;
  gap: 4px;
  min-height: 88px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(210, 219, 231, 0.62);
}

.trial-process-steps strong {
  color: var(--positivity);
  font-size: 0.8rem;
  font-weight: 800;
}

.trial-process-steps span {
  color: var(--power);
  font-size: 0.88rem;
  line-height: 1.24;
  font-weight: 600;
}

.quote-section {
  margin-top: 42px;
  padding: 48px;
  border-radius: var(--radius-lg);
  color: #ffffff;
  background: var(--power);
}

.quote-section > p {
  margin: 0 0 18px;
  color: var(--positivity);
  font-weight: 800;
}

.quote-section blockquote {
  max-width: 940px;
  margin: 0;
  font-size: 2.05rem;
  line-height: 1.18;
  font-weight: 700;
}

.quote-signature {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.quote-signature img {
  width: 72px;
  height: 72px;
  border: 2px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

.quote-signature strong,
.quote-signature span {
  display: block;
}

.quote-signature strong {
  font-size: 1.02rem;
}

.quote-signature span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.quote-grid article {
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.quote-grid strong,
.quote-grid span {
  display: block;
}

.quote-grid span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
}

.quote-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.partner-section {
  padding-top: 24px;
}

.partner-stage {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(280px, 1fr);
  gap: 28px;
  justify-content: space-between;
  min-height: 520px;
  padding: 36px;
  border: 1px solid rgba(210, 219, 231, 0.8);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(90deg, rgba(246, 248, 251, 0.86) 0%, rgba(246, 248, 251, 0.62) 36%, rgba(246, 248, 251, 0.26) 62%, rgba(246, 248, 251, 0.52) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.22)),
    url("assets/natura-fit-hero.jpg");
  background-position: center center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.partner-toplink {
  position: relative;
  grid-column: 1;
  justify-self: end;
  align-self: start;
  z-index: 2;
  border-color: rgba(7, 64, 71, 0.12);
  color: #ffffff;
  background: #074047;
  box-shadow: 0 16px 34px rgba(7, 64, 71, 0.18);
}

.partner-stage::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.36), transparent 20%),
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.32), transparent 16%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.12));
  content: "";
  pointer-events: none;
}

.partner-copy,
.partner-visual {
  position: relative;
  z-index: 1;
}

.partner-copy {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: end;
  max-width: 640px;
  margin-top: auto;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 22px 52px rgba(19, 43, 69, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.partner-copy h2 {
  margin: 0;
  color: var(--power);
  font-size: 2.8rem;
  line-height: 0.98;
  font-weight: 700;
  max-width: 15ch;
  text-wrap: balance;
}

.partner-lede {
  max-width: 34rem;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.48;
  font-weight: 500;
}

.partner-points {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.partner-points div {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.26);
  box-shadow: 0 14px 34px rgba(19, 43, 69, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.partner-points strong,
.partner-points span {
  display: block;
}

.partner-points strong {
  color: var(--competence);
  font-size: 1rem;
  font-weight: 700;
}

.partner-points span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 500;
}

.partner-visual {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 100%;
}

.partner-orb {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(7, 64, 71, 0.78), rgba(10, 86, 88, 0.66));
  box-shadow: 0 24px 56px rgba(7, 64, 71, 0.16);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.partner-orb-side {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 14px;
  align-content: end;
  width: 276px;
  min-height: 208px;
  padding: 22px 22px 18px;
}

.partner-orb-side span {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.22;
  font-weight: 700;
  text-shadow: 0 6px 24px rgba(7, 64, 71, 0.18);
}

.partner-orb-side a {
  width: fit-content;
  align-self: flex-start;
  padding-top: 2px;
}

.partner-orb-side img {
  width: 124px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 16px;
  margin-top: 38px;
}

.pricing-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.pricing-card.featured {
  border-color: rgba(216, 96, 60, 0.28);
  background: rgba(255, 255, 255, 0.88);
}

.price-kicker {
  margin: 0 0 14px;
  color: var(--positivity);
  font-weight: 800;
}

.pricing-card h3 {
  margin: 0;
  color: var(--power);
  font-size: 2rem;
  line-height: 1.05;
}

.price {
  margin: 24px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.price span {
  display: block;
  color: var(--competence);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.price-note {
  max-width: 30rem;
  margin: 16px 0 0;
  color: var(--muted);
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 28px;
  padding-left: 1.1rem;
  color: var(--ink);
}

.pricing-card .button {
  margin-top: auto;
  align-self: flex-start;
}

.trial-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear 240ms;
}

.trial-modal.is-open {
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.trial-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(19, 43, 69, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: opacity 180ms ease;
  will-change: opacity;
}

.trial-modal.is-open .trial-backdrop {
  opacity: 1;
}

.trial-dialog {
  position: relative;
  isolation: isolate;
  width: min(960px, 100%);
  max-height: min(92vh, 760px);
  overflow: auto;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82)),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 30px 90px rgba(19, 43, 69, 0.24);
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  transition: opacity 220ms ease, transform 220ms ease;
}

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

.trial-close {
  position: absolute;
  top: 14px;
  right: 14px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--power);
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-weight: 700;
}

.trial-dialog-copy {
  max-width: 680px;
  padding-right: 110px;
}

.trial-dialog-copy h2 {
  margin: 0;
  color: var(--power);
  font-size: 1.92rem;
  line-height: 1.01;
}

.trial-dialog-copy p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.42;
}

.trial-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  margin-top: 14px;
}

.trial-form label {
  display: grid;
  gap: 5px;
}

.trial-form span {
  color: var(--power);
  font-size: 0.9rem;
  font-weight: 700;
}

.trial-form input,
.trial-form select,
.trial-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  outline: 0;
}

.trial-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 46px;
  background-color: rgba(255, 255, 255, 0.92);
  background-image:
    linear-gradient(45deg, transparent 50%, var(--power) 50%),
    linear-gradient(135deg, var(--power) 50%, transparent 50%);
  background-position:
    calc(100% - 23px) 21px,
    calc(100% - 16px) 21px;
  background-repeat: no-repeat;
  background-size: 7px 7px, 7px 7px;
}

.trial-form textarea {
  min-height: 64px;
  resize: vertical;
}

.trial-form input:focus,
.trial-form select:focus,
.trial-form textarea:focus {
  border-color: rgba(216, 96, 60, 0.56);
  box-shadow: 0 0 0 4px rgba(216, 96, 60, 0.1);
}

.trial-wide,
.trial-privacy,
.trial-form .button {
  grid-column: 1 / -1;
}

.trial-privacy {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.trial-success {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: 32px;
  border-radius: var(--radius-lg);
  opacity: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.78)),
    rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: scale(0.98);
  transition: opacity 180ms ease, transform 220ms ease;
}

.trial-success p {
  margin: 0;
  color: var(--power);
  font-weight: 700;
}

.trial-modal.is-sending .trial-success {
  opacity: 1;
  transform: scale(1);
}

.success-mark {
  position: relative;
  width: 72px;
  height: 72px;
  border: 2px solid rgba(216, 96, 60, 0.28);
  border-radius: 50%;
  background: rgba(216, 96, 60, 0.08);
  box-shadow: 0 18px 38px rgba(216, 96, 60, 0.18);
  transform: rotate(0deg);
}

.success-plus,
.success-check {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--positivity);
  transition: opacity 220ms ease, transform 220ms ease;
}

.success-plus {
  font-size: 2.35rem;
  font-weight: 600;
  line-height: 1;
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
}

.success-check {
  width: 30px;
  height: 30px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
}

.trial-modal.is-sending .success-mark {
  animation: success-spin 620ms ease both;
}

.trial-modal.is-sent .success-plus {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(180deg) scale(0.5);
}

.trial-modal.is-sent .success-check {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@keyframes success-spin {
  0% {
    transform: rotate(0deg) scale(0.94);
  }

  62% {
    transform: rotate(270deg) scale(1.04);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}


body.modal-open {
  overflow: hidden;
}

.chat-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: center;
}

.chat-shell {
  overflow: hidden;
}

.chat-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 250, 251, 0.78);
}

.chat-topbar span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--positivity);
  box-shadow: 22px 0 0 var(--serenity), 44px 0 0 var(--health);
}

.chat-topbar small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.chat-topbar small::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #24c06f;
  box-shadow: 0 0 0 4px rgba(36, 192, 111, 0.14), 0 0 14px rgba(36, 192, 111, 0.55);
  flex: 0 0 auto;
}

.chat-topbar small.is-offline::before {
  background: #9aa8bd;
  box-shadow: 0 0 0 4px rgba(154, 168, 189, 0.14), 0 0 10px rgba(154, 168, 189, 0.26);
}

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

.message {
  max-width: 86%;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
}

.message p {
  margin: 0;
}

.message p + p,
.message p + ul,
.message p + ol,
.message ul + p,
.message ol + p {
  margin-top: 0.72rem;
}

.message ul,
.message ol {
  margin: 0.1rem 0 0;
  padding-left: 1.15rem;
}

.message li + li {
  margin-top: 0.32rem;
}

.message strong {
  color: var(--power);
  font-weight: 700;
}

.message.is-thinking {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 128px;
}

.message.is-thinking span {
  margin-right: 4px;
}

.message.is-writing {
  position: relative;
}

.message.is-thinking i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--positivity);
  opacity: 0.28;
  animation: chatPulse 1.05s ease-in-out infinite;
}

.message.is-thinking i:nth-child(3) {
  animation-delay: 140ms;
}

.message.is-thinking i:nth-child(4) {
  animation-delay: 280ms;
}

@keyframes chatPulse {
  0%,
  100% {
    opacity: 0.24;
    transform: translateY(0) scale(0.82);
  }

  50% {
    opacity: 1;
    transform: translateY(-2px) scale(1);
  }
}

.message.assistant {
  align-self: flex-start;
  color: var(--ink);
  background: var(--soft);
}

.message.user {
  align-self: flex-end;
  color: #ffffff;
  background: var(--competence);
}

.message.error {
  background: rgba(216, 96, 60, 0.13);
}

.chat-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 18px 14px;
  max-height: 120px;
  overflow: hidden;
  transition: opacity 180ms ease, max-height 180ms ease, padding 180ms ease, transform 180ms ease;
}

.chat-prompts.is-hidden {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
}

.chat-prompts button {
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  padding: 0 11px;
  color: #ffffff;
  background: var(--competence);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 500;
  transition: opacity 160ms ease, transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.chat-prompts button:hover,
.chat-prompts button:focus-visible {
  background: var(--positivity);
  box-shadow: 0 12px 24px rgba(40, 50, 120, 0.16);
  transform: translateY(-1px);
}

.chat-prompts button:disabled,
.chat-form button:disabled {
  cursor: default;
  opacity: 0.62;
  transform: none;
}

.chat-prompts button.is-used {
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px) scale(0.96);
}

.chat-form {
  position: relative;
  display: block;
  padding: 14px;
  border-top: 1px solid var(--line);
}

.chat-form input {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 15px 64px 15px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
}

.chat-form button {
  position: absolute;
  top: 50%;
  right: 20px;
  display: inline-flex;
  width: 42px;
  height: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0;
  color: #ffffff;
  background: var(--positivity);
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(216, 96, 60, 0.24);
  transition: filter 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.chat-form button:hover,
.chat-form button:focus-visible {
  filter: brightness(0.96) saturate(1.08);
  box-shadow: 0 18px 34px rgba(216, 96, 60, 0.3);
  transform: translateY(-50%) scale(1.03);
}

.chat-form button,
.chat-form button:disabled {
  transform: translateY(-50%);
}

.contact-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 90px 0;
}

.contact-copy {
  flex: 1 1 48%;
}

.contact-form {
  flex: 1 1 44%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label > span {
  color: var(--power);
  font-weight: 700;
}

.contact-form-wide,
.contact-privacy,
.contact-form .button {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 13px 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: rgba(216, 96, 60, 0.56);
  box-shadow: 0 0 0 4px rgba(216, 96, 60, 0.1);
}

.contact-privacy {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-form .button {
  justify-self: start;
}

.legal {
  margin-top: 24px;
  padding: 32px;
  box-shadow: none;
}

.legal h2 {
  font-size: 2.45rem;
}

.legal a {
  color: var(--competence);
  font-weight: 800;
}

details {
  margin-top: 18px;
}

summary {
  cursor: pointer;
  color: var(--competence);
  font-weight: 700;
}

.legal-columns {
  columns: 2 320px;
  column-gap: 36px;
  margin-top: 16px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 44px 0 34px;
  color: var(--muted);
}

footer a:first-child {
  color: var(--competence);
  font-weight: 700;
}

footer a:first-child img {
  width: 62px;
  height: 38px;
  object-fit: contain;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  padding: 8px 10px;
  border: 1px solid rgba(210, 219, 231, 0.82);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 10px 26px rgba(19, 43, 69, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.footer-badge img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-badge small {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 55;
  display: grid;
  max-width: 980px;
  margin: 0 auto;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 16px 14px 18px;
  border: 1px solid rgba(231, 237, 242, 0.92);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 54px rgba(19, 43, 69, 0.14);
  opacity: 0;
  transform: translateY(14px);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transition: opacity 220ms ease, transform 220ms ease;
}

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

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.cookie-banner div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-banner a {
  color: var(--competence);
  font-weight: 600;
}

.cookie-banner .button {
  min-height: 38px;
  padding: 0 18px;
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  body::before,
  body::after {
    animation: none;
    transform: none;
    filter: blur(18px);
  }

  body::before {
    opacity: 0.62;
  }

  body::after {
    opacity: 0.44;
  }

  .site-header.is-solid,
  .nav-toggle,
  .nav-panel-inner,
  .proof-strip,
  .proof-strip div,
  .usecase-card,
  .difference-card,
  .trial-process,
  .reason-list div,
  .start-steps div,
  .chat-shell,
  .architecture-step,
  .preview-window,
  .partner-copy,
  .partner-points div,
  .pricing-card,
  .contact-form,
  .legal {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  h1 {
    min-height: 8.1rem;
    font-size: 4.2rem;
  }

  .section-heading h2,
  .chat-copy h2,
  .contact-section h2 {
    font-size: 3rem;
  }

  .split,
  .chat-section,
  .architecture-shell,
  .pricing-grid,
  .partner-stage {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .proof-strip,
  .start-steps {
    grid-template-columns: 1fr;
  }

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

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

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

  .architecture-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .preview-stack span:last-child {
    grid-column: 1 / -1;
  }

  .preview-window {
    padding: 13px;
  }

  .preview-chips {
    gap: 6px;
    margin-top: 12px;
  }

  .preview-chips span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.83rem;
  }

  .preview-stage {
    margin-top: 10px;
  }

  .preview-stage span {
    min-height: 26px;
    padding: 0 9px;
    font-size: 0.78rem;
  }

  .preview-stack {
    gap: 6px;
    margin-top: 8px;
  }

  .preview-stack span {
    min-height: 36px;
    padding: 0 8px;
    font-size: 0.76rem;
  }

  .preview-messages {
    gap: 6px;
    margin-top: 8px;
  }

  .preview-bubble {
    padding: 8px 10px;
    font-size: 0.84rem;
    line-height: 1.34;
  }

  .preview-thinking {
    margin-left: 10px;
    padding: 7px 11px;
  }

  .preview-action {
    margin-top: 8px;
    padding: 9px 11px;
  }

  .preview-action p {
    font-size: 0.83rem;
    line-height: 1.32;
  }

  .quote-section blockquote {
    font-size: 1.65rem;
  }

  .partner-stage {
    grid-template-columns: 1fr;
    min-height: 560px;
    padding: 34px;
    background-position: 68% center;
  }

  .partner-toplink,
  .partner-copy,
  .partner-visual {
    grid-column: auto;
    grid-row: auto;
  }

  .partner-toplink {
    justify-self: start;
  }

  .partner-copy h2 {
    max-width: 16ch;
    font-size: 2.75rem;
  }

  .partner-visual {
    min-height: 280px;
  }

  .partner-orb-side {
    right: 16px;
    bottom: 16px;
    width: 224px;
    min-height: 176px;
    padding: 18px 18px 16px;
  }

  .contact-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-form {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 76px;
    padding: 0 14px;
  }

  .brand img {
    width: 76px;
    height: 46px;
  }

  .brand {
    transform: translateY(1px);
  }

  .nav-toggle {
    min-width: 46px;
    width: 46px;
    padding: 0;
  }

  .nav-toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .hero {
    min-height: auto;
    padding: 126px 0 54px;
  }

  h1 {
    min-height: 8.7rem;
    font-size: 3rem;
  }

  .hero-lede,
  .section-heading p:not(.eyebrow),
  .chat-copy p:not(.eyebrow),
  .contact-section p {
    font-size: 0.98rem;
    line-height: 1.42;
    font-weight: 500;
  }

  .hero-lede {
    margin-top: 10px;
  }

  .section-heading h2,
  .chat-copy h2,
  .contact-section h2 {
    font-size: 2.35rem;
  }

  .hero,
  .proof-strip,
  .section,
  .chat-section,
  .quote-section,
  .legal,
  footer {
    width: calc(100% - 24px);
  }

  .section,
  .chat-section {
    padding-block: 60px 20px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 12px;
    border-radius: 24px;
  }

  .cookie-banner div {
    justify-content: space-between;
  }

  .footer-badge {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
  }

  .hero-actions {
    align-items: center;
    flex-direction: column;
  }

  .hero-actions .button {
    width: min(100%, 280px);
  }

  .trial-note {
    max-width: 30ch;
    margin-top: 16px;
    font-size: 0.78rem;
    line-height: 1.4;
    font-weight: 400;
  }

  .proof-strip {
    border-color: rgba(219, 228, 238, 0.9);
    background: rgba(255, 255, 255, 0.34);
    box-shadow: 0 24px 52px rgba(19, 43, 69, 0.13);
  }

  .proof-strip div {
    min-height: 106px;
    padding: 18px 18px 16px;
    background: rgba(255, 255, 255, 0.8);
  }

  .architecture-step {
    min-height: auto;
    padding: 14px 14px 14px;
  }

  .usecase-grid,
  .difference-grid,
  .start-steps,
  .faq-list,
  .faq-shell {
    margin-top: 26px;
  }

  .faq-topic-nav {
    gap: 8px;
  }

  .faq-topic-link {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.94rem;
  }

  .faq-groups {
    gap: 18px;
  }

  .faq-empty-state {
    padding: 20px 18px;
  }

  .faq-group-heading h3 {
    font-size: 1.08rem;
  }

  .usecase-card,
  .difference-card,
  .start-steps div {
    padding: 16px;
    border-radius: 24px;
  }

  .usecase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .difference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .start-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .start-steps div:last-child {
    grid-column: 1 / -1;
  }

  .faq-item summary {
    padding: 18px;
    gap: 16px;
  }

  .faq-item summary strong {
    font-size: 1rem;
    line-height: 1.22;
  }

  .faq-item summary span {
    font-size: 1.45rem;
  }

  .faq-answer {
    padding: 0 18px 18px;
  }

  .faq-answer p {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .usecase-card h3,
  .difference-card h3,
  .start-steps h3 {
    margin: 14px 0 8px;
    font-size: 1rem;
    line-height: 1.15;
    font-weight: 600;
  }

  .usecase-card p,
  .difference-card p,
  .start-steps p {
    font-size: 0.88rem;
    line-height: 1.36;
    font-weight: 500;
  }

  .start-steps strong,
  .usecase-card span {
    font-size: 0.78rem;
  }

.trial-process {
  margin-top: 14px;
  padding: 14px;
}

.trial-process-title {
  font-size: 0.76rem;
}

.trial-process-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.trial-process-steps span {
  font-size: 0.88rem;
}

  .partner-section {
    padding-top: 12px;
  }

  .partner-stage {
    padding: 24px;
    min-height: auto;
    background-position: 74% center;
  }

  .partner-toplink {
    justify-self: start;
    margin-bottom: -2px;
  }

  .partner-copy h2 {
    font-size: 2.35rem;
    max-width: none;
  }

  .partner-lede {
    margin-top: 16px;
    font-size: 1rem;
  }

  .partner-points {
    margin-top: 18px;
  }

  .partner-points div {
    padding: 14px 16px;
    border-radius: 20px;
  }

  .partner-visual {
    min-height: 210px;
  }

  .partner-orb-side {
    right: 8px;
    bottom: 8px;
    width: 188px;
    min-height: 142px;
    padding: 14px 14px 12px;
    gap: 10px;
  }

  .partner-orb-side span {
    font-size: 0.76rem;
    line-height: 1.16;
  }

  .partner-orb-side img {
    width: 92px;
  }

  .architecture-step h3 {
    font-size: 0.98rem;
    max-width: none;
  }

  .architecture-step p {
    margin-top: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .preview-bubble {
    max-width: 100%;
  }

  .preview-bar strong {
    font-size: 0.96rem;
  }

  .preview-bar small {
    font-size: 0.82rem;
  }

  .preview-stage {
    gap: 8px;
    margin-top: 8px;
  }

  .preview-stage span {
    min-height: 24px;
    padding: 0 8px;
    font-size: 0.73rem;
  }

  .preview-chips {
    gap: 5px;
    margin-top: 10px;
  }

  .preview-chips span {
    min-height: 28px;
    padding: 0 8px;
    font-size: 0.74rem;
  }

  .preview-stack {
    gap: 5px;
    margin-top: 7px;
  }

  .preview-thinking {
    margin-left: 8px;
    padding: 6px 9px;
  }

  .preview-thinking i {
    width: 6px;
    height: 6px;
  }

  .usecase-card,
  .start-steps div {
    min-height: auto;
  }

  .quote-section {
    padding: 28px;
  }

  .quote-signature {
    align-items: flex-start;
    margin-top: 22px;
  }

  .quote-signature img {
    width: 64px;
    height: 64px;
  }

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

  .contact-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .footer-links {
    width: 100%;
    justify-content: center;
  }

  .pricing-card {
    min-height: auto;
    padding: 24px;
  }

  .trial-dialog {
    width: 100%;
    max-height: calc(100dvh - 20px);
    padding: 18px;
    border-radius: 24px;
  }

  .trial-modal {
    align-items: flex-start;
    overflow-y: auto;
    padding: 10px;
  }

  .trial-close {
    position: static;
    justify-self: end;
    margin: 0 0 10px auto;
  }

  .trial-dialog-copy {
    padding-right: 0;
  }

  .trial-dialog-copy h2 {
    font-size: 1.75rem;
    line-height: 1.05;
  }

  .trial-form {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
  }

  .trial-form input,
  .trial-form select,
  .trial-form textarea {
    min-height: 50px;
    padding: 13px 15px;
  }

  .trial-form select {
    padding-right: 48px;
    background-position:
      calc(100% - 24px) 22px,
      calc(100% - 17px) 22px;
  }

  .trial-form textarea {
    min-height: 88px;
  }

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

  .trial-process-steps div:last-child {
    grid-column: 1 / -1;
  }

  .trial-success {
    border-radius: 24px;
  }

  .chat-form {
    padding: 12px;
  }

  .chat-form button {
    right: 18px;
    width: 40px;
    height: 40px;
    min-height: 40px;
  }
}

@media (hover: none), (pointer: coarse) {
  body::before,
  body::after {
    animation: none;
    transform: none;
  }

  .site-header.is-solid,
  .nav-toggle,
  .nav-panel-inner,
  .proof-strip,
  .proof-strip div,
  .usecase-card,
  .reason-list div,
  .start-steps div,
  .chat-shell,
  .architecture-step,
  .preview-window,
  .partner-copy,
  .partner-points div,
  .pricing-card,
  .contact-form,
  .legal,
  .cookie-banner {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  h1.is-typing::after {
    animation: none;
  }
}

@media (max-width: 380px) {
  h1 {
    min-height: 8.35rem;
    font-size: 2.72rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    gap: 8px;
  }

  .difference-grid,
  .trial-process-steps {
    grid-template-columns: 1fr;
  }
}
