:root {
  --bg: #060606;
  --panel: #111;
  --panel-2: #171717;
  --white: #f7f7f2;
  --muted: #a6a6a0;
  --line: rgba(255,255,255,.1);
  --glass: rgba(255,255,255,.06);
  --soft: rgba(255,255,255,.78);
  --accent: #d9ff6a;
  --blue: #91b8ff;
  --radius: 30px;
  --shadow: 0 28px 90px rgba(0,0,0,.55);
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(255,255,255,.16), transparent 34rem),
    var(--bg);
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
}

body::selection {
  background: var(--white);
  color: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 40;
  width: min(1160px, calc(100vw - 36px));
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 14px 0 24px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  background: rgba(16,16,16,.76);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 18px 60px rgba(0,0,0,.42);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-size: 1.02rem;
  font-weight: 950;
  letter-spacing: -.055em;
}

.brand img {
  width: 46px;
  height: 40px;
  display: block;
}

.brand-word {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  white-space: nowrap;
}

.brand strong,
.brand em {
  font-style: normal;
}

.brand em {
  color: var(--accent);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(247,247,242,.68);
  font-size: .92rem;
  font-weight: 700;
}

.nav-services {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.nav-services::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -28px;
  right: -28px;
  height: 22px;
}

.services-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 80;
  width: min(680px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 16% 8%, rgba(217,255,106,.16), transparent 18rem),
    radial-gradient(circle at 92% 10%, rgba(145,184,255,.14), transparent 18rem),
    rgba(8,8,8,.96);
  box-shadow: 0 24px 80px rgba(0,0,0,.52), inset 0 1px 0 rgba(255,255,255,.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 6px) scale(.985);
  transform-origin: 50% 0;
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
}

.nav-services:hover .services-dropdown,
.nav-services:focus-within .services-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
  transition-delay: 0s;
}

.services-dropdown a {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  color: var(--white);
  text-decoration: none;
  background: rgba(255,255,255,.035);
}

.services-dropdown a:hover {
  transform: translateY(-2px);
  border-color: rgba(217,255,106,.35);
  background: rgba(255,255,255,.07);
}

.services-dropdown strong {
  font-size: .94rem;
  letter-spacing: -.02em;
}

.services-dropdown small {
  color: rgba(247,247,242,.64);
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.35;
}

.desktop-nav a,
.pill-button,
.primary-cta,
.secondary-cta,
.slider-arrow {
  transition: transform 240ms ease, background 240ms ease, color 240ms ease, border-color 240ms ease;
}

.desktop-nav a:hover,
.pill-button:hover,
.primary-cta:hover,
.secondary-cta:hover,
.slider-arrow:hover {
  transform: translateY(-2px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pill-button,
.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
}

.pill-button {
  min-height: 50px;
  padding: 0 24px;
  color: #080808;
  background: linear-gradient(135deg, #f4ff9a, var(--accent) 52%, #fff4b8);
  box-shadow: 0 16px 42px rgba(217,255,106,.18);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  padding: 150px max(6vw, 24px) 80px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 12%;
  z-index: -2;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.11), transparent 62%);
  filter: blur(24px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -5vw 0;
  z-index: -1;
  height: 36%;
  background: linear-gradient(transparent, #060606);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: rgba(247,247,242,.82);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  font-size: .82rem;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  letter-spacing: -.07em;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  font-size: clamp(4rem, 8.4vw, 8.8rem);
  line-height: .98;
  padding-right: .06em;
  padding-bottom: .06em;
}

#hero-title {
  max-width: 720px;
  font-size: clamp(3.55rem, 7.25vw, 7.35rem);
}

.text-gradient {
  display: inline-block;
  padding-right: .04em;
  padding-bottom: .08em;
  background: linear-gradient(105deg, #fff 0%, #fff 18%, var(--accent) 58%, #fff2a5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-content p,
.section-head p,
.final-cta p {
  width: min(760px, 100%);
  margin: 24px 0 0;
  color: rgba(247,247,242,.7);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 34px;
}

.primary-cta,
.secondary-cta {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 10px 0 24px;
}

.primary-cta {
  color: #080808;
  background: linear-gradient(135deg, #f8ffbe 0%, var(--accent) 48%, #fff5a7 100%);
  box-shadow: 0 20px 52px rgba(217,255,106,.22);
}

.primary-cta:hover,
.pill-button:hover {
  box-shadow: 0 24px 62px rgba(217,255,106,.3);
}

.secondary-cta {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}

.primary-cta span,
.secondary-cta span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0,0,0,.08);
}

.secondary-cta span {
  background: rgba(255,255,255,.1);
}

.hero-glow {
  position: absolute;
  inset: 16% 12%;
  z-index: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 42%, rgba(217,255,106,.14), transparent 28%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.11), transparent 58%);
  filter: blur(18px);
  pointer-events: none;
}

.hero-proof {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: min(680px, calc(100vw - 48px));
  margin: 44px auto 0;
}

.hero-showreel {
  position: relative;
  z-index: 2;
  min-height: min(660px, calc(100svh - 190px));
  overflow: hidden;
  border-radius: 42px;
  contain: layout paint;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 10%, #000 88%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 10%, #000 88%, transparent 100%);
}

.hero-showreel::before {
  content: "";
  position: absolute;
  inset: 7% 10%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.16), transparent 52%),
    radial-gradient(circle at 70% 34%, rgba(217,255,106,.16), transparent 34%);
  filter: blur(26px);
}

.hero-showreel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(6,6,6,.66), transparent 26%, transparent 78%, rgba(6,6,6,.52)),
    linear-gradient(180deg, rgba(6,6,6,.28), transparent 32%, rgba(6,6,6,.34));
  pointer-events: none;
}

.showreel-rail {
  position: absolute;
  display: grid;
  gap: 24px;
  width: 52%;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.rail-one {
  left: 3%;
  top: -42%;
  animation: showreelRise 44s linear infinite;
}

.rail-two {
  right: 2%;
  top: -30%;
  animation: showreelDrop 52s linear infinite;
}

.reel-item {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.035));
  box-shadow: 0 28px 80px rgba(0,0,0,.5);
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.reel-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  filter: saturate(.88) brightness(.84);
}

.reel-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
}

.reel-item > span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  width: fit-content;
  padding: 10px 13px;
  border-radius: 999px;
  color: #080808;
  background: rgba(255,255,255,.9);
  font-size: .78rem;
  font-weight: 900;
}

.website-shot {
  aspect-ratio: 1.28;
  padding: 16px;
}

.website-shot img {
  border: 7px solid rgba(255,255,255,.88);
  border-radius: 22px;
}

.phone-shot {
  aspect-ratio: .78;
  width: 78%;
  justify-self: end;
}

.phone-shot::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 5px solid rgba(255,255,255,.86);
  border-radius: 30px;
  pointer-events: none;
}

.assistant-shot,
.automation-shot {
  min-height: 260px;
  display: grid;
  align-content: center;
  padding: 22px;
}

.assistant-window {
  display: grid;
  gap: 12px;
}

.assistant-window span,
.assistant-window b {
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 900;
}

.assistant-window span {
  color: rgba(247,247,242,.72);
  background: rgba(255,255,255,.08);
}

.assistant-window p {
  width: fit-content;
  max-width: 88%;
  margin: 0;
  padding: 12px 14px;
  border-radius: 18px;
  color: #080808;
  background: rgba(255,255,255,.92);
  font-size: .86rem;
  font-weight: 800;
  animation: assistantBubble 4200ms ease-in-out infinite;
}

.assistant-window p:nth-of-type(2) {
  justify-self: end;
  color: var(--white);
  background: rgba(217,255,106,.18);
  animation-delay: 900ms;
}

.assistant-window b {
  color: #080808;
  background: var(--accent);
  animation: leadPulse 2200ms ease-in-out infinite;
}

.automation-mini {
  display: grid;
  gap: 14px;
}

.automation-mini span {
  position: relative;
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 16px 0 42px;
  border-radius: 999px;
  color: rgba(247,247,242,.86);
  background: rgba(255,255,255,.08);
  font-size: .86rem;
  font-weight: 900;
  overflow: hidden;
}

.automation-mini span::before {
  content: "";
  position: absolute;
  left: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.automation-mini span::after {
  content: "";
  position: absolute;
  inset: 0 100% 0 0;
  background: linear-gradient(90deg, rgba(217,255,106,.18), transparent);
  animation: automateRow 3600ms ease-in-out infinite;
}

.automation-mini span:nth-child(2)::after { animation-delay: 420ms; }
.automation-mini span:nth-child(3)::after { animation-delay: 840ms; }

.hero-proof div {
  min-height: 150px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 20px 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0, rgba(217,255,106,.12), transparent 54%),
    rgba(255,255,255,.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 18px 52px rgba(0,0,0,.26);
}

.hero-proof strong {
  display: block;
  color: var(--white);
  font-size: clamp(3.4rem, 6.6vw, 6.85rem);
  letter-spacing: -.08em;
  line-height: .78;
}

.stat-number,
.stat-ai {
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
}

.stat-ai {
  background: linear-gradient(90deg, var(--white), var(--accent), var(--white));
  background-size: 210% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: aiShine 2600ms ease-in-out infinite;
}

.hero-proof div > span {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
  letter-spacing: .04em;
}

section:not(.hero) {
  padding: 110px max(6vw, 24px);
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 42px;
}

.section-head.center {
  justify-items: center;
  text-align: center;
}

.section-head .eyebrow {
  margin-bottom: 0;
}

h2 {
  max-width: 1000px;
  font-size: clamp(2.7rem, 6.4vw, 6.8rem);
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.center h2 {
  margin-inline: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.work-card,
.process-steps article,
.faq-list details,
.contact-modal {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 18px 70px rgba(0,0,0,.38);
}

.service-card {
  min-height: 710px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 310px 112px 60px 1fr auto;
  align-content: stretch;
  padding: 28px;
  position: relative;
  isolation: isolate;
  transition:
    opacity 780ms ease,
    transform 880ms cubic-bezier(.2,.7,.2,1),
    border-color 300ms ease,
    box-shadow 300ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 20%, rgba(255,255,255,.16), transparent 38%);
  opacity: .66;
  transition: transform 600ms ease, opacity 600ms ease;
}

.service-card:hover::before {
  opacity: 1;
  transform: scale(1.08);
}

.js-ready .service-card {
  opacity: 0;
  transform: translateY(42px) scale(.965);
}

.service-card.service-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: serviceCardIn 880ms cubic-bezier(.2,.7,.2,1) both;
}

.service-card.service-visible:hover {
  border-color: rgba(217,255,106,.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 24px 80px rgba(0,0,0,.46);
  transform: translateY(-8px) scale(1.01);
}

.service-card.service-visible .service-visual {
  animation: serviceVisualIn 900ms cubic-bezier(.2,.7,.2,1) both;
}

.service-card:nth-child(2).service-visible { animation-delay: 80ms; }
.service-card:nth-child(3).service-visible { animation-delay: 160ms; }
.service-card:nth-child(4).service-visible { animation-delay: 80ms; }
.service-card:nth-child(5).service-visible { animation-delay: 160ms; }
.service-card:nth-child(6).service-visible { animation-delay: 240ms; }
.service-card:nth-child(2).service-visible .service-visual { animation-delay: 80ms; }
.service-card:nth-child(3).service-visible .service-visual { animation-delay: 160ms; }
.service-card:nth-child(4).service-visible .service-visual { animation-delay: 80ms; }
.service-card:nth-child(5).service-visible .service-visual { animation-delay: 160ms; }
.service-card:nth-child(6).service-visible .service-visual { animation-delay: 240ms; }

.service-card h3 {
  margin-top: 24px;
  font-size: clamp(1.65rem, 2vw, 2.35rem);
  letter-spacing: -.045em;
  line-height: 1.05;
}

.service-card p,
.process-steps p,
.faq-list p {
  margin-top: 10px;
  color: rgba(247,247,242,.7);
  line-height: 1.55;
}

.service-card .service-card-lede {
  color: #f7f7f2;
  font-weight: 700;
  line-height: 1.45;
}

.service-learn-link {
  display: inline-flex;
  align-items: center;
  align-self: end;
  gap: 8px;
  width: fit-content;
  margin-top: 18px;
  color: var(--lime);
  font-weight: 800;
  font-size: .92rem;
  text-decoration: none;
  transition: transform .22s ease, color .22s ease;
}

.service-learn-link:hover {
  color: #fff;
  transform: translateX(4px);
}

.about-team {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,0)),
    radial-gradient(circle at 80% 18%, rgba(145,184,255,.13), transparent 30rem);
}

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

