:root {
  color-scheme: dark;
  --bg-start: #0B132B;
  --bg-end: #050811;
  --surface: rgba(6, 12, 32, 0.88);
  --surface-soft: rgba(10, 18, 36, 0.72);
  --text: #F8FAFC;
  --muted: #A8B8D2;
  --accent: #5CE1C4;
  --accent-soft: rgba(92, 225, 196, 0.13);
  --border: rgba(92, 225, 196, 0.22);
  --border-soft: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  --radius: 28px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.75rem;
  overflow-x: clip;
}

body {
  min-height: 100vh;
  margin: 0;
  padding-top: 6.75rem;
  background: linear-gradient(90deg, var(--bg-start) 0%, var(--bg-end) 100%);
  color: var(--text);
  overflow-x: hidden;
}

body, input, textarea, select, button {
  font: 100%/1.5 var(--font-family, Inter, sans-serif);
}

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(5, 8, 17, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(92, 225, 196, 0.09);
  transition: background 0.42s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1), backdrop-filter 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 3rem);
  padding: 1.05rem 0;
  will-change: padding;
  transition: padding 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-mark img {
  height: 33px;
  width: auto;
  transform-origin: left center;
  will-change: transform;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo-mark span {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
}

.navbar {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 3.2vw, 2.75rem);
  margin-left: auto;
  margin-right: clamp(0.5rem, 2vw, 1.6rem);
}

.navbar a {
  color: rgba(248, 250, 252, 0.72);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.18s ease, text-shadow 0.18s ease;
}

.navbar a:hover,
.navbar a:focus-visible,
.navbar a[aria-current="page"] {
  color: var(--accent);
  text-shadow: 0 0 18px rgba(92, 225, 196, 0.16);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 0 0 auto;
}

.cta-button,
.secondary-button,
.toggle-button,
.submit-button {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.92rem 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
  cursor: pointer;
}

.cta-button {
  background: linear-gradient(135deg, rgba(92, 225, 196, 1), rgba(32, 191, 164, 0.96));
  color: #041418;
  border-color: rgba(92, 225, 196, 0.62);
  box-shadow: 0 12px 32px rgba(92, 225, 196, 0.14);
}

.nav-actions .cta-button {
  background: rgba(92, 225, 196, 0.055);
  color: var(--text);
  border-color: rgba(92, 225, 196, 0.38);
  box-shadow: none;
  padding: 0.78rem 1.34rem;
  will-change: transform;
}

.secondary-button {
  background: rgba(5, 12, 25, 0.34);
  color: var(--text);
  border-color: rgba(92, 225, 196, 0.24);
}

.cta-button:hover,
.secondary-button:hover,
.submit-button:hover,
.toggle-button:hover {
  transform: translateY(-2px);
  border-color: rgba(92, 225, 196, 0.5);
}

.cta-button:hover,
.nav-actions .cta-button:hover,
.submit-button:hover {
  background: linear-gradient(135deg, rgba(92, 225, 196, 1), rgba(24, 153, 128, 1));
  box-shadow: 0 16px 36px rgba(92,225,196,0.22);
  color: var(--text);
}

.nav-actions .cta-button:hover {
  border-color: rgba(92, 225, 196, 0.5);
}

.secondary-button:hover {
  background: rgba(92, 225, 196, 0.1);
  border-color: rgba(92, 225, 196, 0.42);
}

.cta-button:focus-visible,
.secondary-button:focus-visible,
.submit-button:focus-visible,
.toggle-button:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid rgba(92, 225, 196, 0.82);
  outline-offset: 4px;
}

.cta-button:active,
.secondary-button:active,
.submit-button:active,
.toggle-button:active {
  transform: translateY(0) scale(0.99);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: var(--text);
  width: 46px;
  height: 46px;
  justify-content: center;
  align-items: center;
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
}

.header-compact header {
  background: rgba(5, 8, 17, 0.9);
  border-bottom-color: rgba(92, 225, 196, 0.14);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.header-compact .header-inner {
  padding: 0.9rem 0;
}

.header-compact .logo-mark img {
  transform: scale(0.96);
}

.header-compact .nav-actions .cta-button {
  transform: scale(0.98);
}

.hero {
  position: relative;
  padding: clamp(4.15rem, 7.4vw, 6.5rem) 0 clamp(1.75rem, 3vw, 2.75rem);
  isolation: isolate;
  overflow: visible;
  scroll-margin-top: 6.75rem;
}

#pricing,
#faq,
#demo,
#contact {
  scroll-margin-top: 7.75rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  width: min(58vw, 760px);
  pointer-events: none;
  background:
    linear-gradient(rgba(92, 225, 196, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 225, 196, 0.028) 1px, transparent 1px),
    radial-gradient(circle at 58% 48%, rgba(92, 225, 196, 0.12), transparent 42%);
  background-size: 72px 72px, 72px 72px, 100% 100%;
  opacity: 0.42;
  transform: translateX(-8%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(0, 0.68fr);
  grid-template-areas:
    "copy visual"
    "actions visual";
  column-gap: clamp(2rem, 2.5vw, 3rem);
  row-gap: clamp(2.5rem, 3vw, 3.5rem);
  align-items: center;
}

.hero-copy {
  grid-area: copy;
  max-width: 720px;
  padding-top: 0.4rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.hero-eyebrow::before {
  content: "";
  width: 0.95rem;
  height: 0.09rem;
  background: currentColor;
  border-radius: 999px;
}

.hero-copy h1 {
  font-size: clamp(2.75rem, 4.65vw, 4.15rem);
  line-height: 1.06;
  max-width: 26ch;
  margin: 0 0 1.35rem;
  font-weight: 700;
  letter-spacing: 0;
  text-align: left;
  text-wrap: normal;
}

.hero-copy p {
  color: var(--muted);
  max-width: 39rem;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.85;
  margin: 0;
  text-align: left;
}

.hero-actions {
  grid-area: actions;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: flex-start;
  align-self: start;
  margin-top: -7rem;
}

.hero-visual {
  grid-area: visual;
  position: relative;
  min-height: clamp(540px, 52vw, 720px);
  border-radius: 36px;
  background: transparent;
  overflow: hidden;
  border: 1px solid rgba(92, 225, 196, 0.1);
}

.hero-visual:has(img) {
  border: none;
  box-shadow: none;
  overflow: visible;
  filter: drop-shadow(0 26px 60px rgba(92, 225, 196, 0.08));
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(92, 225, 196, 0.08);
  border-radius: 999px;
}

.hero-visual::before {
  width: 420px;
  height: 420px;
  top: -120px;
  left: 20%;
}

.hero-visual::after {
  width: 280px;
  height: 280px;
  top: 120px;
  right: -90px;
}

.hero-visual:has(img)::before,
.hero-visual:has(img)::after {
  display: none;
}

.hero-visual .hero-art-inner {
  position: relative;
  width: min(360px, 85%);
  height: min(360px, 85%);
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(92, 225, 196, 0.26);
  box-shadow: inset 0 0 0 1px rgba(92, 225, 196, 0.05);
}

.hero-visual:has(img) .hero-art-inner {
  width: 100%;
  height: 100%;
  min-height: inherit;
  top: 0;
  transform: none;
  border: none;
  background: transparent;
  box-shadow: none;
}

.hero-visual .hero-art-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 110%;
  height: 110%;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, rgba(92, 225, 196, 0.18), transparent 42%);
}

