:root {
  --bg: #ffffff;
  --bg-soft: #f5f7f8;
  --bg-mint: #eef8f6;
  --surface: #ffffff;
  --ink: #111827;
  --ink-soft: #4b5563;
  --muted: #6b7280;
  --line: #e6e8eb;
  --line-strong: #d5d9de;
  --brand: #0d9488;
  --brand-deep: #0f766e;
  --brand-bright: #14b8a6;
  --brand-dim: rgba(13, 148, 136, 0.1);
  --crimson: #d9083c;
  --crimson-dim: rgba(217, 8, 60, 0.1);
  --gold: #b45309;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 30px 80px rgba(15, 23, 42, 0.12);
  --radius: 24px;
  --radius-sm: 14px;
  --nav-h: 76px;
  --container: 1180px;
  --font: "Lato", "Trebuchet MS", sans-serif;
  --display: "Lato", "Trebuchet MS", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--brand);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

ul {
  list-style: none;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
}

.skip:focus {
  top: 12px;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.018;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--crimson);
}

h1,
h2,
.display {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: var(--ink);
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
}

.lede {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 52ch;
}

.section {
  padding: 112px 0;
  position: relative;
}

.section-alt {
  background: var(--bg-soft);
}

.section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 56px;
  max-width: 720px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.35s var(--ease), background 0.3s, border-color 0.3s, box-shadow 0.3s, color 0.3s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(180deg, #14b8a6, var(--brand-deep));
  color: #fff;
  box-shadow: 0 12px 28px rgba(13, 148, 136, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 16px 36px rgba(13, 148, 136, 0.36);
}

.btn-ghost {
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.btn-ghost:hover {
  border-color: var(--brand);
  background: var(--brand-dim);
  color: var(--brand-deep);
}

.btn-on-dark {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-on-dark:hover {
  background: #fff;
  color: var(--brand-deep);
  border-color: #fff;
}

.btn-crimson {
  background: var(--crimson);
  color: #fff;
  box-shadow: 0 10px 24px rgba(217, 8, 60, 0.22);
}

.btn-full {
  width: 100%;
}

.icon-arr {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}

.btn:hover .icon-arr {
  transform: translateX(3px);
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  z-index: 2;
  flex-shrink: 0;
}

.brand img {
  height: 40px;
  width: auto;
  max-width: 230px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink-soft);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta .btn {
  height: 42px;
  padding: 0 16px;
  font-size: 0.88rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  place-items: center;
  gap: 5px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 100dvh;
  padding: calc(var(--nav-h) + 40px) 0 56px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #f3fbf9 0%, #ffffff 58%, #ffffff 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(70% 50% at 12% 8%, rgba(20, 184, 166, 0.18), transparent 58%),
    radial-gradient(46% 42% at 92% 12%, rgba(217, 8, 60, 0.1), transparent 52%),
    radial-gradient(40% 36% at 70% 88%, rgba(13, 148, 136, 0.08), transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(17, 24, 39, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 28%, black 18%, transparent 72%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: -1;
  animation: drift 18s ease-in-out infinite alternate;
}

.orb-a {
  width: 380px;
  height: 380px;
  background: rgba(20, 184, 166, 0.22);
  top: -60px;
  left: 6%;
}

.orb-b {
  width: 280px;
  height: 280px;
  background: rgba(217, 8, 60, 0.12);
  top: 14%;
  right: -20px;
  animation-delay: -6s;
}

.pointer-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.12), transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
}

.hero:hover .pointer-glow {
  opacity: 1;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(36px, 24px) scale(1.08); }
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 20px;
}

.live-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  border: 1px solid #cdeae4;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-soft);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.08);
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.55);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 8px transparent; }
}

.hero h1 {
  font-size: clamp(2.55rem, 5.4vw, 4.5rem);
}

.hero h1 em {
  font-style: italic;
  font-weight: 900;
  color: var(--crimson);
}

.kinetic {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px 14px;
  min-height: 1.2em;
  font-family: var(--font);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--ink-soft);
}

.word-reel {
  height: 1.15em;
  min-width: 13ch;
  overflow: hidden;
  position: relative;
}

.word-reel span {
  display: block;
  line-height: 1.15;
  color: var(--crimson);
  font-style: italic;
  font-weight: 900;
  animation: wordIn 0.55s var(--ease);
}

@keyframes wordIn {
  from { transform: translateY(55%); opacity: 0; }
  to { transform: none; opacity: 1; }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  padding-top: 4px;
}

.hero-meta > span:not(.play-ctrl) {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.84rem;
  color: var(--muted);
}

.hero-meta b {
  color: var(--ink);
  font-weight: 700;
}

.play-ctrl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 4px;
}

.play-ctrl button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink);
  background: #fff;
}

.play-ctrl button:hover {
  border-color: var(--brand);
}

.stage {
  position: relative;
  min-height: 640px;
}

.product-frame {
  position: absolute;
  inset: 56px 0 28px 12%;
  border-radius: 28px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: var(--shadow-lg);
  border: 1px solid #e5e7eb;
}