.team-card {
  position: relative;
  min-height: 600px;
  display: grid;
  grid-template-rows: 370px 1fr;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 18px 70px rgba(0,0,0,.38);
  transition: opacity 820ms ease, transform 920ms cubic-bezier(.2,.7,.2,1);
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(217,255,106,.15), transparent 24rem),
    radial-gradient(circle at 88% 4%, rgba(145,184,255,.18), transparent 20rem);
  opacity: .88;
}

.cristobal-card::before {
  background:
    radial-gradient(circle at 20% 10%, rgba(145,184,255,.18), transparent 23rem),
    radial-gradient(circle at 90% 30%, rgba(217,255,106,.13), transparent 20rem);
}

.team-portrait,
.team-copy {
  position: relative;
  z-index: 1;
}

.team-portrait {
  display: grid;
  place-items: center;
  width: min(360px, calc(100% - 36px));
  height: min(360px, calc(100vw - 36px));
  aspect-ratio: 1;
  margin: 18px auto 0;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(247,247,242,.11), rgba(247,247,242,.025)),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.18), transparent 18rem);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.team-portrait span {
  display: grid;
  place-items: center;
  width: clamp(118px, 18vw, 168px);
  aspect-ratio: 1;
  border-radius: 50%;
  color: #080808;
  background: linear-gradient(135deg, var(--white), var(--accent));
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  font-weight: 950;
  letter-spacing: -.08em;
  box-shadow: 0 24px 70px rgba(0,0,0,.32);
}

.photo-portrait {
  padding: 0;
  overflow: hidden;
}

.photo-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 36%;
  border-radius: inherit;
  filter: saturate(1.04) contrast(1.02);
  transition: opacity 860ms ease, transform 980ms cubic-bezier(.2,.7,.2,1);
}

.gabriel-portrait img {
  object-position: 50% 34%;
}

.cristobal-card .photo-portrait img {
  object-position: 50% 50%;
}

.js-ready .team-card {
  opacity: 0;
}

.js-ready .gabriel-card {
  transform: translateX(-62px);
}

.js-ready .cristobal-card {
  transform: translateX(62px);
}

.team-card.card-visible {
  opacity: 1;
  transform: translateX(0);
}

.cristobal-card.card-visible {
  transition-delay: 110ms;
}

.js-ready .gabriel-portrait img {
  opacity: 0;
  transform: translateX(-32px) scale(1.06);
}

.js-ready .cristobal-card .photo-portrait img {
  opacity: 0;
  transform: translateX(32px) scale(1.34);
}

.team-card.card-visible .photo-portrait img {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.cristobal-card.card-visible .photo-portrait img {
  transform: translateX(0) scale(1.06);
  transition-delay: 180ms;
}

.team-copy {
  padding: 28px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
}

.team-role {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  color: rgba(247,247,242,.7);
  background: rgba(0,0,0,.22);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.team-copy h3 {
  font-size: clamp(2rem, 3.6vw, 4rem);
  letter-spacing: -.06em;
}

.team-copy p {
  margin-top: 12px;
  color: rgba(247,247,242,.72);
  line-height: 1.62;
}

.team-copy a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 20px;
  color: var(--accent);
  font-size: .88rem;
  font-weight: 900;
}

.cristobal-card .team-copy a {
  display: flex;
}

.cristobal-card .team-copy a + a {
  margin-top: 10px;
}

.team-systems {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.team-systems span {
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  color: rgba(247,247,242,.76);
  background: rgba(255,255,255,.055);
  font-size: .82rem;
  font-weight: 900;
}

.service-visual {
  height: 310px;
  min-height: 310px;
  position: relative;
  border-radius: 24px;
  background: rgba(0,0,0,.22);
  overflow: hidden;
}

.website-chatbot-visual,
.whatsapp-assistant-visual,
.receptionist-visual,
.quote-assistant-visual,
.review-reminder-visual {
  display: grid;
  place-items: center;
  padding: 22px;
}

.website-chatbot-visual {
  padding: 14px;
  background:
    radial-gradient(circle at 18% 14%, rgba(217,255,106,.18), transparent 34%),
    radial-gradient(circle at 88% 86%, rgba(145,184,255,.14), transparent 34%),
    rgba(0,0,0,.22);
}

.chatbot-browser {
  position: relative;
  width: min(390px, 100%);
  min-height: 216px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    #080808;
  box-shadow: 0 28px 80px rgba(0,0,0,.42);
  transform: perspective(900px) rotateX(4deg) rotateY(-5deg);
  animation: deviceFloat 5200ms ease-in-out infinite;
}

.mini-browser-bar {
  height: 32px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.055);
}

.mini-browser-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
}

.mini-browser-bar span {
  margin-left: auto;
  color: rgba(247,247,242,.46);
  font-size: .58rem;
  font-weight: 900;
}

.chatbot-site-preview {
  display: grid;
  gap: 9px;
  width: 64%;
  min-height: 178px;
  align-content: center;
  padding: 22px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035), transparent 72%),
    radial-gradient(circle at 22% 72%, rgba(217,255,106,.08), transparent 36%);
}

.chatbot-site-preview > span {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  color: #101010;
  background: var(--accent);
  font-size: .52rem;
  font-weight: 950;
  text-transform: uppercase;
}

.chatbot-site-preview strong {
  color: rgba(247,247,242,.95);
  font-size: 1.32rem;
  line-height: .96;
  font-weight: 950;
  letter-spacing: -.05em;
}

.site-cta-row {
  display: flex;
  gap: 6px;
  margin-top: 3px;
}

.site-cta-row b {
  padding: 7px 8px;
  border-radius: 999px;
  color: rgba(247,247,242,.82);
  background: rgba(255,255,255,.1);
  font-size: .52rem;
  font-weight: 950;
}

.site-cta-row b:first-child {
  color: #101010;
  background: var(--accent);
}

.chat-widget {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: min(218px, 74%);
  display: grid;
  gap: 7px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(12,16,12,.9);
  box-shadow: 0 18px 48px rgba(0,0,0,.36);
  backdrop-filter: blur(14px);
}

.chat-widget-head {
  display: flex;
  align-items: center;
  gap: 7px;
}

.chat-widget-head span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 42%, #101010 0 3px, transparent 4px),
    var(--accent);
  box-shadow: 0 0 22px rgba(217,255,106,.28);
}

.chat-widget b {
  color: var(--accent);
  font-size: .58rem;
  font-weight: 950;
  text-transform: uppercase;
}

.chat-widget p {
  margin: 0;
  width: fit-content;
  max-width: 94%;
  padding: 8px 10px;
  border-radius: 13px;
  color: rgba(247,247,242,.9);
  background: rgba(255,255,255,.1);
  font-size: .64rem;
  font-weight: 900;
  opacity: 0;
  animation: chatIn 5200ms ease-in-out infinite;
}

.chat-widget p:nth-child(3) {
  justify-self: end;
  color: #101010;
  background: var(--accent);
  animation-delay: 700ms;
}

.chat-widget p:nth-child(4) {
  color: var(--white);
  background: rgba(255,255,255,.1);
  animation-delay: 1400ms;
}

.chat-widget small {
  width: fit-content;
  margin-top: 2px;
  padding: 7px 9px;
  border-radius: 999px;
  color: #101010;
  background: var(--accent);
  font-size: .54rem;
  font-weight: 950;
  animation: conversionPulse 1900ms ease-in-out infinite;
}

.whatsapp-assistant-visual {
  background:
    radial-gradient(circle at 46% 24%, rgba(37,211,102,.22), transparent 38%),
    radial-gradient(circle at 82% 88%, rgba(217,255,106,.13), transparent 34%),
    rgba(0,0,0,.22);
}

.whatsapp-phone {
  position: relative;
  width: min(210px, 74%);
  min-height: 264px;
  padding: 16px 12px 12px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.88), rgba(68,68,64,.82));
  box-shadow: 0 32px 90px rgba(0,0,0,.58), 0 0 0 8px rgba(255,255,255,.035);
  transform: perspective(850px) rotateX(4deg) rotateY(7deg) rotate(-3deg);
  animation: phoneFloat 5200ms ease-in-out infinite;
}

.phone-speaker {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 54px;
  height: 15px;
  border-radius: 999px;
  background: #0b0b0b;
  transform: translateX(-50%);
}

.whatsapp-header,
.whatsapp-thread {
  position: relative;
  z-index: 2;
}

.whatsapp-header {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  padding: 11px;
  border-radius: 22px 22px 12px 12px;
  color: var(--white);
  background: #075e54;
}

.whatsapp-header > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #075e54;
  background: #25d366;
  font-size: .58rem;
  font-weight: 950;
}

