*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #07090a;
  color: #f4f6f2;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  background-position: center top;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3 {
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: #f4f6f2;
  margin: 0;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.accent {
  color: #00d66c;
}

.eyebrow {
  display: inline-block;
  font-family: "JetBrains Mono", "Consolas", monospace;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #00d66c;
  margin-bottom: 0.9rem;
}

.stars {
  color: #ffc93c;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: 999px;
  padding: 1rem 2.1rem;
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn--primary {
  background: linear-gradient(180deg, #00e676, #00d66c);
  color: #04140b;
  box-shadow: 0 0 0 1px rgba(0, 214, 108, 0.4), 0 12px 30px -10px rgba(0, 214, 108, 0.55);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(0, 214, 108, 0.55), 0 16px 34px -8px rgba(0, 214, 108, 0.65);
}

.section {
  padding: 6rem 0;
}
.section__head {
  margin-bottom: 3rem;
  max-width: 640px;
}
.section__head--center {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section__title {
  font-size: clamp(1.9rem, 1.4rem + 2vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
}

.hero {
  position: relative;
  padding: 7rem 0 5rem;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 1400px;
  height: 900px;
  background: radial-gradient(ellipse at center, rgba(0, 214, 108, 0.24), rgba(0, 214, 108, 0.06) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: #99a49c;
  margin-bottom: 2rem;
}
.hero__badge a {
  color: #99a49c;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero__badge a:hover {
  color: #f4f6f2;
}
.hero__title {
  font-size: clamp(2.6rem, 1.8rem + 3.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.12;
  max-width: 920px;
  margin: 0 auto;
}
.hero__cta {
  margin-top: 2.5rem;
}
.hero__platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: #6d766f;
}
.hero__platforms-sep {
  color: #6d766f;
  opacity: 0.6;
}
.hero__caption {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #6d766f;
}

/* STEPS */
.steps {
  max-width: 1040px;
  margin: 2.5rem auto 0;
}
.steps__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1.1rem;
  transition: transform 0.2s ease;
}
.step:hover {
  transform: translateY(-3px);
}
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 64px;
  right: -0.95rem;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(0, 214, 108, 0.35);
  border-right: 2px solid rgba(0, 214, 108, 0.35);
  transform: translateY(-50%) rotate(45deg);
}
.step__visual {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0, 214, 108, 0.08);
  border: 1px solid rgba(0, 214, 108, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 1.25rem;
}
.step__text {
  font-size: 0.92rem;
  font-weight: 500;
  color: #f4f6f2;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .steps__row {
    grid-template-columns: repeat(2, 1fr);
  }
  .step::after {
    display: none !important;
  }
}
@media (max-width: 560px) {
  .steps__row {
    grid-template-columns: 1fr;
  }
}

/* step 1: typing */
.step__type {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step__type-box {
  display: flex;
  align-items: center;
  height: 22px;
}
.step__type-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  font-family: "JetBrains Mono", "Consolas", monospace;
  font-size: 9.5px;
  letter-spacing: 0.01em;
  color: #7cf5b6;
  border-right: 2px solid #00d66c;
  width: 0;
  animation: step-type 3.2s steps(11, end) infinite, step-caret-blink 0.8s steps(1) infinite;
}
@keyframes step-type {
  0%,
  4% {
    width: 0;
  }
  55%,
  82% {
    width: 10ch;
  }
  100% {
    width: 0;
  }
}
@keyframes step-caret-blink {
  0%,
  49% {
    border-color: #00d66c;
  }
  50%,
  100% {
    border-color: transparent;
  }
}

/* step 2: map pins dropping */
.step__map {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 9px 9px;
}
.step__map-pin {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50% 50% 50% 0;
  background: #00d66c;
  opacity: 0;
  box-shadow: 0 0 8px rgba(0, 214, 108, 0.7);
  animation: step-pin-drop 2.4s ease infinite;
}
.step__map-pin--1 {
  top: 18px;
  left: 20px;
  animation-delay: 0s;
}
.step__map-pin--2 {
  top: 32px;
  left: 40px;
  animation-delay: 0.5s;
}
.step__map-pin--3 {
  top: 42px;
  left: 24px;
  animation-delay: 1s;
}
@keyframes step-pin-drop {
  0% {
    opacity: 0;
    transform: translateY(-10px) rotate(-45deg) scale(0.5);
  }
  12% {
    opacity: 1;
    transform: translateY(0) rotate(-45deg) scale(1.1);
  }
  22% {
    transform: translateY(0) rotate(-45deg) scale(1);
  }
  70% {
    opacity: 1;
  }
  85% {
    opacity: 0;
    transform: translateY(0) rotate(-45deg) scale(0.8);
  }
  100% {
    opacity: 0;
  }
}

/* step 3: website scan */
.step__browser {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: #0d130f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.step__browser-dot {
  position: absolute;
  top: 5px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}
.step__browser-dot:nth-child(1) {
  left: 5px;
}
.step__browser-dot:nth-child(2) {
  left: 10px;
}
.step__browser-dot:nth-child(3) {
  left: 15px;
}
.step__browser-line {
  position: absolute;
  left: 6px;
  height: 2px;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.18);
  animation: step-line-read 2.4s ease-in-out infinite;
}
.step__browser-line--1 {
  top: 18px;
  width: 34px;
  animation-delay: 0.2s;
}
.step__browser-line--2 {
  top: 26px;
  width: 26px;
  animation-delay: 0.9s;
}
.step__browser-line--3 {
  top: 34px;
  width: 30px;
  animation-delay: 1.5s;
}
@keyframes step-line-read {
  0%,
  100% {
    background: rgba(255, 255, 255, 0.18);
  }
  50% {
    background: rgba(0, 214, 108, 0.85);
  }
}
.step__browser-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 10px;
  top: 14px;
  background: linear-gradient(180deg, transparent, rgba(0, 214, 108, 0.55), transparent);
  animation: step-scan 2.4s ease-in-out infinite;
}
@keyframes step-scan {
  0% {
    top: 12px;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    top: 40px;
    opacity: 0;
  }
}