.hero-visual .hero-art-inner img {
  position: absolute;
  left: 43.5%;
  top: 44.5%;
  z-index: 1;
  width: 212%;
  height: 212%;
  max-width: none;
  opacity: 0.91;
  transform: translate(-50%, -50%);
  object-fit: contain;
  object-position: center;
  border-radius: inherit;
}

.hero-visual .hero-art-inner:has(img)::before,
.hero-visual .hero-art-inner:has(img) .mark,
.hero-visual .hero-art-inner:has(img) .hero-label {
  display: none;
}

.hero-visual .hero-art-inner .mark {
  width: 112px;
  height: 112px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(92, 225, 196, 0.72), rgba(92, 225, 196, 0.14));
  box-shadow: 0 0 0 10px rgba(92, 225, 196, 0.07);
}

.hero-visual .hero-art-inner .hero-label {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.25rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.value-card,
.solution-card,
.pricing-card,
.reassurance-card,
.demo-panel,
.graph-card,
.hero-visual .hero-art-inner,
.preference-tile {
  background: rgba(8, 18, 32, 0.88);
  border: 1px solid rgba(92, 225, 196, 0.2);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.section {
  padding: 3rem 0;
  scroll-margin-top: 6.75rem;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(92, 225, 196, 0.08) 22%, rgba(92, 225, 196, 0.44) 50%, rgba(92, 225, 196, 0.08) 78%, transparent 100%);
  position: relative;
  margin: 0.25rem 0 3.25rem;
}

.section-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(92, 225, 196, 0.9);
  box-shadow: 0 0 20px rgba(92, 225, 196, 0.46), 0 0 4px rgba(248, 250, 252, 0.7);
}

.row {
  display: grid;
  gap: 1.5rem;
}

.section-title {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.section-headline {
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  line-height: 1.2;
  max-width: 54ch;
  margin: 0 auto 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
}

.problem-row .section-title,
.problem-row .section-headline,
.problem-row .section-copy {
  text-align: left;
  margin-left: 0;
}

.problem-row .section-headline span {
  display: block;
}

.problem-row .section-headline span:first-child {
  white-space: nowrap;
}

.solution-section .section-title,
.solution-section .section-headline {
  text-align: center;
}

.pricing-section .section-title,
.pricing-section .section-headline,
.pricing-section .section-copy,
.demo-section .section-title {
  text-align: center;
}

.section-text,
.section-copy,
.reassurance-copy,
.form-intro-text {
  color: var(--muted);
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.8;
}

.about-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(460px, 54vw, 680px);
  padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(4rem, 7vw, 6rem);
  text-align: center;
  isolation: isolate;
  overflow: clip;
}

.about-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(18rem, 46vw, 40rem);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
  background: url("assets/Norcera N_col.svg") center / contain no-repeat;
  opacity: 0.028;
  filter: drop-shadow(0 0 90px rgba(92, 225, 196, 0.16));
  z-index: -1;
}

.about-hero-copy {
  max-width: 980px;
  margin: 0 auto;
}

.about-hero-copy h1 {
  margin: 0 auto 1.35rem;
  max-width: 22ch;
  font-size: clamp(2.55rem, 4.8vw, 4.65rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.about-hero-copy p:not(.hero-eyebrow) {
  margin: 0 auto;
  max-width: 54rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.82;
  text-wrap: pretty;
}

.about-hero .hero-eyebrow {
  justify-content: center;
}

.about-hero .hero-eyebrow::before {
  display: none;
}

.about-section-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
  max-width: 100%;
}

.about-section-body {
  grid-column: 1;
  grid-row: 1;
}

.about-story-section .section-title,
.about-story-section .section-headline,
.about-principles-section .section-title,
.about-principles-section .section-headline {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.about-story-section .section-headline {
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  line-height: 1.2;
  max-width: 100%;
  text-wrap: balance;
}

.about-copy-stack {
  display: grid;
  gap: 1.05rem;
  max-width: 100%;
  margin: 0;
}

.about-copy-stack p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.85;
  text-align: left;
}

.about-focus-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding: 0;
  border-radius: 0;
}

.about-focus-card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: 0;
  text-align: left;
}

.about-focus-section .section-title,
.about-focus-section .section-headline {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.about-focus-section .section-headline {
  text-wrap: balance;
}

.about-cta h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: 0;
  text-align: center;
}