.whatsapp-header strong,
.whatsapp-header small {
  display: block;
}

.whatsapp-header strong {
  font-size: .66rem;
  font-weight: 950;
}

.whatsapp-header small {
  color: rgba(255,255,255,.64);
  font-size: .54rem;
  font-weight: 900;
}

.whatsapp-thread {
  display: grid;
  gap: 8px;
  min-height: 174px;
  padding: 12px 10px;
  border-radius: 0 0 22px 22px;
  background:
    radial-gradient(circle at 12px 12px, rgba(255,255,255,.08) 0 2px, transparent 3px),
    #0b1714;
  background-size: 22px 22px;
}

.whatsapp-thread p {
  width: fit-content;
  max-width: 84%;
  margin: 0;
  padding: 9px 10px;
  border-radius: 13px;
  color: var(--white);
  background: rgba(255,255,255,.1);
  font-size: .62rem;
  font-weight: 900;
  opacity: 0;
  animation: chatIn 5600ms ease-in-out infinite;
}

.whatsapp-thread p:nth-child(2),
.whatsapp-thread p:nth-child(4) {
  justify-self: end;
  color: #08251b;
  background: #dcf8c6;
}

.whatsapp-thread p:nth-child(2) { animation-delay: 700ms; }
.whatsapp-thread p:nth-child(3) { animation-delay: 1400ms; }
.whatsapp-thread p:nth-child(4) { animation-delay: 2100ms; }

.receptionist-visual {
  background:
    radial-gradient(circle at 18% 18%, rgba(217,255,106,.16), transparent 34%),
    radial-gradient(circle at 82% 84%, rgba(145,184,255,.16), transparent 36%),
    rgba(0,0,0,.22);
}

.phone-reception-card {
  width: min(330px, 100%);
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  background: rgba(8,8,8,.64);
  box-shadow: 0 28px 76px rgba(0,0,0,.38);
  backdrop-filter: blur(14px);
  transform: perspective(900px) rotateX(4deg) rotateY(5deg);
  animation: deviceFloat 5600ms ease-in-out infinite;
}

.call-screen {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 13px;
  align-items: center;
  min-height: 84px;
  padding: 12px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
}

.call-avatar {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(217,255,106,.08), 0 0 32px rgba(217,255,106,.26);
  animation: conversionPulse 1900ms ease-in-out infinite;
}

.call-avatar span {
  width: 24px;
  height: 24px;
  border: 4px solid #101010;
  border-top-color: transparent;
  border-radius: 50%;
  transform: rotate(-38deg);
}

.call-screen span,
.call-screen small {
  color: rgba(247,247,242,.58);
  font-size: .58rem;
  font-weight: 900;
  text-transform: uppercase;
}

.call-screen strong {
  display: block;
  margin: 2px 0;
  color: var(--white);
  font-size: 1.18rem;
  line-height: 1;
  font-weight: 950;
}

.voice-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
}

.voice-wave i {
  width: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), rgba(255,255,255,.54));
  animation: appBarRise 1500ms ease-in-out infinite;
}

.voice-wave i:nth-child(1) { height: 14px; }
.voice-wave i:nth-child(2) { height: 26px; animation-delay: 120ms; }
.voice-wave i:nth-child(3) { height: 34px; animation-delay: 240ms; }
.voice-wave i:nth-child(4) { height: 24px; animation-delay: 360ms; }
.voice-wave i:nth-child(5) { height: 16px; animation-delay: 480ms; }

.call-notes {
  display: grid;
  gap: 7px;
}

.call-notes p {
  margin: 0;
  padding: 9px 10px;
  border-radius: 14px;
  color: rgba(247,247,242,.82);
  background: rgba(255,255,255,.075);
  font-size: .64rem;
  font-weight: 900;
}

.call-notes p:last-child {
  margin-left: 24px;
  color: #101010;
  background: #fff;
}

.call-actions {
  display: flex;
  gap: 8px;
}

.call-actions span {
  flex: 1;
  min-height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #101010;
  background: var(--accent);
  font-size: .58rem;
  font-weight: 950;
}

.call-actions span:last-child {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

.quote-assistant-visual {
  background:
    radial-gradient(circle at 22% 18%, rgba(217,255,106,.16), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(0,0,0,.3));
}

.quote-form-card {
  width: min(330px, 100%);
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 26px;
  background: rgba(8,8,8,.68);
  box-shadow: 0 24px 70px rgba(0,0,0,.38);
  backdrop-filter: blur(14px);
  transform: perspective(900px) rotateX(4deg) rotateY(-5deg);
  animation: deviceFloat 5600ms ease-in-out infinite;
}

.quote-head,
.quote-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.quote-head {
  padding-bottom: 6px;
  color: var(--white);
  font-size: .76rem;
  font-weight: 950;
}

.quote-head b {
  padding: 7px 10px;
  border-radius: 999px;
  color: #101010;
  background: var(--accent);
  font-size: .56rem;
  font-weight: 950;
}

.quote-field {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 15px;
  background: rgba(255,255,255,.07);
  overflow: hidden;
  position: relative;
  opacity: .58;
  transform: translateY(4px);
  animation: quoteFieldIn 5200ms ease-in-out infinite;
}

.quote-field::after {
  content: "";
  position: absolute;
  inset: 0 100% 0 0;
  background: linear-gradient(90deg, rgba(217,255,106,.14), transparent);
  animation: automateRow 4200ms ease-in-out infinite;
}

.quote-field:nth-child(3)::after { animation-delay: 450ms; }
.quote-field:nth-child(4)::after { animation-delay: 900ms; }
.quote-field:nth-child(5)::after { animation-delay: 1350ms; }
.quote-field:nth-child(6)::after { animation-delay: 1800ms; }

.quote-field:nth-child(3) { animation-delay: 450ms; }
.quote-field:nth-child(4) { animation-delay: 900ms; }
.quote-field:nth-child(5) { animation-delay: 1350ms; }
.quote-field:nth-child(6) { animation-delay: 1800ms; }

.quote-field span {
  color: rgba(247,247,242,.5);
  font-size: .62rem;
  font-weight: 900;
}

.quote-field strong {
  display: inline-block;
  color: var(--white);
  font-size: .68rem;
  font-weight: 950;
  animation: quoteNumberPulse 5200ms ease-in-out infinite;
}

.quote-field:nth-child(3) strong { animation-delay: 450ms; }
.quote-field:nth-child(4) strong { animation-delay: 900ms; }
.quote-field:nth-child(5) strong { animation-delay: 1350ms; }
.quote-field:nth-child(6) strong { animation-delay: 1800ms; }

.quote-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 58px;
  margin-top: 2px;
  padding: 12px 14px;
  border-radius: 20px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 20%, rgba(217,255,106,.26), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.045));
  box-shadow: 0 18px 44px rgba(217,255,106,.18);
  transform-origin: center;
  animation: quoteTotalReady 5200ms ease-in-out infinite;
}

.quote-total > span {
  max-width: 92px;
  color: rgba(247,247,242,.66);
  font-size: .62rem;
  font-weight: 950;
  text-transform: uppercase;
  line-height: 1.1;
}

.quote-total strong {
  display: inline-block;
  color: var(--white);
  font-size: 2.18rem;
  line-height: .9;
  letter-spacing: -.07em;
  font-weight: 950;
  text-shadow: 0 0 24px rgba(217,255,106,.22);
  animation: quoteAmountTick 5200ms ease-in-out infinite;
}

.quote-amount {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}

.review-reminder-visual {
  background:
    radial-gradient(circle at 50% 20%, rgba(217,255,106,.18), transparent 38%),
    radial-gradient(circle at 85% 86%, rgba(145,184,255,.12), transparent 34%),
    rgba(0,0,0,.22);
}

.review-flow-card {
  width: min(330px, 100%);
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 13px;
  align-items: center;
}

.calendar-tile,
.review-request {
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.035));
  box-shadow: 0 24px 62px rgba(0,0,0,.32);
}

.calendar-tile {
  min-height: 164px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 18px;
  border-radius: 25px;
  animation: ticketPop 3200ms ease-in-out infinite;
}

.calendar-tile span,
.calendar-tile small,
.review-request span {
  color: rgba(247,247,242,.6);
  font-size: .62rem;
  font-weight: 900;
  text-transform: uppercase;
}

.calendar-tile strong {
  color: var(--white);
  font-size: 2rem;
  line-height: .92;
  font-weight: 950;
}

.review-request {
  display: grid;
  gap: 9px;
  padding: 15px;
  border-radius: 23px;
}

.review-request p {
  margin: 0;
  color: rgba(247,247,242,.84);
  font-size: .72rem;
  line-height: 1.35;
  font-weight: 850;
}

.stars {
  width: fit-content;
  padding: 8px 10px;
  border-radius: 999px;
  color: #101010;
  background: var(--accent);
  font-size: .76rem;
  letter-spacing: .04em;
  font-weight: 950;
  animation: conversionPulse 1900ms ease-in-out infinite;
}

.search-visual {
  display: grid;
  align-items: end;
  padding: 18px;
  background:
    radial-gradient(circle at 18% 18%, rgba(217,255,106,.18), transparent 30%),
    radial-gradient(circle at 84% 10%, rgba(145,184,255,.16), transparent 28%),
    rgba(0,0,0,.22);
}

.keyword-cloud {
  position: absolute;
  inset: 16px 14px auto;
  min-height: 70px;
}

.keyword-cloud span {
  position: absolute;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(247,247,242,.62);
  font-size: .72rem;
  font-weight: 900;
  animation: keywordFloat 4200ms ease-in-out infinite;
}

.keyword-cloud span:nth-child(1) {
  left: 0;
  top: 0;
}

.keyword-cloud span:nth-child(2) {
  right: 10px;
  top: 8px;
  animation-delay: 500ms;
}

.keyword-cloud span:nth-child(3) {
  left: 34%;
  top: 38px;
  animation-delay: 900ms;
}

.keyword-cloud span:nth-child(4) {
  right: 0;
  top: 58px;
  animation-delay: 1300ms;
}

.ranking-panel {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  background: rgba(8,8,8,.62);
  box-shadow: 0 22px 70px rgba(0,0,0,.34);
  backdrop-filter: blur(14px);
}

.search-bar {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(247,247,242,.62);
  background: rgba(255,255,255,.08);
  font-size: .72rem;
  font-weight: 900;
}

.search-bar i {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(247,247,242,.72);
  border-radius: 50%;
  position: relative;
}

.search-bar i::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 7px;
  height: 2px;
  border-radius: 999px;
  background: rgba(247,247,242,.72);
  transform: rotate(45deg);
}

.rank-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 46px;
  padding: 8px 10px;
  border-radius: 16px;
  background: rgba(255,255,255,.055);
  opacity: .62;
}