.frame-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 16px;
  background: #111827;
}

.frame-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4b5563;
}

.frame-bar i:nth-child(1) { background: #f87171; }
.frame-bar i:nth-child(2) { background: #fbbf24; }
.frame-bar i:nth-child(3) { background: #34d399; }

.stage-photo {
  position: absolute;
  inset: 38px 0 0;
  overflow: hidden;
}

.stage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.stage-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(15, 23, 42, 0.35) 100%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.18), transparent 42%);
}

.chat {
  position: relative;
  width: min(360px, 100%);
  margin-top: 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: floaty 7s ease-in-out infinite;
  z-index: 2;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #f8fffd, #fff);
}

.chat-head img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.chat-head strong {
  display: block;
  font-size: 0.92rem;
}

.chat-head small {
  color: var(--muted);
  font-size: 0.75rem;
}

.online {
  color: var(--brand) !important;
}

.chat-body {
  padding: 16px;
  display: grid;
  gap: 12px;
  min-height: 320px;
  background: #f8fafb;
}

.bubble {
  max-width: 86%;
  padding: 11px 14px;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(8px);
}

.bubble.in {
  opacity: 1;
  transform: none;
  transition: 0.45s var(--ease);
}

.bot {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  border-bottom-left-radius: 6px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.user {
  justify-self: end;
  background: linear-gradient(180deg, #14b8a6, var(--brand-deep));
  color: #fff;
  border-bottom-right-radius: 6px;
}

.typing {
  display: flex;
  gap: 4px;
  padding: 12px 14px;
  width: fit-content;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.typing i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  animation: blink 1.2s infinite;
}

.typing i:nth-child(2) { animation-delay: 0.15s; }
.typing i:nth-child(3) { animation-delay: 0.3s; }

@keyframes blink {
  0%, 80%, 100% { opacity: 0.25; }
  40% { opacity: 1; }
}

.chat-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 14px 14px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  font-size: 0.82rem;
  background: #fff;
}

.send {
  margin-left: auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  animation: floaty 8s ease-in-out infinite;
  z-index: 3;
}

.float-card b {
  display: block;
  font-size: 0.84rem;
}

.float-card span {
  color: var(--muted);
  font-size: 0.72rem;
}

.float-card .dot {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.fc-1 { top: 18px; right: 0; animation-delay: -2s; }
.fc-2 { bottom: 86px; right: -8px; animation-delay: -4s; }
.fc-3 { bottom: 18px; left: 4px; }

.ok { background: var(--brand-dim); color: var(--brand-deep); }
.warn { background: var(--crimson-dim); color: var(--crimson); }
.info { background: #fff7ed; color: var(--gold); }

.marquee-wrap {
  margin-top: 64px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  white-space: nowrap;
  color: var(--ink-soft);
  font-size: 0.9rem;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.chip strong {
  color: var(--ink);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 52px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #cdeae4, transparent);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  padding: 28px 26px 26px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--display);
  font-weight: 900;
  font-size: 3.6rem;
  line-height: 1;
  color: rgba(13, 148, 136, 0.12);
  position: absolute;
  right: 16px;
  top: 8px;
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--bg-mint);
  color: var(--brand-deep);
  margin-bottom: 22px;
  border: 1px solid #d7efe9;
}

.step h3 {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.step p {
  color: var(--ink-soft);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.why-copy h2 {
  margin: 12px 0 18px;
}

.why-copy p + p {
  margin-top: 14px;
}

.why-copy p {
  color: var(--ink-soft);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.stat {
  padding: 18px 16px;
  border-radius: 18px;
  border: 1px solid #d7efe9;
  background: #fff;
}

.stat b {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--brand-deep);
}

.stat span {
  color: var(--muted);
  font-size: 0.82rem;
}

.media-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 520px;
  box-shadow: var(--shadow-lg);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.media-card figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.media-card figcaption strong {
  display: block;
}

.media-card figcaption span {
  color: var(--muted);
  font-size: 0.85rem;
}

.solution {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 40px;
  align-items: center;
  padding: 20px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: #fff;
  margin-bottom: 22px;
  box-shadow: var(--shadow);
}

.solution:nth-child(even) {
  grid-template-columns: 1.08fr 0.92fr;
}

.solution:nth-child(even) .solution-copy {
  order: 2;
}

.solution-visual {
  position: relative;
  min-height: 340px;
  border-radius: 24px;
  overflow: hidden;
}

.solution-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--ease);
}

.solution:hover .solution-visual img {
  transform: scale(1.05);
}

.solution-copy {
  padding-right: 16px;
}

.solution-copy h3 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.6vw, 2.25rem);
  margin: 10px 0 14px;
}

.solution-copy p {
  color: var(--ink-soft);
}

.solution-copy p + p {
  margin-top: 12px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--bg-mint);
  color: var(--brand-deep);
}

.bento {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-auto-rows: minmax(230px, auto);
  gap: 18px;
}

.tile {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  min-height: 0;
}

.tile.wide {
  grid-row: span 2;
}

.tile img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: 0.6s var(--ease);
}