.about-principles-section {
  padding-top: 1rem;
}

.about-principles-section .section-title {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.about-principles-section .section-headline {
  max-width: 26ch;
  font-size: clamp(1.8rem, 3.4vw, 2.65rem);
  text-align: left;
}

.about-principles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 1.8rem;
  position: relative;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 3rem;
}

.about-principles-grid + .about-copy-stack {
  margin-top: 2rem;
}

.about-principles-grid::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(92, 225, 196, 0.08) 0%, rgba(92, 225, 196, 0.44) 50%, rgba(92, 225, 196, 0.08) 100%);
}

.about-principle {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  position: relative;
  transition: none;
}

.about-principle::before {
  content: "";
  position: absolute;
  left: -3rem;
  top: 0.4rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: rgba(92, 225, 196, 0.9);
  box-shadow: 0 0 20px rgba(92, 225, 196, 0.46), 0 0 4px rgba(248, 250, 252, 0.7);
}

.about-principle span {
  display: none;
}

.about-principle h3 {
  margin: 0;
  font-size: clamp(1.12rem, 1.45vw, 1.35rem);
  line-height: 1.32;
  color: var(--text);
}

.about-principle p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-cta {
  display: grid;
  justify-items: center;
  gap: 1.5rem;
  align-items: center;
  padding: 0;
  border-radius: 0;
  text-align: center;
}

.about-cta > div {
  max-width: 54ch;
}

.about-cta .section-title {
  text-align: center;
}

.about-cta .cta-button {
  flex: 0 0 auto;
}

.legal-hero .about-hero-copy h1 {
  max-width: 14ch;
}

.legal-document-section .section-title,
.legal-document-section .section-headline {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.legal-document-section .section-headline {
  max-width: 100%;
}

.legal-copy {
  max-width: 46rem;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.5rem 0 1.75rem;
}

.legal-document-frame {
  display: block;
  width: 100%;
  min-height: min(72vh, 780px);
  border: 1px solid rgba(92, 225, 196, 0.2);
  border-radius: 18px;
  background: rgba(8, 18, 32, 0.88);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.value-card {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 18px;
  text-align: center;
  align-items: center;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.value-card .icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  justify-self: center;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.value-card .icon img,
.solution-card .solution-icon img,
.reassurance-icon img,
.tile-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.value-card .icon svg,
.solution-card .solution-icon svg,
.reassurance-icon svg,
.tile-icon svg {
  width: 34px;
  height: 34px;
}

.value-card h3 {
  margin: 0;
  font-size: 1rem;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

@media (hover: hover) and (pointer: fine) {
  .value-card:hover,
  .solution-card:hover,
  .reassurance-card:hover {
    transform: translateY(-5px);
    border-color: rgba(92, 225, 196, 0.44);
    background: rgba(10, 24, 40, 0.9);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22), 0 0 24px rgba(92, 225, 196, 0.1);
  }

  .value-card:hover .icon,
  .solution-card:hover .solution-icon,
  .reassurance-card:hover .reassurance-icon {
    transform: translateY(-2px) scale(1.04);
    filter: drop-shadow(0 0 12px rgba(92, 225, 196, 0.26));
  }
}

.problem-row,
.solution-grid,
.usecase-row,
.pricing-grid,
.reassurance-grid,
.form-grid {
  display: grid;
  gap: 1.5rem;
}

.problem-row {
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  align-items: center;
}

.problem-row .section-headline {
  max-width: 21em;
  font-size: clamp(1.7rem, 2.8vw, 2.05rem);
}

.graph-card,
.card,
.pricing-card,
.reassurance-card,
.form-panel {
  border-radius: 24px;
  background: rgba(6, 11, 25, 0.85);
  border: 1px solid rgba(92, 225, 196, 0.22);
  box-shadow: var(--shadow);
}

.graph-card {
  position: relative;
  padding: 1rem;
  display: grid;
  gap: 1rem;
  background: rgba(6, 11, 25, 0.72);
  border-color: rgba(92, 225, 196, 0.28);
}

.graph-card:has(img),
.graph-card:has(.problem-graph-svg) {
  padding: 0;
  gap: 0.7rem;
  background: transparent;
  border: none;
  box-shadow: none;
}

.problem-graphic-placeholder {
  width: 100%;
  min-height: 260px;
  border-radius: 18px;
  border: 2px dashed rgba(92,225,196,0.45);
  display: grid;
  place-items: center;
  color: var(--muted);
  background: rgba(255,255,255,0.03);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
}

.problem-graphic-placeholder img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  opacity: 0.9;
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.07);
  transform-origin: center;
}

.problem-graphic-placeholder:has(img) {
  position: relative;
  padding: 0;
  min-height: 0;
  aspect-ratio: 1126 / 414;
  overflow: hidden;
  border: none;
  background: linear-gradient(90deg, var(--bg-start) 0%, var(--bg-end) 100%);
  color: transparent;
}

.problem-graphic-placeholder:has(img)::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 34px rgba(5, 8, 17, 0.34);
}

.problem-graphic-placeholder:has(.problem-graph-svg) {
  position: relative;
  padding: 0;
  min-height: 0;
  aspect-ratio: 1126 / 414;
  overflow: visible;
  border: none;
  background: transparent;
  color: transparent;
}

.problem-graph-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.graph-legend {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0.5rem;
  text-align: left;
}

.solution-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.solution-card {
  padding: 1.35rem 1rem;
  border-radius: 18px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 0.75rem;
  text-align: center;
  align-items: start;
  align-content: start;
  min-height: 185px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.solution-card .solution-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.solution-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.solution-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.usecase-container {
  padding: 2rem 0;
}

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

.usecase-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  border: 1.5px solid var(--accent);
  background: rgba(92, 225, 196, 0.08);
  color: var(--text);
  font-size: 0.95rem;
}

.pricing-section {
  padding-top: 0;
}