.rank-row.first {
  color: #101010;
  background: linear-gradient(135deg, #ffffff, var(--accent));
  opacity: 1;
  box-shadow: 0 16px 44px rgba(217,255,106,.18);
  animation: rankFirst 2600ms ease-in-out infinite;
}

.rank-row b {
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: -.04em;
}

.rank-row strong,
.rank-row small {
  display: block;
}

.rank-row strong {
  font-size: .8rem;
  font-weight: 950;
}

.rank-row small {
  margin-top: 2px;
  color: inherit;
  font-size: .66rem;
  line-height: 1.15;
  opacity: .68;
}

.website-stack {
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(circle at 18% 14%, rgba(217,255,106,.13), transparent 30%),
    radial-gradient(circle at 88% 84%, rgba(145,184,255,.11), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(0,0,0,.3));
}

.premium-web-preview {
  position: relative;
  width: min(360px, 100%);
  min-height: 184px;
  display: grid;
  align-content: center;
}

.web-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: #080808;
  box-shadow: 0 28px 80px rgba(0,0,0,.5), 0 0 0 8px rgba(255,255,255,.035);
  transform: perspective(900px) rotateX(5deg) rotateY(-7deg);
  animation: deviceFloat 5200ms ease-in-out infinite;
}

.web-window::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0 35%, rgba(255,255,255,.16) 44%, transparent 55% 100%);
  transform: translateX(-120%);
  animation: glassSweep 4600ms ease-in-out infinite;
}

.web-window-bar {
  height: 32px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.055);
}

.web-window-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
}

.web-window-bar span {
  margin-left: auto;
  color: rgba(247,247,242,.44);
  font-size: .58rem;
  font-weight: 900;
}

.web-hero-preview {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 10px;
  min-height: 138px;
  padding: 14px;
}

.web-copy-preview {
  display: grid;
  align-content: center;
  gap: 7px;
}

.web-copy-preview small {
  color: var(--accent);
  font-size: .52rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.web-copy-preview strong {
  color: var(--white);
  font-size: 1.18rem;
  line-height: .94;
  letter-spacing: -.07em;
}

.web-copy-preview p {
  margin: 0;
  color: rgba(247,247,242,.52);
  font-size: .58rem;
  line-height: 1.32;
}

.web-buttons {
  display: flex;
  gap: 6px;
}

.web-buttons b {
  padding: 7px 9px;
  border-radius: 999px;
  color: #101010;
  background: var(--accent);
  font-size: .52rem;
  font-weight: 950;
}

.web-buttons b:last-child {
  color: var(--white);
  background: rgba(255,255,255,.12);
}

.web-media-preview {
  position: relative;
  overflow: hidden;
  min-height: 110px;
  border-radius: 18px;
}

.web-media-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.96) brightness(.78);
}

.web-media-preview::after {
  content: "";
  position: absolute;
  inset: auto 10px 10px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 14px 32px rgba(0,0,0,.18);
}

.web-proof-strip {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: -18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(14,14,14,.82);
  box-shadow: 0 18px 48px rgba(0,0,0,.34);
  backdrop-filter: blur(12px);
}

.web-proof-strip span {
  min-height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: rgba(247,247,242,.72);
  font-size: .52rem;
  font-weight: 950;
}

.app-grid {
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 28%, rgba(217,255,106,.12), transparent 42%),
    radial-gradient(circle at 78% 82%, rgba(145,184,255,.15), transparent 36%),
    rgba(0,0,0,.22);
}

.app-phone {
  position: relative;
  width: min(198px, 74%);
  aspect-ratio: .52;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(255,255,255,.86), rgba(70,70,66,.78));
  box-shadow: 0 32px 90px rgba(0,0,0,.58), 0 0 0 8px rgba(255,255,255,.035);
  transform: perspective(800px) rotateX(4deg) rotateY(8deg) rotate(-3deg);
  animation: phoneFloat 5200ms ease-in-out infinite;
}

.app-notch {
  position: absolute;
  top: 11px;
  left: 50%;
  z-index: 3;
  width: 54px;
  height: 16px;
  border-radius: 999px;
  background: #0b0b0b;
  transform: translateX(-50%);
}

.app-screen {
  height: 100%;
  overflow: hidden;
  display: grid;
  gap: 9px;
  align-content: start;
  padding: 30px 11px 10px;
  border-radius: 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 0%, rgba(217,255,106,.24), transparent 30%),
    linear-gradient(180deg, #111, #050505);
}

.app-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .68rem;
  font-weight: 900;
}

.app-top div {
  display: grid;
  gap: 1px;
}

.app-top small,
.app-dashboard-card small,
.app-task small {
  color: rgba(247,247,242,.45);
  font-size: .55rem;
  font-weight: 900;
}

.app-top b {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #101010;
  background: var(--accent);
  font-size: .56rem;
}

.app-dashboard-card {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 10px;
  min-height: 92px;
  align-items: end;
  padding: 13px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 22px;
  background:
    radial-gradient(circle at 22% 12%, rgba(217,255,106,.18), transparent 35%),
    linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.app-dashboard-card span {
  color: rgba(247,247,242,.52);
  font-size: .55rem;
  font-weight: 900;
  text-transform: uppercase;
}

.app-dashboard-card strong {
  color: var(--white);
  font-size: 1.18rem;
  letter-spacing: -.06em;
}

.app-chart {
  height: 58px;
  display: flex;
  align-items: end;
  gap: 5px;
}

.app-chart i {
  flex: 1;
  border-radius: 999px 999px 5px 5px;
  background: linear-gradient(180deg, var(--accent), rgba(255,255,255,.36));
  animation: appBarRise 2600ms ease-in-out infinite;
}

.app-chart i:nth-child(1) { height: 34%; }
.app-chart i:nth-child(2) { height: 58%; animation-delay: 120ms; }
.app-chart i:nth-child(3) { height: 76%; animation-delay: 240ms; }
.app-chart i:nth-child(4) { height: 100%; animation-delay: 360ms; }

.app-dashboard-card small {
  color: rgba(247,247,242,.58);
}

.app-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.app-metrics div {
  min-height: 54px;
  display: grid;
  align-content: center;
  padding: 9px;
  border-radius: 17px;
  background: rgba(255,255,255,.075);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}

.app-metrics strong {
  font-size: 1.18rem;
  letter-spacing: -.06em;
  line-height: .9;
}

.app-metrics span {
  color: rgba(247,247,242,.5);
  font-size: .56rem;
  font-weight: 900;
}

.app-list {
  display: grid;
  gap: 7px;
}

.app-task {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 9px;
  border-radius: 15px;
  background: rgba(255,255,255,.07);
  transform: translateX(0);
  animation: taskSlide 3600ms ease-in-out infinite;
}

.app-task:nth-of-type(2) {
  animation-delay: 700ms;
}

.app-task.active {
  background: rgba(217,255,106,.16);
}

.app-task span {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(217,255,106,.35);
}

.app-task p {
  margin: 0;
  flex: 1;
  color: var(--white);
  font-size: .6rem;
  font-weight: 900;
}

.app-tabbar {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
}

.app-tabbar i {
  width: 19px;
  height: 5px;
  border-radius: 999px;
  background: rgba(247,247,242,.26);
  animation: tabPulse 1800ms ease-in-out infinite;
}

.app-tabbar i.active {
  background: var(--accent);
}

.app-tabbar i:nth-child(2) {
  animation-delay: 160ms;
}

.app-tabbar i:nth-child(3) {
  animation-delay: 320ms;
}

.automation-flow {
  padding: 22px;
}

.automation-board {
  display: grid;
  gap: 12px;
}

.automation-board span {
  position: relative;
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 0 14px 0 36px;
  border-radius: 999px;
  color: rgba(247,247,242,.78);
  background: rgba(255,255,255,.07);
  font-size: .78rem;
  font-weight: 900;
  overflow: hidden;
}

.automation-board span::before {
  content: "";
  position: absolute;
  left: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(217,255,106,.45);
}

.automation-board span::after {
  content: "";
  position: absolute;
  inset: 0 100% 0 0;
  background: linear-gradient(90deg, rgba(217,255,106,.18), transparent);
  animation: automateRow 3600ms ease-in-out infinite;
}

.automation-board span:nth-child(2)::after { animation-delay: 420ms; }
.automation-board span:nth-child(3)::after { animation-delay: 840ms; }
.automation-board span:nth-child(4)::after { animation-delay: 1260ms; }

.chat-visual {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 28px;
  background:
    radial-gradient(circle at 18% 12%, rgba(37, 211, 102, .2), transparent 34%),
    rgba(0,0,0,.22);
}

.chat-visual p {
  opacity: 0;
  width: fit-content;
  max-width: 84%;
  margin: 0;
  padding: 14px 16px;
  border-radius: 20px;
  color: #080808;
  background: #fff;
  font-weight: 800;
  animation: chatIn 5200ms ease-in-out infinite;
}

.chat-visual p:nth-child(2) {
  justify-self: end;
  color: var(--white);
  background: rgba(255,255,255,.12);
}

.chat-visual p:nth-child(2) { animation-delay: 800ms; }
.chat-visual p:nth-child(3) { animation-delay: 1600ms; }
.chat-visual p:nth-child(4) {
  justify-self: end;
  color: var(--white);
  background: rgba(37, 211, 102, .28);
  animation-delay: 2400ms;
}

.polish-visual {
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 28%, rgba(217,255,106,.22), transparent 42%),
    rgba(0,0,0,.22);
}

.conversion-board {
  position: relative;
  width: min(300px, 100%);
  min-height: 190px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.035));
  box-shadow: 0 22px 60px rgba(0,0,0,.32);
}

.revenue-line {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 26px;
  height: 90px;
  display: flex;
  align-items: end;
  gap: 10px;
}

.revenue-line i {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--accent), rgba(255,255,255,.72));
  animation: barGrow 2200ms ease-in-out infinite;
}

.revenue-line i:nth-child(1) { height: 28%; }
.revenue-line i:nth-child(2) { height: 48%; animation-delay: 120ms; }
.revenue-line i:nth-child(3) { height: 66%; animation-delay: 240ms; }
.revenue-line i:nth-child(4) { height: 90%; animation-delay: 360ms; }