.tile.wide img {
  height: 280px;
}

.tile:hover img {
  transform: scale(1.05);
}

.tile-body {
  padding: 22px 22px 24px;
  display: grid;
  gap: 8px;
  flex: 1;
}

.tile h3 {
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.tile p {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.plan {
  padding: 32px 28px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow);
}

.plan.featured {
  background: linear-gradient(180deg, #f3fbf9, #fff);
  border: 1px solid #99e6db;
  transform: translateY(-12px);
  box-shadow: 0 28px 70px rgba(13, 148, 136, 0.16);
}

.plan .price {
  font-family: var(--display);
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1;
}

.plan .price small {
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--muted);
}

.plan ul {
  display: grid;
  gap: 10px;
  color: var(--ink-soft);
  flex: 1;
}

.plan li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.plan li::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-top: 4px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='8' cy='8' r='8' fill='%230d9488' fill-opacity='.14'/%3E%3Cpath d='M4.5 8.2l2.2 2.2 4.8-4.8' stroke='%230d9488' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.badge {
  width: fit-content;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--brand-dim);
  color: var(--brand-deep);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-photo {
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.about p {
  color: var(--ink-soft);
}

.about p + p {
  margin-top: 14px;
}

.contact-card,
.form {
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.contact-list a,
.contact-list span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--bg-soft);
}

.contact-list small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.field input,
.field textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}

.cta-band {
  margin: 0 auto;
  width: min(1180px, calc(100% - 40px));
  border-radius: 32px;
  padding: 64px 56px;
  background:
    linear-gradient(120deg, rgba(15, 118, 110, 0.92), rgba(13, 148, 136, 0.88) 55%, rgba(217, 8, 60, 0.78)),
    url("https://images.pexels.com/photos/3184291/pexels-photo-3184291.jpeg?auto=compress&cs=tinysrgb&w=1600")
      center/cover;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.cta-band .eyebrow,
.cta-band .eyebrow::before,
.cta-band h2,
.cta-band .lede {
  color: #fff;
}

.cta-band .lede {
  opacity: 0.9;
}

.cta-band .eyebrow::before {
  background: #fff;
}

.cta-band h2 {
  max-width: 14ch;
  margin: 12px 0 18px;
}

.footer {
  padding: 72px 0 28px;
  border-top: 1px solid var(--line);
  margin-top: 72px;
  background: var(--bg-soft);
}

.footer .brand img {
  height: 44px;
  max-width: 260px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
}

.footer p {
  color: var(--muted);
  margin-top: 14px;
  max-width: 36ch;
}

.footer h4 {
  margin-bottom: 14px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.footer a {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.footer a:hover {
  color: var(--brand-deep);
}

.newsletter {
  display: flex;
  gap: 8px;
}

.newsletter input {
  flex: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  height: 46px;
}

.newsletter .btn {
  height: 46px;
}

.legal {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  width: min(480px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.modal-card h3 {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.85rem;
  margin-bottom: 8px;
}

.close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 70;
  background: #ecfdf8;
  color: var(--brand-deep);
  border: 1px solid #99e6db;
  padding: 14px 18px;
  border-radius: 14px;
  transform: translateY(20px);
  opacity: 0;
  transition: 0.35s var(--ease);
  box-shadow: var(--shadow);
}

.toast.show {
  transform: none;
  opacity: 1;
}

.legal-page {
  padding: calc(var(--nav-h) + 64px) 0 80px;
  background: #fff;
}

.legal-page h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 12px 0 24px;
}

.legal-page p,
.legal-page li {
  color: var(--ink-soft);
  margin-bottom: 12px;
  max-width: 70ch;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.9s var(--ease) forwards;
}

.d1 { animation-delay: 0.08s; }
.d2 { animation-delay: 0.16s; }
.d3 { animation-delay: 0.24s; }
.d4 { animation-delay: 0.32s; }
.d5 { animation-delay: 0.42s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero-layout,
  .why-grid,
  .split,
  .solution,
  .solution:nth-child(even),
  .plans,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .steps::before {
    display: none;
  }

  .solution:nth-child(even) .solution-copy {
    order: 0;
  }

  .plan.featured {
    transform: none;
  }

  .bento {
    grid-template-columns: 1fr;
  }

  .tile.wide {
    grid-row: auto;
  }

  .nav-links,
  .nav-cta .btn-ghost {
    display: none;
  }

  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 24px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    gap: 18px;
  }

  .nav-toggle {
    display: grid;
    align-content: center;
    justify-items: center;
  }

  .stage {
    min-height: 560px;
    margin-top: 12px;
  }

  .product-frame {
    inset: 48px 0 16px 0;
  }

  .hero {
    padding-top: calc(var(--nav-h) + 28px);
  }

  .cta-band {
    padding: 40px 24px;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 2.35rem;
  }

  .brand img {
    height: 32px;
    max-width: 170px;
  }

  .word-reel {
    min-width: 0;
  }

  .float-card {
    display: none;
  }

  .chat {
    width: 100%;
  }

  .legal {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .container {
    width: min(var(--container), calc(100% - 32px));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