.pricing-top {
  display: grid;
  gap: 1rem;
  align-items: center;
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
  margin-bottom: 2.5rem;
}

.pricing-top > * {
  min-width: 0;
}

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid var(--accent);
}

.pricing-toggle-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.billing-summary {
  margin: -0.35rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}

.billing-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 100%;
  background: rgba(255,255,255,0.035);
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(92,225,196,0.22);
}

.billing-switch input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 56px;
  height: 30px;
  margin: 0;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.22s ease;
}

.billing-switch input[type="checkbox"]::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  transition: transform 0.22s ease, background 0.22s ease;
}

.billing-switch input[type="checkbox"]:checked {
  background: linear-gradient(90deg, rgba(92,225,196,0.18), rgba(92,225,196,0.1));
}

.billing-switch input[type="checkbox"]:checked::after {
  transform: translateX(26px);
  background: var(--accent);
}

.billing-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.billing-switch:has(input:not(:checked)) .billing-monthly,
.billing-switch:has(input:checked) .billing-annual {
  background: rgba(92,225,196,0.2);
  border-color: rgba(92,225,196,0.45);
  color: var(--text);
}

.billing-label {
  color: inherit;
}

.pricing-toggle span {
  color: var(--muted);
  font-size: 0.92rem;
}

.toggle-button {
  min-width: 120px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.toggle-button.active {
  background: rgba(92, 225, 196, 0.18);
  border-color: rgba(92, 225, 196, 0.28);
}

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

.pricing-card {
  padding: 1.6rem;
  display: grid;
  grid-template-rows: 1.7rem auto auto 4.05rem 3.2rem 5.25rem auto;
  gap: 0.9rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  text-align: center;
  align-items: center;
  align-content: start;
  min-height: 100%;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(92,225,196,0.18);
  background: rgba(92,225,196,0.08);
}

.pricing-card h3 {
  margin: 0;
}

.plan-saving {
  align-self: start;
  justify-self: center;
  padding: 0.25rem 0.55rem;
  border: 1px solid rgba(92, 225, 196, 0.42);
  border-radius: 999px;
  background: rgba(92, 225, 196, 0.12);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
  white-space: nowrap;
}

.plan-saving[hidden] {
  display: block;
  visibility: hidden;
}

.pricing-card .meta {
  color: var(--muted);
  margin: 0;
}

.price-term {
  margin-top: -0.75rem;
  min-height: 3.2rem;
  display: grid;
  align-content: start;
  gap: 0.2rem;
}

.annual-total {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.35;
}

.annual-total[hidden] {
  display: none;
}

.enterprise-term {
  visibility: hidden;
}

.pricing-description {
  align-self: start;
  color: var(--muted);
  line-height: 1.65;
  margin: 0.3rem 0 0.6rem;
  max-width: 28ch;
  justify-self: center;
}

.pricing-card.enterprise-card .price-value {
  align-self: stretch;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.2;
  white-space: nowrap;
}

.included-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
  width: 100%;
  text-align: left;
}

.included-list li {
  color: var(--muted);
  font-size: 0.95rem;
  padding-left: 1.8rem;
  position: relative;
}

.included-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.price-value {
  align-self: start;
  display: grid;
  place-items: center;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  color: var(--accent);
  text-align: center;
}

.pricing-card a {
  width: auto;
  margin: 0 auto;
  color: var(--text);
  border-color: rgba(92,225,196,0.35);
  text-align: center;
  align-self: end;
}

.pricing-card a:hover,
.pricing-card a:focus-visible {
  background: rgba(255,255,255,0.08);
  border-color: rgba(92,225,196,0.45);
}

.pricing-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 1rem auto 0;
  text-align: center;
}

.pricing-note a {
  color: var(--accent);
  text-underline-offset: 0.18em;
}

.pricing-included {
  width: min(820px, 100%);
  margin: 1.5rem auto 0;
  padding: 1.4rem;
  border-radius: 18px;
  border: 1px solid rgba(92, 225, 196, 0.2);
  background: rgba(8, 18, 32, 0.68);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.pricing-included h3 {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 1.1rem;
}

.pricing-included .included-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1.25rem;
}

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

.reassurance-card {
  padding: 2rem;
  border-radius: 18px;
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.reassurance-card h3 {
  margin: 0;
}

.reassurance-section .section-title,
.reassurance-section .section-headline {
  text-align: center;
}

.reassurance-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.faq-section .section-title,
.faq-section .section-headline {
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
  width: min(860px, 100%);
  margin: 1.8rem auto 0;
}

.faq-list details {
  border: 1px solid rgba(92, 225, 196, 0.18);
  border-radius: 16px;
  background: rgba(8, 18, 32, 0.68);
  overflow: hidden;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.faq-list details[open] {
  border-color: rgba(92, 225, 196, 0.42);
  background: rgba(10, 24, 40, 0.82);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  color: var(--text);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  content: '+';
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: '-';
}

.faq-list summary:focus-visible {
  outline: 2px solid rgba(92, 225, 196, 0.72);
  outline-offset: -4px;
}

.faq-list p {
  margin: 0;
  padding: 0 1.1rem 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

.demo-section {
  padding: 4.5rem 0 5rem;
}

.demo-section .section-title {
  color: rgba(92, 225, 196, 0.82);
  font-size: 0.72rem;
  margin-bottom: 0.65rem;
}

.demo-section .section-headline {
  margin-bottom: 0.8rem;
}

.demo-section .section-copy {
  margin-bottom: 1.45rem;
}

.demo-panel {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2.5vw, 1.8rem);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.demo-panel .panel-heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding-bottom: 0.1rem;
}

.demo-section .section-copy,
.demo-panel p {
  text-align: center;
}

.demo-section .section-copy {
  margin-left: auto;
  margin-right: auto;
}

.demo-panel h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.25;
  font-weight: 700;
}

.demo-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

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

.form-row {
  display: grid;
  align-content: start;
  gap: 0.75rem;
}

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

.selected-plan-row[hidden] {
  display: none;
}

.selected-plan-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(92, 225, 196, 0.36);
  background: rgba(92, 225, 196, 0.1);
}