.money-ticket {
  position: relative;
  z-index: 2;
  width: 172px;
  min-height: 116px;
  display: grid;
  gap: 3px;
  align-content: center;
  padding: 16px;
  border-radius: 22px;
  color: #080808;
  background:
    radial-gradient(circle at 0 50%, transparent 0 10px, #fff 11px),
    linear-gradient(135deg, #fff, #dcdcd6);
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
  animation: ticketPop 2600ms ease-in-out infinite;
}

.money-ticket span,
.money-ticket small {
  color: rgba(8,8,8,.58);
  font-size: .72rem;
  font-weight: 900;
}

.money-ticket strong {
  font-size: 2.15rem;
  letter-spacing: -.07em;
  line-height: .9;
}

.conversion-pill {
  position: absolute;
  right: 16px;
  top: 20px;
  z-index: 3;
  width: min-content;
  min-width: 126px;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(8,8,8,.72);
  box-shadow: 0 14px 32px rgba(0,0,0,.28);
  font-size: .72rem;
  font-weight: 900;
  text-align: center;
  animation: conversionPulse 1900ms ease-in-out infinite;
}

.compare-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  display: grid;
  align-content: end;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,.08), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  box-shadow: 0 28px 90px rgba(0,0,0,.42);
  isolation: isolate;
}

.compare-card::before {
  content: "";
  position: absolute;
  inset: 26px;
  z-index: -1;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), transparent),
    repeating-linear-gradient(180deg, rgba(255,255,255,.06) 0 1px, transparent 1px 52px);
  opacity: .52;
}

.muted-card {
  filter: saturate(.65);
  opacity: .76;
}

.featured-card {
  border-color: rgba(217,255,106,.2);
  background:
    radial-gradient(circle at 58% 18%, rgba(217,255,106,.16), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.035));
}

.compare-card > span {
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 12px;
  border-radius: 999px;
  color: #101010;
  background: var(--accent);
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.muted-card > span {
  color: rgba(247,247,242,.7);
  background: rgba(255,255,255,.08);
}

.compare-card h3 {
  max-width: 560px;
  font-size: clamp(2.25rem, 4vw, 4.5rem);
  line-height: .9;
  letter-spacing: -.075em;
}

.compare-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.compare-card li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(247,247,242,.72);
  font-weight: 800;
}

.compare-card li i {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255,255,255,.38);
}

.featured-card li i {
  background: var(--accent);
  box-shadow: 0 0 22px rgba(217,255,106,.38);
}

.compare-scan {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 11%;
  height: 38%;
  border-radius: 28px;
  background:
    linear-gradient(90deg, transparent, rgba(217,255,106,.16), transparent),
    linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.025));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.compare-scan::before,
.compare-scan::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
}

.compare-scan::before {
  top: 32px;
  box-shadow: 0 34px 0 rgba(255,255,255,.1), 0 68px 0 rgba(255,255,255,.08);
}

.compare-scan::after {
  top: 0;
  height: 3px;
  background: var(--accent);
  box-shadow: 0 0 28px rgba(217,255,106,.72);
  animation: compareScan 2500ms ease-in-out infinite;
}

.work {
  overflow: hidden;
}

.work-stage {
  position: relative;
  margin-inline: max(-6vw, -82px);
}

.work-track {
  display: flex;
  align-items: center;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 12px max(6vw, calc((100vw - 620px) / 2)) 34px;
  scrollbar-width: none;
}

.work-track::-webkit-scrollbar {
  display: none;
}

.work-card {
  flex: 0 0 min(620px, 76vw);
  min-height: 420px;
  position: relative;
  overflow: hidden;
  scroll-snap-align: center;
  transform: scale(.88);
  opacity: .52;
  transition: transform 620ms cubic-bezier(.2,.7,.2,1), opacity 620ms ease, filter 620ms ease;
}

.work-card.active {
  transform: scale(1);
  opacity: 1;
}

.js-ready .work-card {
  opacity: 0;
  transform: translateY(34px) scale(.9);
}

.work-card.work-visible {
  opacity: .52;
  transform: translateY(0) scale(.88);
}

.work-card.work-visible.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.work-card:nth-child(2).work-visible { transition-delay: 80ms; }
.work-card:nth-child(3).work-visible { transition-delay: 160ms; }
.work-card:nth-child(4).work-visible { transition-delay: 240ms; }
.work-card:nth-child(5).work-visible { transition-delay: 320ms; }
.work-card:nth-child(6).work-visible { transition-delay: 400ms; }

.work-card img,
.work-card video,
.work-video,
.work-placeholder,
.work-before,
.work-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.96) brightness(.94);
}

.website-preview-card > img,
.website-preview-card > video {
  transform: scale(1.02) translate3d(0, 0, 0);
  transition: transform 1200ms cubic-bezier(.2,.7,.2,1), filter 620ms ease;
}

.website-preview-card.active > img,
.website-preview-card.active > video {
  animation: previewDrift 7200ms ease-in-out infinite alternate;
  filter: saturate(1) brightness(1);
}

.website-preview-card {
  background: #050505;
}

.website-preview-card iframe {
  position: absolute;
  inset: 0;
  width: 1360px;
  height: 920px;
  border: 0;
  background: #050505;
  transform-origin: top left;
  transform: scale(.456);
  pointer-events: none;
}

.website-preview-card.active iframe {
  animation: iframePreviewDrift 7200ms ease-in-out infinite alternate;
}

.work-video {
  object-fit: cover;
}

.work-before,
.work-after {
  background-position: center;
  background-size: cover;
}

.work-after {
  clip-path: inset(0 100% 0 0);
  filter: saturate(1.08) brightness(.92);
  animation: portfolioReveal 5200ms cubic-bezier(.56,.02,.2,1) infinite;
}

.work-reveal-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 3px;
  background: linear-gradient(180deg, transparent, #fff, transparent);
  opacity: 0;
  box-shadow: 0 0 26px rgba(255,255,255,.9);
  animation: portfolioLine 5200ms cubic-bezier(.56,.02,.2,1) infinite;
}

.work-roma-before {
  background-image: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.38)), url("images/roma-before.png");
}

.work-roma-after {
  background-image: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.28)), url("images/roma-after.png");
}

.work-garden-before {
  background-image: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.38)), url("images/hero-garden-before.png");
  filter: saturate(.62) brightness(.7);
}

.work-garden-after {
  background-image: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.25)), url("images/work-gardening-header.jpg");
}

.work-landscape-before {
  background-image: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.42)), url("images/garden-premium.jpg");
  filter: saturate(.4) brightness(.62);
}

.work-landscape-after {
  background-image: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.25)), url("images/work-landscaper-header.png");
}

.work-placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.14), transparent 34%),
    linear-gradient(135deg, #151515, #080808);
}

.work-placeholder span {
  font-size: 12rem;
  font-weight: 900;
  color: rgba(255,255,255,.12);
}

.uniblacks-preview {
  background:
    radial-gradient(circle at 25% 18%, rgba(255,255,255,.16), transparent 24rem),
    radial-gradient(circle at 80% 72%, rgba(217,255,106,.12), transparent 20rem),
    linear-gradient(135deg, #070707, #151515 52%, #000);
}

.uniblacks-preview::before {
  content: "AUFC";
  position: absolute;
  right: 28px;
  bottom: 46px;
  color: rgba(255,255,255,.08);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 950;
  letter-spacing: -.08em;
}

.work-card .uniblacks-preview img {
  position: relative;
  inset: auto;
  width: min(360px, 68%);
  height: auto;
  object-fit: contain;
  filter: none;
  z-index: 1;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.18), transparent 24%);
  pointer-events: none;
}

.site-chrome {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 4;
  width: fit-content;
  max-width: calc(100% - 32px);
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: var(--white);
  background: rgba(8,8,8,.48);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 520ms ease, transform 620ms cubic-bezier(.2,.7,.2,1);
}

.work-card.work-visible .site-chrome {
  opacity: 1;
  transform: translateY(0);
}

.site-chrome span {
  color: rgba(247,247,242,.9);
  font-size: .72rem;
  font-weight: 900;
}

.site-chrome button {
  display: none;
}

.site-title {
  display: none;
}

.site-title h3 {
  width: min(560px, 100%);
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4.8rem);
  letter-spacing: -.07em;
  line-height: .9;
}

.site-title p {
  width: min(430px, 100%);
  margin: 12px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 1rem;
}

.work-card > div:last-child {
  display: none;
}

.work-card strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -.06em;
}

.work-card span {
  color: rgba(8,8,8,.68);
  font-size: 1.05rem;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #080808;
  cursor: pointer;
  font-size: 2rem;
}

.slider-arrow.prev {
  left: max(2vw, 18px);
}

.slider-arrow.next {
  right: max(2vw, 18px);
}

.promise-grid,
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.blueprint-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .68fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
}

.blueprint-copy > p {
  width: min(620px, 100%);
  margin: 22px 0 34px;
  color: rgba(247,247,242,.7);
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.58;
}

.blueprint-comparison {
  display: grid;
  gap: 16px;
}

.blueprint-comparison .compare-card {
  min-height: 320px;
  padding: clamp(22px, 2.6vw, 30px);
  border-radius: 28px;
}

.blueprint-comparison .compare-card::before {
  inset: 18px;
  border-radius: 22px;
}

.blueprint-comparison .compare-card > span {
  margin-bottom: 14px;
}

.blueprint-comparison .compare-card h3 {
  max-width: 520px;
  font-size: clamp(2rem, 2.9vw, 3.2rem);
}

.blueprint-comparison .compare-card ul {
  gap: 10px;
  margin-top: 20px;
}

.blueprint-comparison .compare-scan {
  left: 12%;
  right: 12%;
  top: 9%;
  height: 28%;
  opacity: .86;
}

.blueprint-comparison .compare-scan::before {
  top: 22px;
  box-shadow: 0 26px 0 rgba(255,255,255,.1), 0 52px 0 rgba(255,255,255,.08);
}

.loss-calculator {
  position: relative;
  overflow: hidden;
}

.loss-calculator::before {
  content: "";
  position: absolute;
  inset: 8% max(4vw, 16px);
  z-index: -1;
  border-radius: 48px;
  background:
    radial-gradient(circle at 18% 12%, rgba(217,255,106,.13), transparent 28rem),
    radial-gradient(circle at 82% 10%, rgba(145,184,255,.12), transparent 26rem),
    rgba(255,255,255,.025);
  pointer-events: none;
}

.calculator-shell {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .92fr);
  gap: 34px;
  align-items: center;
  margin: 0 auto;
  padding: 38px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.028));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045), 0 24px 90px rgba(0,0,0,.36);
}

.calculator-controls {
  display: grid;
  gap: 28px;
}

.calculator-range,
.calculator-money {
  display: grid;
  gap: 14px;
}

.calculator-range > span,
.calculator-money > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--white);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 900;
  line-height: 1.25;
}

.calculator-range output {
  color: var(--accent);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 950;
}