/* step 4: triage (pass / pass / fail) */
.step__triage {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.step__triage-row {
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0;
  transform: translateX(-4px);
  animation: step-triage-row-in 2.7s ease infinite;
}
.step__triage-row:nth-child(1) {
  animation-delay: 0s;
}
.step__triage-row:nth-child(2) {
  animation-delay: 0.45s;
}
.step__triage-row:nth-child(3) {
  animation-delay: 0.9s;
}
.step__triage-bar {
  width: 22px;
  height: 3px;
  border-radius: 2px;
}
.step__triage-row--pass .step__triage-bar {
  background: rgba(0, 214, 108, 0.4);
}
.step__triage-row--fail .step__triage-bar {
  background: rgba(255, 86, 86, 0.4);
}
.step__triage-icon {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step__triage-icon svg {
  width: 8px;
  height: 8px;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.step__triage-row--pass .step__triage-icon {
  background: rgba(0, 214, 108, 0.18);
}
.step__triage-row--pass .step__triage-icon svg {
  stroke: #00d66c;
}
.step__triage-row--fail .step__triage-icon {
  background: rgba(255, 86, 86, 0.2);
}
.step__triage-row--fail .step__triage-icon svg {
  stroke: #ff5656;
}
@keyframes step-triage-row-in {
  0%,
  4% {
    opacity: 0;
    transform: translateX(-4px);
  }
  16%,
  78% {
    opacity: 1;
    transform: translateX(0);
  }
  92%,
  100% {
    opacity: 0;
    transform: translateX(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .step__type-text,
  .step__map-pin,
  .step__browser-scan,
  .step__browser-line,
  .step__triage-row {
    animation: none !important;
  }
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.82rem;
  color: #99a49c;
}
.platform-badge__icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.video-card {
  position: relative;
  max-width: 900px;
  margin: 3rem auto 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #000;
  box-shadow: 0 30px 80px -30px rgba(0, 214, 108, 0.25), 0 40px 60px -30px rgba(0, 0, 0, 0.6);
}
.video-card__frame {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
}
.video-card__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.video-card__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-card__topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent);
  text-align: left;
}
.video-card__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #ff3b3b, #7a0000);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.video-card__meta {
  overflow: hidden;
}
.video-card__video-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.video-card__channel {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
}
.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  border-radius: 14px;
  background: #ff0000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: transform 0.15s ease, background 0.15s ease;
}
.video-card__play svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  margin-left: 3px;
}
.video-card__frame:hover .video-card__play {
  background: #ff2020;
  transform: translate(-50%, -50%) scale(1.06);
}
.video-card__watchbadge {
  position: absolute;
  bottom: 1rem;
  right: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
}
.video-card__watchbadge svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}
.video-card__tools {
  position: absolute;
  bottom: 1rem;
  left: 1.1rem;
  display: flex;
  gap: 0.5rem;
}
.video-card__tool {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-card__tool svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
}

.why {
  padding: 7rem 0 4rem;
}