.selected-plan-card p {
  text-align: left;
}

.selected-plan-eyebrow {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.selected-plan-label {
  color: var(--text) !important;
  font-size: 1.1rem;
  font-weight: 700;
}

.selected-plan-detail {
  font-size: 0.9rem;
}

.remove-plan-button {
  flex: 0 0 auto;
  border: 1px solid rgba(92, 225, 196, 0.38);
  border-radius: 999px;
  background: rgba(8, 14, 25, 0.45);
  color: var(--text);
  cursor: pointer;
  padding: 0.65rem 0.9rem;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.remove-plan-button:hover,
.remove-plan-button:focus-visible {
  border-color: rgba(92, 225, 196, 0.78);
  background: rgba(8, 14, 25, 0.72);
}

.form-row label:not(.consent-label) {
  color: var(--muted);
  font-size: 0.95rem;
  display: grid;
  align-content: start;
  gap: 0.5rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(92, 225, 196, 0.24);
  background: rgba(8, 14, 25, 0.92);
  color: var(--text);
  padding: 1rem 1rem;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: rgba(92, 225, 196, 0.72);
  background: rgba(10, 20, 34, 0.98);
  box-shadow: none;
}

.phone-block {
  display: flex;
  gap: 0.85rem;
  flex-wrap: nowrap;
}

/* Make inline SVG icons outlines in accent colour where present */
.tile-icon svg,
.value-card .icon svg,
.preference-tile svg,
.reassurance-icon svg,
.navbar svg,
.menu-toggle svg,
.solution-icon svg {
  fill: none !important;
  stroke: var(--accent) !important;
  stroke-width: 1.2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  color: var(--accent) !important;
}

.phone-prefix {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 14, 25, 0.98);
  color: var(--text);
  font-weight: 700;
}

.help-text,
.field-error,
.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.captcha-row {
  justify-items: center;
  text-align: center;
}

.turnstile-widget {
  min-height: 65px;
}

.turnstile-widget[hidden] {
  display: none;
}

.field-error {
  color: #ffb3b3;
}

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

.preference-prompt {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.preference-tile {
  position: relative;
}

.preference-tile input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.preference-tile .tile-state {
  padding: 0;
}

.preference-tile:hover {
  border-color: rgba(92,225,196,0.45);
}

.preference-tile.disabled:hover {
  border-color: rgba(255,255,255,0.08);
}

.preference-tile {
  display: grid;
  gap: 0.7rem;
  padding: 1.15rem;
  min-height: 132px;
  align-content: center;
  border-radius: 18px;
  border: 1.5px solid rgba(92, 225, 196, 0.3);
  background: rgba(9, 15, 30, 0.92);
  cursor: pointer;
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.preference-tile:has(input:checked) {
  border-color: rgba(92, 225, 196, 0.82);
  background: rgba(92, 225, 196, 0.12);
  box-shadow: 0 0 0 1px rgba(92, 225, 196, 0.28), 0 18px 40px rgba(92, 225, 196, 0.12);
}

.preference-tile.disabled {
  opacity: 0.78;
  cursor: not-allowed;
  background: rgba(9, 15, 30, 0.62);
  border-color: rgba(255, 255, 255, 0.1);
}

.tile-state {
  display: grid;
  gap: 0.55rem;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.tile-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: transparent;
  border: none;
  color: var(--accent);
}

.tile-label {
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.tile-status,
.coming-soon {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.full-width {
  grid-column: 1 / -1;
}

.consent-label {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--muted);
  font-size: 0.95rem;
  justify-content: center;
  line-height: 1.6;
  max-width: 680px;
}

.consent-row {
  display: flex;
  justify-content: center;
}

.consent-label input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.2rem;
  padding: 0;
  border: 1px solid rgba(92, 225, 196, 0.54);
  border-radius: 0.4rem;
  background: rgba(8, 14, 25, 0.92);
  cursor: pointer;
}

.consent-label input[type="checkbox"]:checked {
  border-color: var(--accent);
  background-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23041418' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.25' d='m3.5 8.5 3 3 6-7'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 0.95rem;
}

.consent-label input[type="checkbox"]:focus-visible {
  outline: 2px solid rgba(92, 225, 196, 0.72);
  outline-offset: 3px;
}

.consent-label a,
.footer-links a {
  color: var(--muted);
  text-decoration-color: rgba(92, 225, 196, 0.4);
  text-underline-offset: 0.2em;
}

.submit-wrap {
  display: grid;
  gap: 0.9rem;
  justify-items: center;
}

.submit-button {
  width: auto;
  min-width: 0;
  min-height: 56px;
  padding: 0.95rem 1.4rem;
  background: linear-gradient(135deg, rgba(92, 225, 196, 0.95), rgba(24, 153, 128, 0.95));
  color: #041418;
  border-color: rgba(92, 225, 196, 0.48);
}

.message-box {
  display: none;
  padding: 1.5rem 1.3rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 18, 32, 0.88);
  color: var(--text);
}

.message-box.success {
  border-color: rgba(92, 225, 196, 0.3);
}

.message-box.error {
  border-color: rgba(255, 96, 96, 0.4);
  color: #ffb3b3;
}

.contact-options {
  display: grid;
  gap: 1rem;
  margin-top: 0.45rem;
  padding: 1.2rem;
  border-top: 1px solid rgba(92, 225, 196, 0.16);
}

.contact-options-heading {
  display: grid;
  gap: 0.2rem;
  text-align: center;
}

.contact-options-heading p {
  color: var(--muted);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-options-heading h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.2rem;
}

.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 300px));
  justify-content: center;
  gap: 0.85rem;
  width: 100%;
  margin: 0 auto;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid rgba(92, 225, 196, 0.22);
  border-radius: 16px;
  background: rgba(8, 18, 32, 0.68);
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.contact-option:hover,
.contact-option:focus-visible {
  border-color: rgba(92, 225, 196, 0.62);
  background: rgba(92, 225, 196, 0.1);
  transform: translateY(-2px);
}