.calculator-range input[type="range"] {
  width: 100%;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  appearance: none;
  background: linear-gradient(90deg, var(--accent) var(--fill, 18%), rgba(255,255,255,.24) var(--fill, 18%));
  outline: none;
}

.calculator-range input[type="range"]::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(8,8,8,.8);
  border-radius: 50%;
  appearance: none;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(217,255,106,.12);
  cursor: pointer;
}

.calculator-range input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(8,8,8,.8);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(217,255,106,.12);
  cursor: pointer;
}

.calculator-money div {
  width: min(280px, 100%);
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(0,0,0,.18);
}

.calculator-money strong {
  color: var(--accent);
  font-size: 1.2rem;
}

.calculator-money input {
  width: 100%;
  border: 0;
  padding: 0;
  color: var(--white);
  background: transparent;
  font-size: 1.08rem;
  font-weight: 850;
}

.calculator-method {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 0%, rgba(217,255,106,.12), transparent 16rem),
    rgba(0,0,0,.18);
}

.calculator-method > span {
  display: block;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.calculator-method p {
  margin-top: 9px;
  color: rgba(247,247,242,.78);
  line-height: 1.48;
}

.calculator-method ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.calculator-method li {
  display: grid;
  gap: 3px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.calculator-method li:first-child {
  padding-top: 0;
  border-top: 0;
}

.calculator-method strong {
  color: var(--white);
  font-size: .95rem;
}

.calculator-method li span {
  color: rgba(247,247,242,.66);
  line-height: 1.45;
}

.calculator-results {
  display: grid;
  gap: 16px;
}

.loss-card {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  background: rgba(255,255,255,.05);
}

.loss-card.warning {
  border-color: rgba(255,112,88,.2);
  background:
    radial-gradient(circle at 12% 10%, rgba(255,112,88,.13), transparent 18rem),
    rgba(255,255,255,.045);
}

.loss-card.recovery {
  border-color: rgba(217,255,106,.22);
  background:
    radial-gradient(circle at 16% 10%, rgba(217,255,106,.14), transparent 18rem),
    rgba(255,255,255,.045);
}

.loss-card > span {
  display: block;
  color: rgba(247,247,242,.68);
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.loss-card strong {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 10px;
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 5.3rem);
  letter-spacing: -.07em;
  line-height: .9;
}

.loss-card.recovery strong {
  color: var(--accent);
}

.loss-card small {
  color: rgba(247,247,242,.72);
  font-size: 1.05rem;
  letter-spacing: 0;
}

.loss-card p,
.calculator-note p {
  margin-top: 14px;
  color: rgba(247,247,242,.72);
  line-height: 1.5;
}

.calculator-note {
  display: grid;
  gap: 16px;
}

.calculator-note .primary-cta {
  width: fit-content;
}

.process-steps article {
  min-height: 300px;
  padding: 28px;
}

.process-steps span {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 900;
}

.process-steps h3 {
  margin-top: 18px;
  font-size: clamp(1.6rem, 2vw, 2.5rem);
  letter-spacing: -.055em;
  line-height: 1;
}

.full-site-preview {
  position: relative;
  overflow: hidden;
  min-height: 0;
  height: 100%;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.035));
  box-shadow: 0 30px 100px rgba(0,0,0,.45);
}

.full-site-preview::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,255,106,.2), transparent 60%);
  filter: blur(24px);
}

.preview-browser-bar {
  position: relative;
  z-index: 2;
  height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(0,0,0,.28);
}

.preview-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.42);
}

.preview-browser-bar strong {
  margin-left: auto;
  color: rgba(247,247,242,.5);
  font-size: .78rem;
}

.preview-scroll-frame {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 74px;
  bottom: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 94px);
  border-radius: 26px;
  background: var(--bg);
  overflow: hidden;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: auto;
  transform-origin: top left;
}

.preview-scroll-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.preview-touch-toggle {
  display: none;
}

.preview-scroll-cue {
  position: absolute;
  top: 94px;
  right: 30px;
  bottom: 42px;
  z-index: 4;
  width: 28px;
  display: grid;
  justify-items: center;
  pointer-events: none;
}

.preview-scroll-cue::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 0;
  width: 4px;
  border-radius: 999px;
  background: rgba(16,16,16,.16);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28);
}

.preview-scroll-cue span {
  position: absolute;
  top: 0;
  right: 18px;
  width: max-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: #101010;
  background: rgba(247,247,242,.9);
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
  font-size: .62rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.preview-scroll-cue i {
  position: absolute;
  top: 42px;
  width: 10px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), #fff);
  box-shadow: 0 0 24px rgba(217,255,106,.46);
  animation: previewScrollCue 2200ms cubic-bezier(.45,.02,.22,1) infinite;
}

.process-steps {
  grid-template-columns: 1fr;
  width: min(980px, 100%);
  margin-inline: auto;
  gap: 28px;
}

.process-steps article {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: space-between;
  width: min(760px, 100%);
  min-height: 230px;
  padding: clamp(24px, 3.4vw, 42px);
  opacity: 1;
  isolation: isolate;
  transform: translateY(0) scale(1);
  transition:
    opacity 620ms ease,
    transform 760ms cubic-bezier(.2,.8,.2,1),
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.process-steps article:nth-child(even) {
  justify-self: end;
}

.js-ready .process-steps article {
  opacity: 0;
  transform: translateX(-44px) translateY(22px) scale(.96);
}

.js-ready .process-steps article:nth-child(even) {
  transform: translateX(44px) translateY(22px) scale(.96);
}

.process-steps article::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border-radius: 24px;
  background:
    radial-gradient(circle at 78% 18%, rgba(217,255,106,.18), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  opacity: .78;
  transition: opacity 260ms ease, transform 260ms ease;
}

.process-steps article > * {
  position: relative;
  z-index: 1;
}

.process-steps article:hover {
  border-color: rgba(217,255,106,.36);
  background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 28px 90px rgba(0,0,0,.5);
  transform: translateY(-8px) scale(1.01);
}

.process-steps article:hover::before {
  opacity: 1;
  transform: scale(1.04);
}

.process-steps span {
  width: fit-content;
  padding: 10px 13px;
  border: 1px solid rgba(217,255,106,.26);
  border-radius: 999px;
  color: #101010;
  background: var(--accent);
  box-shadow: 0 14px 40px rgba(217,255,106,.14);
}

.process-steps h3 {
  margin-top: auto;
  padding-top: 46px;
}

.process-steps article.step-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.process-steps article.step-visible:hover {
  transform: translateY(-8px) scale(1.01);
}

.faq {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(24px, 4vw, 42px);
}

.faq-list {
  display: grid;
  gap: 9px;
  align-content: start;
}

.faq-list details {
  padding: 17px 20px;
  border-radius: 22px;
}

.faq-list summary {
  cursor: pointer;
  font-size: .98rem;
  font-weight: 900;
  line-height: 1.25;
}

.faq-list p {
  margin-top: 8px;
  font-size: .95rem;
  line-height: 1.48;
}

.final-cta {
  text-align: center;
  background: radial-gradient(circle at 50% 28%, rgba(255,255,255,.14), transparent 28rem);
}

.service-page {
  padding: 126px var(--page-pad) 80px;
}

.service-page-shell {
  width: min(1400px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 14% 4%, rgba(217,255,106,.16), transparent 34rem),
    radial-gradient(circle at 86% 6%, rgba(145,184,255,.16), transparent 34rem),
    linear-gradient(160deg, rgba(255,255,255,.075), rgba(255,255,255,.018) 44%, rgba(255,255,255,.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055), 0 30px 110px rgba(0,0,0,.42);
}

.service-detail-hero,
.service-detail-grid,
.service-detail-split,
.service-detail-faq,
.service-article {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.service-detail-hero {
  position: relative;
  display: grid;
  gap: 22px;
  padding: 56px;
  overflow: hidden;
}

.service-detail-hero h1 {
  max-width: 940px;
  font-size: clamp(2.8rem, 8vw, 6.6rem);
  line-height: .88;
  letter-spacing: -.07em;
}

.service-detail-hero p {
  max-width: 760px;
  color: rgba(247,247,242,.76);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  line-height: 1.55;
}

.service-hero-visual {
  width: min(960px, 100%);
  margin: 18px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  background: rgba(0,0,0,.18);
  box-shadow: 0 24px 90px rgba(0,0,0,.34);
}

.service-hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 18px;
  margin-top: 18px;
}

.service-detail-grid article,
.service-answer-block,
.service-story-block,
.service-plan-block,
.service-highlight,
.service-detail-split,
.service-fit-block,
.service-detail-faq {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.service-detail-grid article {
  padding: 30px;
}

.service-article {
  display: grid;
  gap: 0;
  margin-top: 0;
}

.service-answer-block,
.service-story-block,
.service-plan-block,
.service-highlight {
  padding: 54px 56px;
}

.service-answer-block,
.service-story-block,
.service-plan-block,
.service-highlight,
.service-detail-split,
.service-fit-block,
.service-detail-faq {
  position: relative;
}

.service-answer-block::before,
.service-story-block::before,
.service-plan-block::before,
.service-highlight::before,
.service-detail-split::before,
.service-fit-block::before,
.service-detail-faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 56px;
  right: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
}

.service-answer-block {
  display: grid;
  gap: 14px;
  background:
    radial-gradient(circle at 10% 12%, rgba(217,255,106,.16), transparent 20rem),
    rgba(255,255,255,.055);
}

.service-answer-block h2 {
  max-width: 760px;
  margin-top: 0;
  color: var(--lime);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.service-answer-block p {
  max-width: 920px;
  color: rgba(247,247,242,.88);
  font-size: clamp(1.08rem, 1.6vw, 1.34rem);
  font-weight: 700;
  line-height: 1.62;
}

.service-story-block h2,
.service-plan-block h2,
.service-highlight h2 {
  max-width: 900px;
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: .94;
  letter-spacing: -.06em;
}

.service-story-block p,
.service-plan-block p,
.service-highlight p {
  max-width: 870px;
  margin-top: 18px;
  color: rgba(247,247,242,.76);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  line-height: 1.72;
}

.service-plan-block {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, 1.05fr);
  gap: 30px;
  align-items: center;
}

.service-plan-block ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: service-plan;
}

.service-plan-block li {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 18px 18px 18px 58px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(0,0,0,.2);
}

.service-plan-block li::before {
  counter-increment: service-plan;
  content: counter(service-plan);
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #080806;
  background: var(--lime);
  font-size: .85rem;
  font-weight: 900;
}

.service-plan-block strong {
  color: var(--paper);
  font-size: 1rem;
}

.service-plan-block span {
  color: rgba(247,247,242,.72);
  line-height: 1.5;
}

.service-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, .95fr);
  gap: 32px;
  align-items: center;
}

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

