:root {
  --ink: #061f2a;
  --ink-raised: #062b36;
  --paper: #edf4f5;
  --surface: #f7fbfb;
  --muted: #49646a;
  --teal: #00a5a1;
  --teal-deep: #006f6b;
  --line: #b9ced1;
  --mint: #bfe8df;
  --mint-assurance: #b2cbc4;
  --hero-text: #f7fbf8;
  --radius: 14px;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--ink);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scrollbar-color: #4d7478 var(--ink);
}
html.is-starting-at-hero {
  scroll-behavior: auto !important;
}
body {
  margin: 0;
  line-height: 1.5;
  background: var(--paper);
}
a {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
::selection {
  background: #8bdad1;
  color: #06232b;
}
.skip-link {
  position: fixed;
  z-index: 20;
  left: 1rem;
  top: -4rem;
  padding: 0.7rem 1rem;
  background: var(--paper);
  color: var(--ink);
}
.skip-link:focus {
  top: 1rem;
}
.site-header {
  position: fixed;
  z-index: 10;
  top: max(18px, env(safe-area-inset-top));
  left: 50%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: min(1120px, calc(100% - 28px));
  min-height: 64px;
  padding: 0 10px 0 18px;
  transform: translateX(-50%);
  border: 1px solid rgba(154, 205, 202, 0.35);
  border-radius: 16px;
  background: rgba(6, 31, 42, 0.8);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  color: #edf8f7;
  backdrop-filter: blur(12px);
  transition:
    top 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}
.site-header.is-compact {
  top: max(8px, env(safe-area-inset-top));
  background: rgba(6, 31, 42, 0.96);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
}
.brand {
  display: flex;
  align-items: center;
  width: 160px;
  height: 50px;
  flex: 0 0 auto;
  overflow: visible;
}
.brand picture {
  display: block;
  width: 100%;
}
.brand img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.site-header nav {
  display: flex;
  gap: 1.35rem;
  margin-left: auto;
  color: #c6d9da;
  font-size: 0.86rem;
  font-weight: 650;
}
.site-header nav a {
  padding: 0.45rem 0.2rem;
  text-decoration: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.35rem;
  border: 0;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font: inherit;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background 0.18s ease;
}
.button:active {
  transform: scale(0.98);
}
.button:disabled {
  cursor: wait;
  opacity: 0.68;
}
.button-small {
  min-height: 40px;
  padding: 0.5rem 0.85rem;
  font-size: 0.86rem;
}
.site-header .button-small {
  background: #dffaf5;
  color: #06232b;
}
.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #00a5a1;
  outline-offset: 3px;
}
.hero {
  position: relative;
  display: grid;
  min-height: max(100dvh, 820px);
  overflow: hidden;
  background: var(--ink);
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(9rem, 16vh, 12rem) clamp(1.5rem, 5vw, 4rem)
    clamp(18rem, 29vh, 23rem);
  color: #f7fbf8;
  text-align: center;
}
.hero-copy::before {
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse at center,
    rgba(6, 31, 42, 0.9) 0%,
    rgba(6, 31, 42, 0.58) 48%,
    rgba(6, 31, 42, 0.08) 100%
  );
  content: "";
}
.hero-context {
  margin: 0 0 1rem;
  color: #9de4d9;
  font-size: 0.78rem;
  font-weight: 700;
}
.hero h1 {
  max-width: 1100px;
  margin: 0 0 1.5rem;
  font-family: Outfit, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(3.2rem, 7.2vw, 6rem);
  line-height: 0.91;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.lead {
  max-width: 620px;
  margin: 0;
  color: #d6e5df;
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.6;
}
.hero-copy .lead {
  max-width: 680px;
}
.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  justify-content: center;
}
.text-link {
  color: #f4faf7;
  font-weight: 750;
  text-underline-offset: 5px;
}
.assurance {
  margin: 1.35rem 0 0;
  color: #b2cbc4;
  font-size: 0.85rem;
}
.hero-plan-cascade {
  position: absolute;
  z-index: 3;
  right: 50%;
  bottom: clamp(1.75rem, 5vh, 3.5rem);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: clamp(0.9rem, 1.6vw, 1.45rem);
  width: min(1120px, calc(100% - 3rem));
  transform: translateX(50%);
}
.hero-plan-card {
  display: flex;
  min-height: 178px;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.2rem;
  border: 1px solid rgba(191, 232, 223, 0.38);
  border-radius: var(--radius);
  background: rgba(6, 31, 42, 0.82);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  color: #f7fbf8;
  font-family: Outfit, ui-sans-serif, system-ui, sans-serif;
  text-decoration: none;
  backdrop-filter: blur(12px);
}
.hero-plan-card > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  color: #bfe8df;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-plan-card b {
  padding: 0.28rem 0.4rem;
  border-radius: 999px;
  background: #bfe8df;
  color: #06232b;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
}
.hero-plan-card strong {
  font-size: clamp(1.7rem, 2.7vw, 2.65rem);
  letter-spacing: -0.055em;
  line-height: 0.85;
}
.hero-plan-card strong small {
  margin-left: 0.22rem;
  font-size: 0.66rem;
  letter-spacing: 0;
}
.hero-plan-card em {
  color: #c6d9da;
  font-size: 0.78rem;
  font-style: normal;
}
.hero-plan-card .plan-scope {
  padding-top: 0.78rem;
  border-top: 1px solid rgba(191, 232, 223, 0.26);
  color: #f7fbf8;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
}
.plan-pro {
  background: #007f7c;
}
.hero-photo {
  position: absolute;
  z-index: 0;
  inset: 0;
  margin: 0;
}
.hero-photo picture,
.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-photo img {
  object-fit: cover;
  filter: saturate(0.76) contrast(1.05);
  will-change: transform;
}
.hero-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 31, 42, 0.94),
    rgba(6, 31, 42, 0.7) 40%,
    rgba(6, 31, 42, 0.12) 78%
  );
  content: "";
}
.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.4rem max(1.5rem, calc((100vw - 1120px) / 2));
  background: #0a303b;
  color: #eaf3ee;
}
.proof p {
  margin: 0;
  font-size: 0.83rem;
  letter-spacing: 0.015em;
  text-align: center;
}
.section {
  padding: clamp(7rem, 13vw, 13rem) max(1.5rem, calc((100vw - 1120px) / 2));
}
.section-intro {
  max-width: 760px;
}
.section h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.6rem, 5.1vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
}
.solution .section-intro h2.is-gradient-reveal .gradient-reveal-word {
  display: inline-block;
  line-height: 1.08;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
  color: transparent;
  background: linear-gradient(
    100deg,
    #061f2a 0%,
    #061f2a 34%,
    #00a5a1 50%,
    #061f2a 66%,
    #061f2a 100%
  );
  background-position: 100% 0;
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
}
.section-intro > p:last-child,
.statement > p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}
.solution {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}
.solution::before {
  position: absolute;
  right: 5vw;
  top: 10rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 165, 161, 0.22), transparent 65%);
  filter: blur(8px);
  content: "";
  pointer-events: none;
}
.capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  margin-top: 5.75rem;
  border-top: 1px solid var(--line);
}
.capabilities article {
  display: grid;
  grid-template-rows: auto minmax(2.2em, auto) auto;
  align-content: start;
  justify-items: center;
  min-width: 0;
  padding: 2.5rem clamp(1.5rem, 2.5vw, 2.5rem) 3rem;
  border-right: 1px solid var(--line);
  overflow-wrap: anywhere;
  text-align: center;
  transition:
    background 0.35s ease,
    transform 0.35s ease;
}
.capabilities article:last-child {
  border-right: 0;
}
.capability-context {
  margin: 0;
  color: #006f6b;
  font-size: 0.82rem;
  font-weight: 700;
}
.capabilities h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 2.2em;
  margin: 1.25rem 0 0.55rem;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  perspective: 700px;
  text-wrap: balance;
}
.capabilities .flip-word {
  display: inline-flex;
  white-space: nowrap;
}
.capabilities .flip-word:not(:last-child) {
  margin-inline-end: 0.26em;
}
.capabilities .flip-letter {
  display: inline-block;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}