.contact-option:focus-visible {
  outline: 2px solid rgba(92, 225, 196, 0.82);
  outline-offset: 3px;
}

.contact-option-icon {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: rgba(92, 225, 196, 0.1);
}

.contact-option-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.linkedin-icon,
.facebook-icon {
  background: #0a66c2;
}

.linkedin-icon svg,
.facebook-icon svg {
  fill: #ffffff;
  stroke: none;
}

.facebook-icon {
  background: #1877f2;
}

.contact-option strong,
.contact-option span span {
  display: block;
}

.contact-option span span {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  width: min(1080px, calc(100% - 2rem));
  padding: 1rem;
  border: 1px solid rgba(92, 225, 196, 0.24);
  border-radius: 18px;
  background: rgba(6, 12, 28, 0.96);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

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

.cookie-banner-content {
  display: grid;
  gap: 0.35rem;
}

.cookie-banner-content p,
.cookie-option p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.cookie-banner-content a,
.footer-cookie-button {
  color: var(--muted);
  text-decoration-color: rgba(92, 225, 196, 0.4);
  text-underline-offset: 0.2em;
}

.cookie-actions,
.cookie-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
}

.cookie-button,
.footer-cookie-button,
.cookie-panel-close {
  font: inherit;
  cursor: pointer;
}

.cookie-button {
  min-height: 42px;
  padding: 0.68rem 1rem;
  border: 1px solid rgba(92, 225, 196, 0.28);
  border-radius: 999px;
  background: rgba(8, 18, 32, 0.82);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.cookie-button-primary {
  background: rgba(92, 225, 196, 0.92);
  border-color: rgba(92, 225, 196, 0.68);
  color: #041418;
}

.cookie-button-secondary {
  color: var(--muted);
}

.cookie-button:hover,
.cookie-button:focus-visible,
.footer-cookie-button:hover,
.footer-cookie-button:focus-visible,
.cookie-panel-close:hover,
.cookie-panel-close:focus-visible {
  border-color: rgba(92, 225, 196, 0.62);
  color: var(--text);
}

.cookie-button:hover,
.cookie-button:focus-visible {
  transform: translateY(-1px);
  background: rgba(92, 225, 196, 0.1);
}

.cookie-button-primary:hover,
.cookie-button-primary:focus-visible {
  background: rgba(92, 225, 196, 1);
  color: #041418;
}

.cookie-button:focus-visible,
.footer-cookie-button:focus-visible,
.cookie-panel-close:focus-visible,
.cookie-switch input:focus-visible + span {
  outline: 2px solid rgba(92, 225, 196, 0.82);
  outline-offset: 3px;
}

.cookie-panel-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(1, 4, 12, 0.68);
  backdrop-filter: blur(12px);
}

.cookie-panel {
  display: grid;
  gap: 1rem;
  width: min(680px, 100%);
  max-height: min(86vh, 720px);
  overflow: auto;
  padding: 1.15rem;
  border: 1px solid rgba(92, 225, 196, 0.24);
  border-radius: 18px;
  background: rgba(6, 12, 28, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.cookie-panel-heading {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: flex-start;
}

.cookie-panel-eyebrow {
  margin: 0 0 0.3rem;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cookie-panel h2,
.cookie-option h3 {
  margin: 0;
}

.cookie-panel h2 {
  font-size: 1.25rem;
  line-height: 1.25;
}

.cookie-panel-close {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(92, 225, 196, 0.2);
  border-radius: 12px;
  background: rgba(8, 18, 32, 0.82);
  color: var(--muted);
  font-size: 1.3rem;
  line-height: 1;
}

.cookie-options {
  display: grid;
  gap: 0.75rem;
}

.cookie-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  min-height: 88px;
  padding: 0.95rem;
  border: 1px solid rgba(92, 225, 196, 0.18);
  border-radius: 14px;
  background: rgba(8, 18, 32, 0.68);
}

.cookie-option-toggle {
  cursor: pointer;
}

.cookie-status {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  width: 52px;
  height: 30px;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-switch span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(92, 225, 196, 0.28);
  border-radius: 999px;
  background: rgba(2, 8, 18, 0.86);
  transition: background 0.18s ease, border-color 0.18s ease;
}

.cookie-switch span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.72);
  transition: transform 0.18s ease, background 0.18s ease;
}

.cookie-switch input:checked + span {
  border-color: rgba(92, 225, 196, 0.74);
  background: rgba(92, 225, 196, 0.2);
}

.cookie-switch input:checked + span::after {
  transform: translateX(22px);
  background: var(--accent);
}

.footer-cookie-button {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: inherit;
  text-decoration: underline;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 2rem 0 3rem;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.footer-links a {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:not(:last-child)::after {
  content: '';
  width: 0.36rem;
  height: 0.36rem;
  margin-left: 1rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(92, 225, 196, 0.34);
  animation: footer-dot-pulse 2.4s ease-out infinite;
}

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

@keyframes footer-dot-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(92, 225, 196, 0.34);
  }

  70%,
  100% {
    box-shadow: 0 0 0 0.38rem rgba(92, 225, 196, 0);
  }
}

@media (min-width: 1041px) and (max-width: 1365px) {
  .hero {
    padding-top: 4rem;
    overflow: clip;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "actions"
      "visual";
  }

  .hero-visual {
    min-height: 390px;
    max-width: 760px;
    margin: 0 auto;
  }

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

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

  .hero-copy p {
    margin-bottom: 2.2rem;
  }

  .hero-actions {
    margin-top: 0;
  }

  .hero-visual .hero-art-inner img {
    width: 104%;
    height: 104%;
    left: 50%;
    top: 50%;
  }
}