.service-highlight li {
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  color: rgba(247,247,242,.82);
  background: rgba(0,0,0,.18);
  font-weight: 800;
  line-height: 1.35;
}

.service-detail-grid span,
.service-answer-block .eyebrow,
.service-plan-block .eyebrow,
.service-fit-block .eyebrow,
.service-detail-split .eyebrow {
  color: var(--lime);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-detail-grid h2,
.service-detail-split h2,
.service-fit-block h2,
.service-detail-faq h2 {
  margin-top: 12px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: .98;
  letter-spacing: -.05em;
}

.service-detail-grid p,
.service-detail-grid li,
.service-detail-split li,
.service-detail-split p,
.service-fit-block li,
.service-detail-faq p {
  color: rgba(247,247,242,.72);
  line-height: 1.6;
}

.service-detail-grid p {
  margin-top: 14px;
}

.service-detail-grid ul,
.service-detail-split ol,
.service-business-list {
  margin: 18px 0 0;
  padding-left: 20px;
}

.service-detail-grid li + li,
.service-detail-split li + li {
  margin-top: 10px;
}

.service-detail-split {
  display: grid;
  grid-template-columns: minmax(220px, .82fr) minmax(0, 1.18fr);
  gap: 32px;
  align-items: center;
  margin-top: 0;
  padding: 54px 56px;
}

.service-deliverables {
  background: rgba(255,255,255,.018);
}

.service-fit-block {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 0;
  padding: 54px 56px;
}

.service-fit-block > div {
  padding: 32px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
}

.service-fit-block ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding-left: 20px;
}

.service-business-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  list-style: none;
}

.service-business-list li {
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.045);
  color: rgba(247,247,242,.78);
  font-weight: 700;
}

.service-detail-faq {
  margin-top: 0;
  padding: 54px 56px;
}

.service-final-cta {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding-top: 54px;
  padding-bottom: 56px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.blog-page,
.blog-post-page {
  padding-top: 126px;
}

.blog-index-hero,
.blog-list-section,
.blog-article {
  width: min(1120px, calc(100vw - 48px));
  margin: 0 auto;
}

.blog-index-hero {
  padding: 72px 0 48px;
}

.blog-index-hero h1,
.blog-article-hero h1 {
  max-width: 980px;
  font-size: clamp(3.2rem, 8vw, 7.6rem);
}

.blog-index-hero p,
.blog-article-hero p {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(247,247,242,.72);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  line-height: 1.5;
}

.blog-topic-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.blog-topic-row a,
.blog-tags em {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  color: rgba(247,247,242,.82);
  background: rgba(255,255,255,.055);
  font-style: normal;
  font-weight: 850;
  text-decoration: none;
}

.blog-topic-row a {
  min-height: 42px;
  padding: 0 16px;
}

.blog-topic-row a:hover {
  border-color: rgba(217,255,106,.35);
  color: var(--accent);
}

.blog-buyer-guide {
  width: min(1120px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: center;
  margin: 0 auto 42px;
  padding: 38px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 8% 12%, rgba(217,255,106,.13), transparent 22rem),
    rgba(255,255,255,.045);
}

.blog-buyer-guide h2,
.blog-section-head h2 {
  max-width: 760px;
  margin-top: 12px;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: .98;
  letter-spacing: -.06em;
}

.blog-buyer-guide p {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(247,247,242,.72);
  font-size: 1.08rem;
  line-height: 1.62;
}

.blog-buyer-guide ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-buyer-guide li {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background: rgba(0,0,0,.18);
}

.blog-buyer-guide strong {
  color: var(--white);
}

.blog-buyer-guide span {
  color: rgba(247,247,242,.66);
  line-height: 1.45;
}

.blog-section-head {
  width: min(1120px, calc(100vw - 48px));
  margin: 0 auto 22px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 86px;
}

.blog-card,
.blog-status-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  background: rgba(255,255,255,.055);
  box-shadow: 0 20px 70px rgba(0,0,0,.28);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.blog-card-copy,
.blog-status-card {
  padding: 24px;
}

.blog-card-copy span,
.blog-meta {
  color: rgba(247,247,242,.54);
  font-size: .84rem;
  font-weight: 800;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.blog-tags em {
  padding: 7px 10px;
  color: rgba(247,247,242,.7);
  font-size: .76rem;
}

.blog-card h2 {
  margin-top: 12px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: -.045em;
  line-height: 1.02;
}

.blog-card p,
.blog-status-card p {
  margin-top: 14px;
  color: rgba(247,247,242,.66);
  font-size: .98rem;
  line-height: 1.55;
}

.blog-read-link,
.blog-back {
  display: inline-flex;
  width: fit-content;
  margin-top: 20px;
  color: var(--accent);
  font-weight: 900;
}

.blog-status-card {
  grid-column: 1 / -1;
}

.blog-status-card h2 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
}

.blog-article {
  padding: 72px 0 90px;
}

.blog-article-hero {
  margin-top: 26px;
}

.blog-meta {
  margin-top: 22px;
}

.blog-hero-image {
  width: 100%;
  max-height: 560px;
  margin-top: 42px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.blog-content {
  width: min(780px, 100%);
  margin: 54px auto 0;
  color: rgba(247,247,242,.82);
  font-size: 1.08rem;
  line-height: 1.72;
}

.blog-content > * + * {
  margin-top: 1.2em;
}

.blog-content h2,
.blog-content h3 {
  margin-top: 1.7em;
  color: var(--white);
  letter-spacing: -.04em;
  line-height: 1.05;
}

.blog-content h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.blog-content h3 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.blog-content a {
  color: var(--accent);
  font-weight: 900;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 22px;
}

.blog-content ul,
.blog-content ol {
  padding-left: 1.2em;
}

.blog-content table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  margin-top: 1.4em;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
}

.blog-content th,
.blog-content td {
  padding: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-align: left;
  vertical-align: top;
}

.blog-content th {
  color: var(--white);
  background: rgba(255,255,255,.06);
}

.blog-content tr:last-child td {
  border-bottom: 0;
}

.answer-panel,
.blog-tldr,
.blog-formula,
.blog-cta-panel {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  background: rgba(255,255,255,.055);
}

.answer-panel,
.blog-tldr,
.blog-cta-panel {
  padding: 24px;
}

.answer-panel p {
  margin-top: 0;
  color: rgba(247,247,242,.88);
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.6;
}

.blog-tldr ul {
  margin-top: 14px;
}

.blog-formula {
  padding: 18px 20px;
  color: var(--accent);
  font-weight: 900;
  line-height: 1.5;
}

.blog-cta-panel {
  margin-top: 2em;
  background:
    radial-gradient(circle at 12% 10%, rgba(217,255,106,.14), transparent 18rem),
    rgba(255,255,255,.055);
}

.blog-cta-panel h2 {
  margin-top: 10px;
}

.blog-cta-panel .primary-cta {
  margin-top: 22px;
}

.final-cta h2 {
  margin-inline: auto;
}

.final-cta p {
  margin-inline: auto;
  text-align: center;
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px max(6vw, 24px);
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(247,247,242,.66);
}

.site-footer strong {
  color: var(--white);
}

.contact-modal {
  width: min(720px, calc(100vw - 28px));
  padding: 34px;
  color: var(--white);
  background: #101010;
}

.contact-modal::backdrop {
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(16px);
}

.modal-close {
  float: right;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.contact-modal h2 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.modal-backup {
  margin-top: 16px;
  color: rgba(247,247,242,.62);
  font-size: .9rem;
  line-height: 1.45;
}

.modal-backup a {
  color: var(--accent);
  font-weight: 900;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(247,247,242,.75);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  color: var(--white);
  padding: 15px 16px;
  outline: none;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.reveal-section {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 850ms ease, transform 950ms cubic-bezier(.2,.7,.2,1);
}

.js-ready .reveal-section {
  opacity: 0;
  transform: translateY(34px);
}

.reveal-section.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes deviceFloat {
  0%, 100% { transform: perspective(900px) rotateX(5deg) rotateY(-7deg) translateY(0); }
  50% { transform: perspective(900px) rotateX(4deg) rotateY(-4deg) translateY(-8px); }
}

@keyframes glassSweep {
  0%, 38% { transform: translateX(-120%); opacity: 0; }
  52% { opacity: 1; }
  72%, 100% { transform: translateX(120%); opacity: 0; }
}

@keyframes showreelRise {
  from { transform: translate3d(0, 0, 0) rotate(-2deg); }
  to { transform: translate3d(0, -50%, 0) rotate(-2deg); }
}

@keyframes showreelDrop {
  from { transform: translate3d(0, -50%, 0) rotate(3deg); }
  to { transform: translate3d(0, 0, 0) rotate(3deg); }
}

@keyframes assistantBubble {
  0%, 100% { opacity: .72; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-3px); }
}

@keyframes leadPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(217,255,106,0); }
  50% { box-shadow: 0 0 34px rgba(217,255,106,.28); }
}

@keyframes aiShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes keywordFloat {
  0%, 100% { transform: translateY(0); opacity: .55; }
  50% { transform: translateY(-7px); opacity: .95; }
}

@keyframes rankFirst {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.02); }
}

@keyframes previewScrollCue {
  0%, 100% { transform: translateY(0); opacity: .55; }
  45% { transform: translateY(130px); opacity: 1; }
  70% { transform: translateY(190px); opacity: .25; }
}

@keyframes flowDot {
  to { transform: translateX(44px); }
}

@keyframes automateRow {
  0%, 20% { inset: 0 100% 0 0; opacity: 0; }
  42%, 78% { inset: 0 0 0 0; opacity: 1; }
  100% { inset: 0 0 0 100%; opacity: 0; }
}

@keyframes chatIn {
  0%, 8% { opacity: 0; transform: translateY(10px) scale(.98); }
  14%, 74% { opacity: 1; transform: translateY(0) scale(1); }
  86%, 100% { opacity: 0; transform: translateY(-4px) scale(.99); }
}

@keyframes iconLift {
  0%, 100% { transform: translateY(0); filter: brightness(1); }
  50% { transform: translateY(-6px); filter: brightness(1.12); }
}

@keyframes launchProgress {
  0% { width: 10%; opacity: .55; }
  55%, 100% { width: 86%; opacity: 1; }
}

@keyframes portfolioReveal {
  0%, 12% { clip-path: inset(0 100% 0 0); }
  55%, 82% { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(0 100% 0 0); }
}

@keyframes portfolioLine {
  0%, 10% { left: 0; opacity: 0; }
  18%, 54% { opacity: 1; }
  60%, 100% { left: 100%; opacity: 0; }
}