.capabilities article > p:last-child {
  max-width: 32ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}
.statement {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 8vw;
  overflow: hidden;
  background: #062b36;
  color: #eef9f4;
}
.statement > * {
  position: relative;
  z-index: 1;
}
.statement-particles {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.statement-particle {
  position: absolute;
  left: var(--particle-x);
  top: var(--particle-y);
  width: var(--particle-size);
  height: var(--particle-size);
  border: 1px solid rgba(151, 247, 231, 0.62);
  border-radius: 50%;
  background: rgba(120, 229, 211, 0.18);
  box-shadow: 0 0 16px rgba(98, 228, 214, 0.24);
  opacity: var(--particle-opacity);
  will-change: transform, opacity;
}
.statement-title {
  width: fit-content;
  max-width: 100%;
  padding: clamp(1rem, 1.8vw, 1.4rem);
}
.statement-title-border {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.statement-title-border span {
  position: absolute;
  display: block;
  background: #62e4d6;
  box-shadow: 0 0 16px rgba(98, 228, 214, 0.42);
  transform: scaleX(0);
}
.statement-title-border .statement-border-top,
.statement-title-border .statement-border-bottom {
  right: 0;
  left: 0;
  height: 1px;
}
.statement-title-border .statement-border-top {
  top: 0;
  transform-origin: left center;
}
.statement-title-border .statement-border-bottom {
  bottom: 0;
  transform-origin: right center;
}
.statement-title-border .statement-border-right,
.statement-title-border .statement-border-left {
  top: 0;
  bottom: 0;
  width: 1px;
  transform: scaleY(0);
}
.statement-title-border .statement-border-right {
  right: 0;
  transform-origin: center top;
}
.statement-title-border .statement-border-left {
  left: 0;
  transform-origin: center bottom;
}
.statement::after {
  position: absolute;
  right: -10%;
  top: -70%;
  width: 70%;
  height: 180%;
  border: 1px solid rgba(89, 213, 201, 0.28);
  border-radius: 50%;
  transform: rotate(-22deg);
  content: "";
}
.statement h2 {
  position: relative;
  z-index: 1;
  max-width: 660px;
}
.statement > p {
  align-self: end;
  color: #a8d6ca;
}
.automation {
  overflow: hidden;
  background: var(--surface);
}
.automation-intro {
  max-width: 780px;
}
.automation-intro > p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}
.automation-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
  margin-top: clamp(3.5rem, 7vw, 6.25rem);
}
.automation-visual {
  position: relative;
  min-height: clamp(390px, 42vw, 560px);
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: var(--ink-raised);
  box-shadow: 0 24px 52px rgba(6, 31, 42, 0.18);
}
.automation-visual::after {
  position: absolute;
  inset: 0;
  background: rgba(6, 31, 42, 0.17);
  content: "";
  pointer-events: none;
}
.automation-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 65% center;
}
.automation-visual figcaption {
  position: absolute;
  z-index: 1;
  right: 1.25rem;
  bottom: 1.2rem;
  left: 1.25rem;
  max-width: 29ch;
  color: #f3fbf8;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
}
.automation-features {
  border-top: 1px solid var(--line);
}
.automation-feature {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1.15rem;
  padding: 1.45rem 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.28s ease, transform 0.28s ease;
}
.automation-icon {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border-radius: 50%;
  background: #cfe9e5;
  color: var(--teal-deep);
}
.automation-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}
.automation-feature h3 {
  margin: 0;
  font-family: Outfit, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.18rem, 1.7vw, 1.45rem);
  letter-spacing: -0.028em;
  line-height: 1.08;
}
.automation-feature p {
  max-width: 47ch;
  margin: 0.48rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.pricing {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--surface);
  color: var(--ink);
}
.pricing > :not(.pricing-spotlight) {
  position: relative;
  z-index: 1;
}
.pricing > .pricing-spotlight {
  position: absolute;
  z-index: 0;
  top: -340px;
  left: -340px;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(58, 211, 191, 0.34) 0%,
    rgba(88, 215, 195, 0.16) 34%,
    transparent 70%
  );
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}
.pricing > .pricing-curtain {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: 50%;
  background: var(--ink-raised, #062b36);
  pointer-events: none;
  will-change: transform;
}
.pricing > .curtain-left {
  left: 0;
  border-right: 1px solid rgba(157, 228, 217, 0.22);
}
.pricing > .curtain-right {
  right: 0;
  border-left: 1px solid rgba(157, 228, 217, 0.22);
}
.centered {
  margin: auto;
  text-align: center;
}
.centered > p:last-child {
  margin-inline: auto;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 4rem;
  overflow: visible;
}
.plan {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  padding: 2rem 1.6rem;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 32px rgba(6, 31, 42, 0.1);
  overflow-wrap: anywhere;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}
.plan h3 {
  margin: 0;
  font-size: 1.35rem;
}
.price {
  margin: 0.9rem 0;
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}
.price small {
  font-size: 0.77rem;
  letter-spacing: 0;
  font-weight: 650;
}
.plan-face > p:not(.price):not(.label):not(.feature-label) {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.plan-limits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.2rem;
}
.plan-limits span {
  padding: 0.25rem 0.45rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}
.feature-label {
  margin: 1.4rem 0 0.65rem;
  color: var(--teal-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.plan ul {
  display: grid;
  gap: 0.6rem;
  padding: 1.5rem 0 0;
  margin: 1.5rem 0 2rem;
  border-top: 1px solid var(--line);
  list-style: none;
  font-size: 0.88rem;
}
.plan ul.plan-features {
  gap: 0.62rem;
  padding: 0;
  margin: 0 0 2rem;
  border-top: 0;
  font-size: 0.8rem;
  line-height: 1.38;
}
.plan-detail-summary {
  margin: 0;
  color: var(--mint-assurance);
  font-size: 0.88rem;
  line-height: 1.48;
}
.plan-detail-list {
  display: grid;
  gap: 0.8rem;
  padding: 1.25rem 0 0;
  margin: 1.2rem 0 2rem;
  border-top: 1px solid rgba(191, 232, 223, 0.28);
  list-style: none;
  font-size: 0.84rem;
  line-height: 1.42;
}
.plan-detail-list li::before {
  color: var(--mint);
  content: "+ ";
  font-weight: 800;
}
.plan-front .plan-features li:nth-child(n + 4) {
  display: none;
}
.plan-detail-trigger {
  width: fit-content;
  margin: 0 0 0.9rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--teal-deep);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.featured .plan-detail-trigger {
  color: var(--mint);
}
.plan-flip-card {
  position: relative;
  min-height: 640px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  perspective: 1400px;
}
.plan-card-inner {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}
.plan-flip-card.is-flipped .plan-card-inner {
  transform: rotateY(180deg);
}
.plan-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.6rem;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 32px rgba(6, 31, 42, 0.1);
  backface-visibility: hidden;
  overflow: hidden;
}
.plan-back {
  background: var(--ink-raised);
  color: var(--hero-text);
  transform: rotateY(180deg);
}
.plan-back > p:not(.price):not(.label):not(.feature-label) {
  color: var(--mint-assurance);
}
.plan-back .plan-limits span {
  border-color: rgba(191, 232, 223, 0.34);
  color: var(--hero-text);
}
.plan-back .feature-label,
.plan-back .plan-detail-trigger {
  color: var(--mint);
}
.plan-flip-card.featured .plan-face {
  background: #007f7c;
  color: #f4fcf9;
  box-shadow: 0 22px 40px rgba(0, 111, 107, 0.24);
}
.plan-flip-card.featured .plan-back {
  background: var(--teal-deep);
}
.plan li::before {
  color: var(--teal);
  content: "+ ";
  font-weight: 800;
}
.plan a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  margin-top: auto;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  background: linear-gradient(
    115deg,
    var(--teal) 0%,
    var(--teal) 42%,
    #80e1d5 50%,
    var(--teal) 58%,
    var(--teal) 100%
  );
  background-position: 100% 0;
  background-size: 250% 100%;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition:
    background-position 0.55s ease,
    transform 0.25s ease;
}
.featured {
  position: relative;
  transform: translateY(-0.75rem);
  background: #007f7c;
  color: #f4fcf9;
  box-shadow: 0 22px 40px rgba(0, 111, 107, 0.24);
}
.featured .label {
  margin: 0 0 2rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.featured .plan-limits span {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.featured .feature-label {
  color: var(--mint);
}
.featured .plan-face > p:not(.price):not(.label):not(.feature-label),
.featured a {
  color: #fff;
}
.plan.plan-flip-card {
  background: transparent;
  box-shadow: none;
}
.featured a {
  background: linear-gradient(
    115deg,
    #fff 0%,
    #fff 42%,
    var(--mint) 50%,
    #fff 58%,
    #fff 100%
  );
  background-position: 100% 0;
  background-size: 250% 100%;
  color: var(--teal-deep);
}
.featured ul {
  border-color: rgba(255, 255, 255, 0.25);
}
.featured li::before {
  color: #a6d9c7;
}
.signup {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  background: #dcebed;
}
.signup-copy {
  padding-top: 1rem;
}
.signup-copy h2.is-typewriting::after {
  display: inline-block;
  width: 0.08em;
  height: 0.78em;
  margin-left: 0.08em;
  background: var(--teal);
  vertical-align: -0.04em;
  content: "";
}
.signup-copy > p {
  max-width: 500px;
  margin-top: 1.25rem;
  color: #536464;
  line-height: 1.65;
}
.notice {
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: #cde3e2;
  font-size: 0.9rem;
}
.signup-form {
  --signup-shift-x: 50%;
  --signup-shift-y: 50%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(6, 31, 42, 0.1);
  border-radius: 16px;
  background: linear-gradient(
    128deg,
    rgba(255, 255, 255, 0.99) 0%,
    rgba(255, 255, 255, 0.99) 43%,
    rgba(221, 241, 238, 0.94) 72%,
    rgba(255, 255, 255, 0.99) 100%
  );
  background-position: var(--signup-shift-x) var(--signup-shift-y);
  background-size: 190% 190%;
  box-shadow: 0 24px 52px rgba(6, 31, 42, 0.16);
}
.signup-form h3 {
  margin: 0 0 0.45rem;
  font-family: Outfit, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}
.signup-form > p {
  margin-top: 0;
  color: var(--muted);
  font-size: 0.85rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
.form-grid label {
  display: grid;
  gap: 0.4rem;
  min-width: 0;
  color: #415656;
  font-size: 0.8rem;
  font-weight: 750;
}
.form-grid .wide {
  grid-column: 1/-1;
}
input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(73, 100, 106, 0.34);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
input:hover,
select:hover {
  border-color: rgba(0, 111, 107, 0.54);
  background: #fff;
}
input:focus,
select:focus {
  border-color: var(--teal);
  outline: 0;
  box-shadow: 0 0 0 3px #b9dcd1;
  background: #fff;
}
.suffix {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(73, 100, 106, 0.34);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.84);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.suffix:focus-within {
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 3px #b9dcd1;
}
.suffix input {
  border: 0;
  border-radius: 0;
}
.suffix b {
  align-self: center;
  padding: 0 0.75rem;
  color: var(--muted);
  font-size: 0.78rem;
}
.consent {
  display: block;
  margin: 0.8rem 0;
  overflow-wrap: anywhere;
  color: #526161;
  font-size: 0.8rem;
  line-height: 1.45;
}
.consent input {
  width: 1rem;
  min-height: 0;
  margin: 0 0.4rem 0 0;
  vertical-align: middle;
}
.consent a {
  color: #007b78;
}
.form-status {
  min-height: 1.3em;
  margin: 1rem 0 0;
  color: #42646e;
  font-size: 0.84rem;
  font-weight: 700;
}
.form-status.is-error {
  color: #a62d2d;
}
.submit {
  width: 100%;
  margin-top: 0.5rem;
  box-shadow: 0 10px 20px rgba(0, 165, 161, 0.2);
}
.fine-print {
  text-align: center;
  font-size: 0.75rem !important;
}
.faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 8vw;
  background: var(--paper);
}
.faq h2 {
  max-width: 600px;
}
.faq details {
  padding: 1.35rem 0.8rem 1.35rem 0;
  border-top: 1px solid var(--line);
  transition: background 0.25s ease;
}
.faq details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  cursor: pointer;
  font-weight: 750;
}
details p {
  max-width: 650px;
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}
.site-footer {
  padding: 2.25rem max(1.5rem, calc((100vw - 1120px) / 2))
    max(2.25rem, env(safe-area-inset-bottom));
  background: var(--ink);
  color: #c6dcd5;
  font-size: 0.85rem;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(15rem, 1fr) auto auto;
  align-items: center;
  gap: 2rem;
}
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}
.site-footer__brand picture {
  display: block;
  flex: 0 0 auto;
  width: 156px;
}
.site-footer__brand img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1793 / 557;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.site-footer__brand p {
  max-width: 22ch;
  margin: 0;
  line-height: 1.45;
}
.site-footer__legal {
  display: flex;
  gap: 1.1rem;
  white-space: nowrap;
}
.site-footer__legal a {
  color: #fff;
  text-underline-offset: 3px;
}
.site-footer small {
  justify-self: end;
  white-space: nowrap;
}
@media (hover: hover) {
  .site-header nav a:hover {
    color: #80e1d5;
  }
  .button:hover {
    background: #00bbb5;
    transform: translateY(-1px);
  }
  .capabilities article:hover {
    background: #dfecee;
    transform: translateY(-6px);
  }
  .plan:not(.plan-flip-card):hover {
    background: #fff;
    box-shadow: 0 22px 42px rgba(6, 31, 42, 0.14);
    transform: translateY(-6px);
  }
  .plan a:hover {
    background-position: 0 0;
    transform: translateY(-1px);
  }
  .featured:not(.plan-flip-card):hover {
    background: #007f7c;
    box-shadow: 0 26px 46px rgba(0, 111, 107, 0.3);
    transform: translateY(-1rem);
  }
  .plan-flip-card:hover {
    background: transparent;
    box-shadow: none;
  }
  .plan-flip-card:hover .plan-face {
    box-shadow: 0 22px 42px rgba(6, 31, 42, 0.14);
  }
  .plan-flip-card.featured:hover .plan-face {
    box-shadow: 0 26px 46px rgba(0, 111, 107, 0.3);
  }
  .faq details:hover {
    background: #dfecef;
  }
  .hero-plan-card:hover {
    border-color: #bfe8df;
    background: rgba(6, 31, 42, 0.94);
  }
  .hero-plan-card.plan-pro:hover {
    background: #006f6b;
  }
  .automation-feature:hover {
    transform: translateX(0.7rem);
    background: #e5f1f1;
  }
}
@media (pointer: coarse) {
  .site-header nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
  .button-small {
    min-height: 44px;
  }
}
@media (max-width: 900px) {
  .hero-copy {
    padding-top: 9rem;
    padding-bottom: 22rem;
  }
  .hero-plan-cascade {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(560px, calc(100% - 3rem));
  }
  .capabilities,
  .statement,
  .automation-stage,
  .signup,
  .faq {
    grid-template-columns: 1fr;
  }
  .capabilities article,
  .capabilities article:first-child {
    padding: 1.75rem 1rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .plan-grid {
    grid-template-columns: 1fr 1fr;
  }
  .plan:nth-child(2) {
    border-right: 0;
  }
  .plan:nth-child(-n + 2) {
    border-bottom: 0;
  }
  .signup {
    gap: 3rem;
  }
  .signup-form {
    box-shadow: 10px 12px 0 rgba(6, 31, 42, 0.12);
  }
  .automation-stage {
    gap: 3.5rem;
  }
}
@media (max-width: 620px) {
  .hero {
    min-height: auto;
  }
  .hero-copy {
    padding-bottom: 2.5rem;
  }
  .site-header {
    top: max(10px, env(safe-area-inset-top));
    width: calc(100% - 20px);
    gap: 1rem;
  }
  .brand {
    width: 134px;
    height: 42px;
  }
  .brand img {
    width: 100%;
  }
  .site-header nav {
    display: none;
  }
  .site-header .button {
    margin-left: auto;
  }
  .hero h1 {
    font-size: clamp(2.9rem, 14vw, 3.35rem);
  }
  .hero-copy::before {
    width: 100%;
  }
  .hero-plan-cascade {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 3rem);
    margin: 0 auto 2.5rem;
    transform: none;
  }
  .hero-plan-card {
    min-height: 148px;
  }
  .proof,
  .capabilities,
  .plan-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .proof {
    padding: 1.25rem 1.5rem;
  }
  .proof p {
    text-align: left;
  }
  .section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
  .capabilities {
    margin-top: 3.5rem;
  }
  .automation-stage {
    margin-top: 3.25rem;
  }
  .automation-visual {
    min-height: 350px;
  }
  .automation-feature {
    grid-template-columns: 2.65rem minmax(0, 1fr);
    gap: 0.9rem;
    padding-block: 1.2rem;
  }
  .automation-icon {
    width: 2.45rem;
    height: 2.45rem;
  }
  .plan,
  .plan:nth-child(2) {
    border-right: 0;
    border-bottom: 0;
  }
  .featured {
    transform: none;
  }
  .featured {
    order: -1;
  }
  .form-grid .wide {
    grid-column: auto;
  }
  .suffix {
    grid-template-columns: 1fr;
  }
  .suffix b {
    padding: 0 0.75rem 0.65rem;
  }
  .faq {
    gap: 2.5rem;
  }
  .signup-form {
    box-shadow: none;
  }
  .site-footer__inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.1rem;
  }
  .site-footer__brand {
    align-items: flex-start;
  }
  .site-footer__legal {
    flex-wrap: wrap;
  }
  .site-footer small {
    justify-self: start;
  }
}
@media (max-width: 380px) {
  .brand,
  .brand img {
    width: 128px;
  }
  .site-header {
    gap: 0.5rem;
  }
  .site-header .button-small {
    padding-inline: 0.7rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .site-header,
  .button,
  .capabilities article,
  .plan,
  .plan-card-inner,
  .faq details {
    transition: none;
  }
}

.verifactu-section {
  background: #f6fbfa;
}
.verifactu-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(180px, .95fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid #c5e0dc;
  border-radius: 20px;
  background: linear-gradient(135deg, #e5f7f3 0%, #ffffff 72%);
  box-shadow: 0 18px 45px rgba(4, 75, 90, .08);
}
.verifactu-copy h2 { max-width: 15ch; }
.verifactu-copy > p:not(.eyebrow):not(.verifactu-note) { max-width: 58ch; color: var(--muted); }
.verifactu-copy ul { display: grid; gap: .65rem; margin: 1.5rem 0; padding: 0; list-style: none; color: var(--ink); }
.verifactu-copy li::before { content: '✓'; display: inline-block; margin-right: .6rem; color: var(--teal); font-weight: 800; }
.verifactu-note { max-width: 58ch; color: #557076; font-size: .82rem; }
.verifactu-copy .button { display: none; }
.verifactu-mark { display: grid; min-height: 140px; place-items: center; padding: 1rem; border-radius: 16px; background: #fff; overflow: hidden; }
.verifactu-mark img { display: block; width: 150px !important; max-width: 150px !important; height: auto; object-fit: contain; }
@media (max-width: 760px) {
  .verifactu-panel { grid-template-columns: 1fr; }
  .verifactu-mark { min-height: 110px; }
}