@media (max-width: 1040px) {
  .hero {
    padding-top: 4rem;
    overflow: clip;
  }

  .hero-grid,
  .problem-row,
  .solution-grid,
  .pricing-grid,
  .reassurance-grid,
  .usecase-row,
  .form-grid,
  .value-strip {
    grid-template-columns: 1fr;
  }

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

  .hero-grid {
    grid-template-areas:
      "copy"
      "actions"
      "visual";
  }

  .hero-visual {
    min-height: 390px;
    max-width: 760px;
    margin: 0 auto;
  }

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

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

  .hero-copy p {
    margin-bottom: 2.2rem;
  }

  .hero-actions {
    margin-top: 0;
  }

  .hero-visual .hero-art-inner img {
    width: 104%;
    height: 104%;
    left: 50%;
    top: 50%;
  }

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

  .about-hero {
    padding-top: 4rem;
  }

  .about-principles-grid {
    grid-template-columns: 1fr;
  }

  .section { padding: 2rem 0; }
  .demo-panel { padding: 1rem; }
  .pricing-card { padding: 1rem; }
}

@media (max-width: 740px) {
  html {
    scroll-padding-top: 8rem;
  }

  .section {
    scroll-margin-top: 8rem;
  }

  #pricing,
  #faq,
  #demo,
  #contact,
  .hero {
    scroll-margin-top: 8rem;
  }

  .problem-row .section-headline span:first-child {
    white-space: normal;
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    justify-content: space-between;
    align-items: center;
    padding: 0.82rem 0;
    gap: 0.75rem;
  }

  .logo-mark img {
    height: 30px;
  }

  .navbar {
    display: none;
    order: initial;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(92, 225, 196, 0.04);
    border-color: rgba(92, 225, 196, 0.18);
  }

  .nav-actions {
    display: none;
    grid-column: 1 / -1;
  }

  .nav-open .navbar {
    display: grid;
    grid-column: 1 / -1;
    width: 100%;
    gap: 0.85rem;
    margin: 0.35rem 0 0;
    padding: 0.95rem;
    background: rgba(6, 14, 29, 0.82);
    border: 1px solid rgba(92, 225, 196, 0.12);
    border-radius: 18px;
  }

  .nav-open .navbar a {
    padding: 0.2rem 0;
  }

  .nav-open .nav-actions {
    display: grid;
    width: 100%;
    margin-top: -0.4rem;
  }

  .nav-open .nav-actions .cta-button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero {
    padding-top: 1.2rem;
    padding-bottom: 0.8rem;
  }

  .hero::before {
    inset: 36% auto 0 0;
    width: 100%;
    opacity: 0.28;
  }

  .hero-copy h1 {
    font-size: clamp(1.92rem, 8.1vw, 2.48rem);
    line-height: 1.06;
    max-width: 16ch;
    text-align: left;
    margin-bottom: 1rem;
  }

  .hero-copy p {
    max-width: 34rem;
    font-size: 1rem;
    line-height: 1.68;
    margin-bottom: 1.2rem;
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .about-hero {
    padding-top: 2.4rem;
    min-height: 440px;
  }

  .about-hero-copy h1 {
    max-width: 17ch;
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .about-section-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .about-section-body {
    grid-column: 1;
    grid-row: 1;
  }

  .about-hero-copy p:not(.hero-eyebrow),
  .about-copy-stack p {
    line-height: 1.68;
  }

  .about-story-section .section-headline {
    max-width: 100%;
  }

  .about-principles-section .section-headline,
  .about-focus-section .section-headline {
    max-width: 100%;
  }

  .about-focus-card,
  .about-cta {
    border-radius: 18px;
  }

  .legal-actions {
    display: grid;
    gap: 0.75rem;
  }

  .legal-document-frame {
    min-height: 62vh;
    border-radius: 14px;
  }

  .about-cta {
    align-items: center;
  }

  .hero-grid {
    grid-template-areas:
      "copy"
      "visual"
      "actions";
    gap: 0.7rem;
  }

  .pricing-top {
    align-items: flex-start;
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .billing-switch {
    width: fit-content;
    justify-self: center;
    margin-top: 0.5rem;
  }

  .billing-option {
    gap: 0.25rem;
  }

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

  .hero-visual {
    width: 100%;
    aspect-ratio: 1672 / 941;
    min-height: 0;
    margin: -0.35rem auto -0.35rem;
    max-width: 520px;
    overflow: hidden;
    background-image: url("assets/hero-image-photoroom.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: drop-shadow(0 18px 42px rgba(92, 225, 196, 0.08));
  }

  .hero-visual:has(img)::before {
    display: block;
    width: min(82vw, 440px);
    height: min(34vw, 170px);
    left: 50%;
    top: auto;
    right: auto;
    bottom: 12%;
    transform: translateX(-50%);
    border: 0;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(92, 225, 196, 0.2), rgba(92, 225, 196, 0.05) 45%, transparent 72%);
    filter: blur(8px);
    opacity: 0.9;
  }

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

  .hero-visual .hero-art-inner {
    display: none;
  }

  .hero-visual .hero-art-inner img {
    width: min(142vw, 640px);
    height: auto;
    top: 49%;
    opacity: 0.92;
  }

  .value-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .solution-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-inline: 0;
    padding: 0;
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .solution-grid > * {
    min-width: 0;
  }

  .pricing-grid,
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .pricing-grid,
  .reassurance-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-inline: 0;
    padding: 0;
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .pricing-grid > *,
  .reassurance-grid > * {
    min-width: 0;
  }

  .value-card,
  .solution-card,
  .reassurance-card,
  .pricing-card {
    padding: 1.15rem;
    border-radius: 16px;
  }

  .value-card {
    gap: 0.65rem;
  }

  .value-card p,
  .solution-card p,
  .reassurance-card p,
  .pricing-description {
    line-height: 1.6;
  }

  .pricing-section {
    padding-top: 0;
  }

  .pricing-top {
    margin-bottom: 1.25rem;
  }

  .pricing-section .section-copy {
    line-height: 1.55;
    margin-bottom: 0;
  }

  .pricing-card {
    min-height: auto;
    gap: 0.45rem;
    align-content: center;
  }

  .price-value {
    font-size: clamp(1.65rem, 10vw, 2.25rem);
  }

  .pricing-description {
    margin: 0.1rem 0 0.3rem;
  }

  .pricing-card a {
    align-self: center;
    padding-block: 0.78rem;
  }

  .pricing-included {
    margin-top: 0.7rem;
  }

  .faq-list {
    margin-top: 1rem;
  }

  .faq-list summary {
    padding: 0.9rem;
    font-size: 0.95rem;
  }

  .faq-list p {
    padding: 0 0.9rem 0.9rem;
    font-size: 0.94rem;
  }

  .contact-options {
    padding: 1rem 0;
  }

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

  .cookie-banner {
    grid-template-columns: 1fr;
    align-items: stretch;
    bottom: 0.75rem;
    width: calc(100% - 1.5rem);
    padding: 0.85rem;
    border-radius: 16px;
  }

  .cookie-actions,
  .cookie-panel-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-button {
    width: 100%;
  }

  .cookie-panel {
    padding: 1rem;
  }

  .cookie-option {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cookie-status,
  .cookie-switch {
    justify-self: start;
  }

  .reassurance-section {
    padding-top: 1.2rem;
  }

  .reassurance-section .section-headline {
    margin-bottom: 0.8rem;
  }

  .reassurance-card {
    min-height: 210px;
    align-content: center;
    gap: 0.7rem;
  }

  .reassurance-icon {
    width: 42px;
    height: 42px;
  }

  .problem-row {
    gap: 1.75rem;
  }

  .problem-row .section-copy {
    max-width: 100%;
  }

  .problem-graphic-placeholder:has(.problem-graph-svg) {
    aspect-ratio: 1.55;
  }

  .graph-legend {
    margin: 0;
    font-size: 0.92rem;
  }

  .pricing-included .included-list {
    grid-template-columns: 1fr;
  }

  .form-row {
    gap: 0.6rem;
  }

  .form-row input,
  .form-row select,
  .form-row textarea {
    padding: 0.82rem 0.9rem;
    border-radius: 12px;
  }

  .section {
    padding: 1.65rem 0;
  }

  .section-divider {
    margin: 0 0 1.35rem;
  }

  .hero + .section-divider {
    display: none;
  }

  .hero + .section-divider + .section {
    padding-top: 0.35rem;
  }

  .hero-actions {
    width: 100%;
  }

  .cta-button,
  .secondary-button,
  .submit-button,
  .toggle-button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .phone-block {
    gap: 0.55rem;
  }

  .phone-prefix {
    min-width: 62px;
  }

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

  .preference-tile {
    min-height: 92px;
    padding: 0.7rem;
    border-radius: 14px;
  }

  .tile-icon {
    width: 30px;
    height: 30px;
  }

  .tile-icon svg {
    width: 26px;
    height: 26px;
  }

  .tile-status,
  .coming-soon {
    font-size: 0.68rem;
  }

  .consent-label {
    align-items: flex-start;
    text-align: left;
    justify-content: flex-start;
  }

  .submit-wrap .help-text {
    text-align: center;
    max-width: 30rem;
  }

  .demo-section {
    padding-top: 1.4rem;
    padding-bottom: 2.2rem;
  }

  .demo-section .section-headline {
    margin-bottom: 0.7rem;
  }

  .demo-section .section-copy {
    line-height: 1.55;
    margin-bottom: 0.9rem;
  }

  .demo-panel {
    gap: 0.75rem;
    padding: 0.85rem;
    border-radius: 18px;
  }

  .demo-panel h3 {
    font-size: 1.05rem;
  }

  .demo-panel .panel-heading p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .form-grid {
    gap: 0.75rem;
  }
}

.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease 0.15s, transform 0.6s ease 0.15s;
}

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

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

@media (max-width: 520px) {
  .container {
    width: calc(100% - 1.5rem);
  }

  .hero-copy h1 {
    font-size: clamp(1.8rem, 9.1vw, 2.28rem);
    max-width: 15.8ch;
    text-align: left;
  }

  .hero-visual {
    margin-bottom: -0.25rem;
  }

  .hero-visual .hero-art-inner img {
    width: min(148vw, 560px);
    height: auto;
  }

  .header-compact .header-inner {
    padding: 0.74rem 0;
  }

  .nav-open .nav-actions .cta-button {
    padding: 0.86rem 1rem;
  }

  .hero-actions {
    width: 100%;
  }

  .billing-switch {
    gap: 0.35rem;
    padding: 0.3rem 0.4rem;
  }

  .billing-option {
    padding: 0.35rem 0.55rem;
  }

  .cta-button,
  .secondary-button,
  .submit-button,
  .toggle-button {
    width: 100%;
  }

  .phone-block {
    flex-direction: row;
  }

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

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

  .value-card {
    padding: 1rem 0.8rem;
  }

  .value-card .icon {
    width: 44px;
    height: 44px;
  }

  .value-card .icon svg {
    width: 30px;
    height: 30px;
  }

  .value-card h3 {
    font-size: 0.95rem;
  }

  .value-card p {
    font-size: 0.9rem;
    line-height: 1.45;
  }

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

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

  .billing-switch {
    width: 100%;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .billing-option {
    padding-inline: 0.75rem;
  }

  .pricing-included {
    padding: 1rem;
  }

  .about-principles-grid {
    grid-template-columns: 1fr;
  }

  .about-principle {
    min-height: auto;
  }

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