@keyframes previewDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.8%, -1.4%, 0);
  }
}

@keyframes iframePreviewDrift {
  from {
    transform: scale(.456) translate3d(0, 0, 0);
  }
  to {
    transform: scale(.476) translate3d(-20px, -14px, 0);
  }
}

@keyframes phoneFloat {
  0%, 100% { transform: perspective(800px) rotateX(4deg) rotateY(8deg) rotate(-3deg) translateY(0); }
  50% { transform: perspective(800px) rotateX(3deg) rotateY(4deg) rotate(-1deg) translateY(-8px); }
}

@keyframes appBarRise {
  0%, 100% { transform: scaleY(.72); opacity: .72; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes taskSlide {
  0%, 100% { transform: translateX(0); opacity: .82; }
  50% { transform: translateX(6px); opacity: 1; }
}

@keyframes tabPulse {
  0%, 100% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.16); opacity: 1; }
}

@keyframes barGrow {
  0%, 100% { transform: scaleY(.7); opacity: .72; }
  50% { transform: scaleY(1.08); opacity: 1; }
}

@keyframes ticketPop {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-7px) rotate(1deg); }
}

@keyframes quoteFieldIn {
  0%, 10%, 100% { opacity: .58; transform: translateY(4px); }
  20%, 72% { opacity: 1; transform: translateY(0); }
}

@keyframes quoteNumberPulse {
  0%, 12%, 100% { color: rgba(247,247,242,.72); transform: scale(1); }
  20%, 34% { color: var(--accent); transform: scale(1.08); }
  44%, 72% { color: var(--white); transform: scale(1); }
}

@keyframes quoteTotalReady {
  0%, 44%, 100% { opacity: .7; transform: translateY(6px) scale(.96); }
  58%, 78% { opacity: 1; transform: translateY(0) scale(1.03); }
  88% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes quoteAmountTick {
  0%, 48%, 100% { transform: translateY(0) scale(1); }
  60%, 70% { transform: translateY(-1px) scale(1.08); }
}

@keyframes conversionPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 14px 32px rgba(0,0,0,.28); }
  50% { transform: scale(1.04); box-shadow: 0 0 34px rgba(217,255,106,.2); }
}

@keyframes serviceCardIn {
  from {
    opacity: 0;
    transform: translateY(42px) scale(.965);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes serviceVisualIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.96);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes mobileServiceIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes mobileServiceVisualIn {
  from {
    opacity: .45;
    transform: translateY(14px) scale(.98);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes compareScan {
  0%, 100% { transform: translateY(0); opacity: .32; }
  50% { transform: translateY(152px); opacity: 1; }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    top: 12px;
    height: 64px;
    width: calc(100vw - 24px);
    padding-left: 18px;
  }

  .pill-button {
    display: none;
  }

  .hero {
    min-height: 100svh;
    grid-template-columns: 1fr;
    padding: 112px 18px 46px;
    place-items: start;
    align-items: center;
  }

  .hero-content {
    text-align: left;
  }

  .hero-content .eyebrow {
    justify-content: flex-start;
  }

  h1 {
    font-size: clamp(3.4rem, 15.5vw, 5.8rem);
  }

  .hero-content p,
  .section-head p {
    margin-left: 0;
  }

  .final-cta p {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .final-cta .hero-actions {
    justify-content: center;
  }

  .hero-proof {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 30px;
  }

  .hero-showreel {
    width: 100%;
    min-height: 520px;
    order: 2;
  }

  .showreel-rail {
    width: 56%;
    gap: 18px;
  }

  .reel-item {
    min-height: 210px;
    border-radius: 24px;
  }

  section:not(.hero) {
    padding: 78px 18px;
  }

  .js-ready #services {
    opacity: 1;
    transform: none;
  }

  .service-grid,
  .team-grid,
  .blog-grid,
  .blog-buyer-guide,
  .calculator-shell,
  .faq,
  .blueprint-layout {
    grid-template-columns: 1fr;
  }

  .blog-page,
  .blog-post-page {
    padding-top: 92px;
  }

  .service-page {
    padding: 92px 18px 70px;
  }

  .service-detail-hero {
    padding: 32px 24px;
    border-radius: 24px;
  }

  .service-detail-hero h1 {
    font-size: clamp(2.55rem, 13vw, 5rem);
  }

  .service-detail-grid,
  .service-plan-block,
  .service-highlight,
  .service-detail-split,
  .service-fit-block {
    grid-template-columns: 1fr;
  }

  .service-detail-grid article,
  .service-answer-block,
  .service-story-block,
  .service-plan-block,
  .service-highlight,
  .service-detail-split,
  .service-fit-block > div,
  .service-detail-faq {
    padding: 24px;
    border-radius: 24px;
  }

  .service-business-list {
    grid-template-columns: 1fr;
  }

  .blog-index-hero,
  .blog-buyer-guide,
  .blog-section-head,
  .blog-list-section,
  .blog-article {
    width: calc(100vw - 36px);
  }

  .blog-buyer-guide {
    padding: 24px;
    border-radius: 24px;
  }

  .blog-buyer-guide ul {
    grid-template-columns: 1fr;
  }

  .blog-content table {
    display: block;
    overflow-x: auto;
  }

  .calculator-shell {
    padding: 24px;
    border-radius: 24px;
  }

  .calculator-range > span,
  .calculator-money > span {
    align-items: flex-start;
  }

  .loss-card strong {
    font-size: clamp(2.3rem, 15vw, 4rem);
  }

  .blog-index-hero,
  .blog-article {
    padding-top: 46px;
  }

  .blog-index-hero h1,
  .blog-article-hero h1 {
    font-size: clamp(3rem, 13vw, 5.8rem);
  }

  .blog-hero-image {
    border-radius: 22px;
  }

  .service-grid {
    display: grid;
  }

  .js-ready .service-card {
    opacity: 0;
    transform: translateY(30px) scale(.985);
  }

  .service-card.service-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: mobileServiceIn 720ms cubic-bezier(.2,.7,.2,1) both;
  }

  .service-card.service-visible .service-visual {
    animation: mobileServiceVisualIn 760ms cubic-bezier(.2,.7,.2,1) both;
  }

  .team-card {
    min-height: 0;
    grid-template-rows: 300px auto;
  }

  .team-portrait {
    width: min(300px, calc(100% - 28px));
    height: min(300px, calc(100vw - 28px));
    margin: 14px auto 0;
    border-radius: 22px;
  }

  .photo-portrait img {
    width: 100%;
    height: 100%;
  }

  .team-copy {
    padding: 24px;
  }

  .team-systems span {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }

  .compare-card,
  .blueprint-comparison .compare-card {
    min-height: 460px;
  }

  .blueprint-comparison .compare-card::before {
    display: none;
  }

  .process-steps article,
  .process-steps article:nth-child(even) {
    justify-self: stretch;
    width: 100%;
  }

  .process-steps article {
    opacity: 1;
    transform: none;
  }

  .full-site-preview {
    min-height: 0;
    width: min(100%, 340px);
    height: 430px;
    margin-inline: auto;
    padding: 0;
    border-radius: 30px;
    justify-self: center;
    touch-action: pan-y;
  }

  .preview-scroll-frame {
    display: block;
    left: 14px;
    right: 14px;
    top: 60px;
    bottom: 16px;
    width: calc(100% - 28px);
    height: calc(100% - 76px);
    border-radius: 22px;
    overflow: hidden;
    touch-action: pan-y;
  }

  .preview-scroll-frame iframe {
    pointer-events: none;
  }

  .preview-scroll-frame.is-interactive iframe {
    pointer-events: auto;
  }

  .preview-touch-toggle {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    width: min(calc(100% - 32px), 230px);
    border: 0;
    border-radius: 999px;
    color: #080808;
    background: linear-gradient(135deg, #f8ffbe 0%, var(--accent) 52%, #fff4b8 100%);
    box-shadow: 0 18px 42px rgba(0,0,0,.24);
    font-size: .82rem;
    font-weight: 950;
    transform: translateX(-50%);
    cursor: pointer;
  }

  .preview-scroll-frame.is-interactive .preview-touch-toggle {
    opacity: .16;
    pointer-events: none;
  }

  .preview-browser-bar {
    height: 48px;
    padding: 0 14px;
    pointer-events: none;
  }

  .preview-browser-bar strong {
    font-size: .68rem;
  }

  .preview-scroll-cue {
    display: none;
  }

  .service-card {
    min-height: 0;
    grid-template-rows: auto auto auto auto auto;
  }

  .service-visual {
    height: auto;
    min-height: 190px;
  }

  .work-card {
    flex-basis: 82vw;
    min-height: 360px;
  }

  .work-track {
    padding-inline: 9vw;
  }

  .slider-arrow {
    width: 48px;
    height: 48px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: .96rem;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-showreel {
    min-height: 460px;
  }

  .showreel-rail {
    width: 64%;
  }

  .rail-one {
    left: -5%;
  }

  .rail-two {
    right: -9%;
  }

  .reel-item {
    min-height: 180px;
  }

  .assistant-shot,
  .automation-shot {
    min-height: 220px;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
    justify-content: space-between;
  }

  .work-card {
    min-height: 310px;
  }

  .service-card {
    min-height: 0;
    grid-template-rows: auto auto auto auto auto;
    padding: 24px;
  }

  .service-visual {
    height: auto;
    min-height: 180px;
  }

  .review-flow-card {
    grid-template-columns: 1fr;
  }

  .calendar-tile {
    min-height: 118px;
  }

  .review-request {
    width: 100%;
  }

  .whatsapp-phone {
    width: min(190px, 82%);
    min-height: 246px;
  }

  .chatbot-browser,
  .phone-reception-card,
  .quote-form-card,
  .premium-web-preview {
    width: 100%;
  }

  .chatbot-site-preview {
    width: 62%;
    padding: 16px;
  }

  .chat-widget {
    width: min(198px, 78%);
  }

  .phone-reception-card {
    gap: 9px;
    padding: 13px;
  }

  .call-screen {
    grid-template-columns: 52px 1fr;
    min-height: 72px;
    gap: 10px;
  }

  .call-avatar {
    width: 48px;
    height: 48px;
  }

  .call-notes p {
    font-size: .6rem;
  }

  .quote-total strong {
    font-size: 1.45rem;
  }

  .compare-card {
    min-height: 420px;
    padding: 24px;
  }

  .full-site-preview {
    width: min(100%, 300px);
    height: 390px;
  }

}

@supports (-webkit-touch-callout: none) {
  .hero-showreel::before {
    opacity: .72;
    filter: blur(16px);
  }

  .reel-item {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .reel-item img {
    filter: saturate(.86) brightness(.86);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}