.reviews-section {
  padding-top: 3rem;
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(200px, 300px) 1fr;
  gap: 3rem;
}
@media (max-width: 860px) {
  .why-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.why-layout__intro {
  position: sticky;
  top: 6rem;
  align-self: start;
}
@media (max-width: 860px) {
  .why-layout__intro {
    position: static;
  }
}
.why-layout__title {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(1.9rem, 1.4rem + 2vw, 2.7rem);
  font-weight: 600;
  line-height: 1.18;
  margin-top: 1rem;
}
.why-layout__story {
  max-width: 640px;
  border-left: 2px solid rgba(0, 214, 108, 0.28);
  padding-left: 2.25rem;
}
@media (max-width: 860px) {
  .why-layout__story {
    padding-left: 1.25rem;
  }
}
.why-layout__story p {
  color: #99a49c;
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.why-layout__story p strong {
  color: #f4f6f2;
  font-weight: 600;
}
.why-layout__pullquote {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.1rem) !important;
  font-weight: 600;
  color: #f4f6f2 !important;
  line-height: 1.3;
  margin: 2.5rem 0 !important;
}
.why-layout__closing {
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #f4f6f2 !important;
  line-height: 1.6;
  margin-top: 2.25rem !important;
}

.why-proof {
  margin: 2rem 0 2.25rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #fff;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.5);
}
.why-proof img {
  width: 100%;
  display: block;
}
.why-proof figcaption {
  padding: 0.7rem 1.1rem;
  background: #0b110d;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-family: "JetBrains Mono", "Consolas", monospace;
  font-size: 0.78rem;
  color: #6d766f;
  line-height: 1.5;
}
.why-proof--narrow {
  max-width: 360px;
}

.why-stat {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2.25rem 0;
  padding: 1.5rem 1.75rem;
  border-radius: 16px;
  background: rgba(0, 214, 108, 0.14);
  border: 1px solid rgba(0, 214, 108, 0.28);
}
@media (max-width: 480px) {
  .why-stat {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
.why-stat__number {
  flex-shrink: 0;
  font-family: "Fraunces", "Georgia", serif;
  font-size: 3rem;
  font-weight: 700;
  color: #00d66c;
  line-height: 1;
  white-space: nowrap;
}
.why-stat__of {
  font-size: 1.4rem;
  font-weight: 600;
  opacity: 0.55;
}
.why-stat__label {
  color: #f4f6f2;
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 !important;
}

.usecase {
  margin: 2.5rem 0;
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0b110d;
}
@media (max-width: 480px) {
  .usecase {
    padding: 1.5rem;
  }
}
.usecase > .eyebrow {
  margin-bottom: 1.1rem;
}
.usecase > p:last-child {
  margin-bottom: 0 !important;
}

.reviews {
  column-count: 3;
  column-gap: 1.25rem;
}
@media (max-width: 900px) {
  .reviews {
    column-count: 2;
  }
}
@media (max-width: 620px) {
  .reviews {
    column-count: 1;
  }
}

.review-card {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 1.25rem;
  break-inside: avoid;
  padding: 1.75rem;
  border-radius: 16px;
  background: #0b110d;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.review-card:hover {
  border-color: rgba(0, 214, 108, 0.28);
  transform: translateY(-3px);
}
.review-card__quotemark {
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #00d66c;
  opacity: 0.12;
  line-height: 1;
  pointer-events: none;
}
.review-card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.review-card__who {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
}
.review-card__who strong {
  color: #f4f6f2;
  font-weight: 600;
}
.review-card__who span {
  color: #6d766f;
  font-size: 0.82rem;
}
.review-card .stars {
  display: block;
  margin-bottom: 1rem;
}
.review-card__quote {
  position: relative;
  font-size: 0.96rem;
  line-height: 1.6;
  color: #f4f6f2;
}

.avatar {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: #0d130f;
  border: 2px solid rgba(255, 255, 255, 0.12);
}

.pricing {
  padding-bottom: 8rem;
}

.pricing-box {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 4.5rem 2rem;
  border-radius: 24px;
  border: 1px solid rgba(0, 214, 108, 0.28);
  background: #0d130f;
}
.pricing-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(0, 214, 108, 0.28), transparent 65%);
  pointer-events: none;
}
.pricing-box__inner {
  position: relative;
  z-index: 1;
}
.pricing-box__title {
  font-size: clamp(1.8rem, 1.3rem + 2vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1.1rem;
}
.pricing-box__text {
  max-width: 560px;
  margin: 0 auto 2.2rem;
  color: #99a49c;
  font-size: 1rem;
  line-height: 1.65;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 2rem 0;
  text-align: center;
}
.footer p {
  font-family: "JetBrains Mono", "Consolas", monospace;
  font-size: 0.82rem;
  color: #6d766f;
}

.text-center {
  text-align: center;
}
