:root {
  color-scheme: light;
  --ink: #071426;
  --muted: #5a687b;
  --soft: #f6fbff;
  --panel: #ffffff;
  --line: #d9e8f7;
  --blue: #006dea;
  --blue-dark: #073d9b;
  --cyan: #18b8ff;
  --navy: #06143a;
  --shadow: 0 24px 70px rgba(5, 50, 115, 0.12);
  --orange: #ff4b1f;
  --orange-dark: #d83312;
  --cream: #fff9ee;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fffdf8;
  color: var(--ink);
  font: 400 16px/1.55 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

body.home {
  overflow-x: hidden;
  background: #fffdf8;
  color: #121212;
}

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

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

a:hover {
  color: var(--blue);
}

.skip-link {
  position: absolute;
  left: 14px;
  top: -60px;
  z-index: 30;
  padding: 8px 10px;
  border-radius: 6px;
  background: #ffffff;
  color: var(--blue-dark);
  font-weight: 800;
}

.skip-link:focus {
  top: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  width: min(1160px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111111;
  font-size: 0.98rem;
  font-weight: 900;
  white-space: nowrap;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(0, 0, 0, 0.62);
  font-size: 0.9rem;
  font-weight: 720;
}

.nav-links a:not(.button) {
  position: relative;
  padding: 8px 0;
}

.nav-links a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: #111111;
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-links a:not(.button):hover,
.nav-links a:not(.button)[aria-current="page"] {
  color: #111111;
}

.nav-links a:not(.button):hover::after,
.nav-links a:not(.button)[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-links .button[aria-current="page"] {
  box-shadow: inset 0 -3px 0 rgba(255, 255, 255, 0.86);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #111111;
  color: #ffffff;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(255, 75, 31, 0.2);
}

.button.secondary {
  border-color: rgba(0, 0, 0, 0.14);
  background: #ffffff;
  color: #111111;
}

.button.secondary:hover {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

.button.small {
  min-height: 38px;
  padding: 0 14px;
}

.hero {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  background: var(--navy);
  color: #ffffff;
}

.hero-art {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.hero-art img {
  position: absolute;
  right: max(-120px, -8vw);
  top: 50%;
  width: min(720px, 70vw);
  transform: translateY(-50%);
  animation: heroFloat 7s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 20, 58, 0.98), rgba(6, 20, 58, 0.84) 48%, rgba(6, 20, 58, 0.48));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 54px;
  width: min(1160px, calc(100% - 40px));
  min-height: 630px;
  margin: 0 auto;
  align-items: center;
  padding: 70px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  font-size: 4.4rem;
  font-weight: 950;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: #d8ecff;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.product-preview {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.preview-top {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.preview-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.46);
}

.preview-top strong {
  margin-left: 8px;
  color: #d8ecff;
  font-size: 0.78rem;
}

.scan-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 24px var(--cyan);
  animation: scan 3s ease-in-out infinite;
}

.listing-preview {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: center;
}

.listing-image {
  aspect-ratio: 1;
  border-radius: 10px;
  background: #dff4ff url("assets/icon128.png") center / 56px no-repeat;
}

.mini-label {
  display: block;
  color: #9ee3ff;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.listing-preview h2 {
  margin-top: 5px;
  font-size: 1.15rem;
}

.listing-preview p {
  margin: 7px 0 0;
  color: #d8ecff;
  font-size: 0.92rem;
}

.result-list {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.result-row {
  display: grid;
  gap: 4px;
  padding: 16px 20px;
  background: rgba(6, 20, 58, 0.54);
  animation: pulseRow 4.8s ease-in-out infinite;
}

.result-row:nth-child(2) {
  animation-delay: 0.45s;
}

.result-row:nth-child(3) {
  animation-delay: 0.9s;
}

.result-row span {
  color: #9ee3ff;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.result-row strong {
  font-size: 0.97rem;
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.cta-copy h2 {
  font-size: 3rem;
  font-weight: 950;
}

.section-heading p,
.cta-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid,
.pricing-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.price-card,
.trust-card,
.contact-card,
.legal-content,
.legal-nav {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 240px;
  padding: 26px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 80px rgba(5, 50, 115, 0.16);
}

.feature-card span {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 950;
}

.feature-card h3,
.price-card h3,
.contact-card h2 {
  margin-top: 18px;
  font-size: 1.35rem;
}

.feature-card p,
.price-card p,
.trust-card p,
.contact-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.workflow-section {
  padding-top: 30px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-item {
  position: relative;
  padding: 22px 24px 22px 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 4px;
  border-radius: 999px;
  background: var(--cyan);
}

.timeline-item span {
  color: var(--blue-dark);
  font-weight: 950;
}

.timeline-item p {
  margin: 8px 0 0;
  color: var(--muted);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 70px;
  padding: 42px;
  border-radius: 14px;
  background: var(--navy);
  color: #ffffff;
  box-shadow: 0 30px 80px rgba(6, 20, 58, 0.22);
}

.cta-copy p {
  color: #d8ecff;
}

.page-hero {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 190, 210, 0.58), transparent 22%),
    radial-gradient(circle at 84% 8%, rgba(170, 220, 255, 0.78), transparent 24%),
    linear-gradient(180deg, #d8efff 0%, #fffdf8 92%);
}

.page-hero .section {
  padding: 72px 0 58px;
}

.page-title {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.page-title h1 {
  color: #111111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.35rem;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

.page-title p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.price-card,
.trust-card,
.contact-card {
  padding: 26px;
}

.pricing-grid {
  max-width: 1040px;
  margin: 0 auto;
}

.price-card.featured {
  border-color: var(--blue);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: 18px;
  color: var(--ink);
  font-weight: 950;
}

.price strong {
  font-size: 2.45rem;
}

.price span {
  color: var(--muted);
  font-weight: 780;
}

.list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: #33435a;
}

.list li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 9px;
}

.list li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--cyan);
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 28px;
  align-items: start;
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 940px;
  margin: 0 auto;
  gap: 18px;
  align-items: stretch;
}

.legal-nav {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 8px;
  padding: 16px;
}

.legal-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 760;
}

.legal-content {
  padding: 30px;
}

.legal-content h2 {
  margin-top: 34px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: #33435a;
}

.legal-content a,
.contact-card a:not(.button) {
  color: var(--blue);
  font-weight: 800;
}

.callout {
  margin: 22px 0;
  padding: 16px;
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: #eaf6ff;
}

.cta-band {
  background: #111111;
  color: #ffffff;
}

.cta-band .section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.45rem;
  font-weight: 500;
  letter-spacing: 0;
}

.cta-band p {
  max-width: 640px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0;
}

.footer-brand {
  display: grid;
  gap: 12px;
}

.footer-brand p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 20px;
  color: #32425a;
  font-weight: 760;
}

.fine-print {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 16px 0 26px;
  border-top: 1px solid var(--line);
  color: #68778a;
  font-size: 0.86rem;
}

.home-top {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
  min-height: 76px;
  pointer-events: none;
}

.top-mark {
  position: absolute;
  left: 50%;
  top: 0;
  display: grid;
  width: 164px;
  height: 58px;
  place-items: center;
  border-radius: 0 0 34px 34px;
  background: #050505;
  transform: translateX(-50%);
  pointer-events: auto;
}

.top-mark img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.home-links {
  position: absolute;
  right: 28px;
  top: 22px;
  display: flex;
  gap: 14px;
  align-items: center;
  color: rgba(0, 0, 0, 0.62);
  font-size: 0.88rem;
  font-weight: 760;
  pointer-events: auto;
}

.home-links a:last-child {
  min-height: 34px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #050505;
  color: #ffffff;
}

.hunter-hero {
  position: relative;
  min-height: 980px;
  overflow: hidden;
  padding-top: 72px;
  background:
    radial-gradient(circle at 18% 4%, rgba(255, 190, 210, 0.68), transparent 22%),
    radial-gradient(circle at 82% 10%, rgba(170, 220, 255, 0.9), transparent 24%),
    linear-gradient(180deg, #9fcdf1 0%, #fdfdf7 38%, #fffdf8 100%);
}

.sky-noise {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(115deg, transparent 0 48%, rgba(255, 255, 255, 0.5) 49%, transparent 52%),
    radial-gradient(circle at 30% 16%, rgba(255, 255, 255, 0.8), transparent 18%),
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.7), transparent 20%);
  pointer-events: none;
}

.hero-center {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
  animation: riseIn 700ms ease both;
}

.mini-kicker,
.section-kicker {
  margin: 0 0 14px;
  color: rgba(0, 0, 0, 0.48);
  font-size: 0.9rem;
  font-weight: 760;
}

.hero-center h1,
.pain-section h2,
.agent-copy h2,
.final-cta h2 {
  color: #111111;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero-center h1 {
  max-width: 780px;
  margin: 0 auto;
  font-size: 4.55rem;
}

.hero-subline {
  max-width: 590px;
  margin: 22px auto 0;
  color: rgba(0, 0, 0, 0.76);
  font-size: 1.02rem;
  line-height: 1.45;
}

.orange-button {
  display: inline-flex;
  min-width: 220px;
  min-height: 54px;
  margin-top: 34px;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 10px;
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 12px 0 rgba(255, 75, 31, 0.18), 0 18px 46px rgba(255, 75, 31, 0.28);
  font-size: 1.08rem;
  font-weight: 950;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.orange-button:hover {
  transform: translateY(-2px);
  background: var(--orange-dark);
  color: #ffffff;
  box-shadow: 0 10px 0 rgba(255, 75, 31, 0.14), 0 22px 54px rgba(255, 75, 31, 0.32);
}

.join-line {
  display: flex;
  width: fit-content;
  margin: 18px auto 0;
  align-items: center;
  gap: 12px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 720;
}

.avatar-stack {
  display: inline-flex;
}

.avatar-stack i {
  width: 30px;
  height: 30px;
  margin-left: -7px;
  border: 2px solid #fffdf8;
  border-radius: 50%;
  background: linear-gradient(135deg, #19b8ff, #006dea);
}

.avatar-stack i:first-child {
  margin-left: 0;
  background: linear-gradient(135deg, #ffba8a, #ff4b1f);
}

.avatar-stack i:nth-child(2) {
  background: linear-gradient(135deg, #111111, #67748a);
}

.works-row {
  display: none;
  flex-wrap: wrap;
  width: fit-content;
  margin: 42px auto 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.works-row span {
  color: rgba(0, 0, 0, 0.42);
  font-size: 0.9rem;
}

.works-row b {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.media-rail {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 2;
  display: flex;
  width: min(1280px, 116vw);
  align-items: flex-end;
  justify-content: center;
  gap: 34px;
  transform: translateX(-50%);
  perspective: 900px;
}

.media-card {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.02)),
    linear-gradient(145deg, #1d72f1, #071426);
  color: #ffffff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
  animation: floatTile 5s ease-in-out infinite;
}

.media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.34), transparent 24%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3));
}

.media-card span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  font-size: 0.78rem;
  font-weight: 950;
}

.media-card strong {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 1;
  font-size: 0.92rem;
}

.media-card.large {
  width: 260px;
  height: 330px;
}

.media-card.small {
  width: 178px;
  height: 270px;
}

.media-card.mini {
  width: 138px;
  height: 220px;
}

.left-card {
  transform: rotateY(22deg) rotateZ(-8deg);
}

.right-card {
  transform: rotateY(-22deg) rotateZ(8deg);
}

.tilt-left {
  transform: rotateZ(-5deg);
  animation-delay: 0.3s;
}

.tilt-right {
  transform: rotateZ(5deg);
  animation-delay: 0.6s;
}

.media-card.alt {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.02)),
    linear-gradient(145deg, #ff4b1f, #071426);
  animation-delay: 0.9s;
}

.platform-dock {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 30px 80px rgba(60, 90, 130, 0.26);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.platform-dock span {
  display: inline-grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  border-radius: 12px;
  background: #ffffff;
  color: #111111;
  font-weight: 950;
}

.platform-dock span:first-child {
  background: #111111;
  color: #ffffff;
}

.platform-dock span:nth-child(2) {
  background: #ff4b1f;
  color: #ffffff;
}

.platform-dock span:nth-child(3) {
  background: #006dea;
  color: #ffffff;
}

.platform-dock em {
  padding: 5px 7px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.55);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 850;
}

.pain-section,
.agent-section,
.marquee-section,
.stats-section,
.final-cta {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.pain-section {
  padding: 82px 0 64px;
  text-align: center;
}

.pain-section h2 {
  max-width: 900px;
  margin: 0 auto;
  font-size: 4.2rem;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.pain-grid article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  background: #ffffff;
  text-align: left;
  box-shadow: 0 24px 60px rgba(30, 50, 80, 0.08);
}

.pain-grid span {
  color: var(--orange);
  font-weight: 950;
}

.pain-grid h3 {
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: 0;
}

.pain-grid p {
  margin: 12px 0 0;
  color: rgba(0, 0, 0, 0.62);
}

.agent-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 44px;
  align-items: center;
  padding: 70px 0 96px;
}

.agent-copy h2 {
  font-size: 3.8rem;
}

.agent-copy p:last-child {
  max-width: 540px;
  color: rgba(0, 0, 0, 0.62);
  font-size: 1.05rem;
}

.agent-board {
  position: relative;
  min-height: 480px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 75, 31, 0.28), transparent 26%),
    radial-gradient(circle at 80% 20%, rgba(24, 184, 255, 0.36), transparent 26%),
    #f4f8ff;
  box-shadow: 0 30px 90px rgba(40, 80, 140, 0.15);
  overflow: hidden;
}

.prompt-card,
.match-card,
.email-card {
  position: absolute;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 60px rgba(30, 50, 80, 0.14);
  backdrop-filter: blur(12px);
}

.prompt-card {
  left: 36px;
  top: 42px;
  width: min(440px, calc(100% - 72px));
  padding: 22px;
}

.prompt-card span,
.match-card span,
.email-card span {
  color: rgba(0, 0, 0, 0.46);
  font-size: 0.82rem;
  font-weight: 850;
}

.prompt-card p,
.email-card p {
  margin: 12px 0 0;
  color: rgba(0, 0, 0, 0.76);
}

.prompt-card button {
  min-height: 42px;
  margin-top: 18px;
  border: 0;
  border-radius: 10px;
  background: #111111;
  color: #ffffff;
  font-weight: 900;
}

.match-card {
  right: 34px;
  top: 188px;
  width: 300px;
  padding: 20px;
}

.match-card strong {
  display: block;
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
}

.match-list {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.match-list i {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, #006dea, #18b8ff);
}

.match-list i:nth-child(2) {
  background: linear-gradient(135deg, #ff4b1f, #ffc2a3);
}

.match-list i:nth-child(3) {
  background: linear-gradient(135deg, #111111, #8fa0b7);
}

.email-card {
  left: 64px;
  bottom: 44px;
  width: 360px;
  padding: 20px;
}

.marquee-section {
  display: grid;
  gap: 12px;
  padding: 42px 0;
  overflow: hidden;
}

.marquee {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: marquee 24s linear infinite;
}

.marquee.reverse {
  animation-direction: reverse;
  animation-duration: 28s;
}

.marquee span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(30, 50, 80, 0.08);
  color: rgba(0, 0, 0, 0.68);
  font-weight: 850;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 70px 0 60px;
}

.stats-section div {
  padding: 28px;
  border-radius: 18px;
  background: #111111;
  color: #ffffff;
  text-align: center;
}

.stats-section strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.6rem;
  font-weight: 500;
  line-height: 0.9;
}

.stats-section span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 850;
}

.final-cta {
  padding: 96px 0 118px;
  text-align: center;
}

.final-cta h2 {
  max-width: 850px;
  margin: 0 auto;
  font-size: 4.75rem;
}

.home-footer {
  display: flex;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.54);
  font-weight: 720;
}

.home-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatTile {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.reveal {
  animation: reveal 800ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.delay-1 {
  animation-delay: 130ms;
}

.delay-2 {
  animation-delay: 260ms;
}

.delay-3 {
  animation-delay: 390ms;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
  }
  50% {
    transform: translateY(-53%) scale(1.015);
  }
}

@keyframes scan {
  0%,
  100% {
    top: 0;
    opacity: 0.2;
  }
  45%,
  55% {
    opacity: 1;
  }
  50% {
    top: 100%;
  }
}

@keyframes pulseRow {
  0%,
  100% {
    background: rgba(6, 20, 58, 0.54);
  }
  50% {
    background: rgba(0, 109, 234, 0.24);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 1080px) {
  .media-rail {
    gap: 18px;
    width: 1260px;
  }

  .media-card.large {
    width: 220px;
    height: 300px;
  }

  .media-card.small {
    width: 150px;
    height: 240px;
  }

  .media-card.mini {
    width: 120px;
    height: 200px;
  }
}

@media (max-width: 940px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 12px 0;
  }

  .nav-links {
    width: 100%;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  h1 {
    font-size: 3.4rem;
  }

  .section-heading h2,
  .cta-copy h2 {
    font-size: 2.45rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: 720px;
    gap: 34px;
    padding: 58px 0 70px;
  }

  .product-preview {
    max-width: 520px;
  }

  .feature-grid,
  .pricing-grid,
  .trust-grid,
  .split,
  .legal-layout,
  .contact-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .hunter-hero {
    min-height: 860px;
  }

  .home-links {
    right: 16px;
  }

  .hero-center h1 {
    font-size: 3.35rem;
  }

  .media-rail {
    bottom: 18px;
    width: 980px;
  }

  .media-card.large {
    width: 185px;
    height: 260px;
  }

  .media-card.small,
  .media-card.mini {
    width: 128px;
    height: 210px;
  }

  .platform-dock {
    width: min(520px, calc(100% - 32px));
    justify-content: center;
  }

  .pain-grid,
  .agent-section,
  .stats-section {
    grid-template-columns: 1fr;
  }

  .pain-section h2,
  .agent-copy h2,
  .final-cta h2 {
    font-size: 3.35rem;
  }

  .page-title h1 {
    font-size: 2.85rem;
  }

  .cta-band .section {
    align-items: flex-start;
    flex-direction: column;
  }

  .agent-board {
    min-height: 560px;
  }

  .match-card,
  .email-card {
    left: 28px;
    right: auto;
    width: min(360px, calc(100% - 56px));
  }

  .match-card {
    top: 210px;
  }

  .email-card {
    bottom: 36px;
  }

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

@media (max-width: 560px) {
  .nav,
  .hero-inner,
  .section,
  .footer-inner,
  .fine-print {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    min-height: 650px;
  }

  .hero-inner {
    min-height: 650px;
  }

  .hero-art img {
    right: -210px;
    width: 560px;
  }

  .button {
    width: 100%;
  }

  .nav-links .button {
    width: auto;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.84rem;
  }

  .nav-links .button.small {
    min-height: 36px;
    padding: 0 12px;
  }

  h1 {
    font-size: 2.7rem;
  }

  .listing-preview {
    grid-template-columns: 1fr;
  }

  .listing-image {
    width: 92px;
  }

  .cta-panel {
    padding: 28px;
  }

  .home-links {
    display: none;
  }

  .top-mark {
    width: 136px;
    height: 52px;
  }

  .hunter-hero {
    min-height: 820px;
    padding-top: 56px;
  }

  .hero-center h1 {
    font-size: 2.55rem;
  }

  .hero-subline {
    font-size: 0.98rem;
  }

  .orange-button {
    width: auto;
    min-width: 210px;
  }

  .join-line {
    display: none;
  }

  .works-row {
    margin-top: 28px;
  }

  .media-rail {
    bottom: 18px;
    width: 760px;
    gap: 12px;
  }

  .media-card.large {
    width: 150px;
    height: 225px;
  }

  .media-card.small,
  .media-card.mini {
    width: 112px;
    height: 188px;
  }

  .platform-dock {
    gap: 6px;
    padding: 10px;
  }

  .platform-dock span {
    min-width: 38px;
    min-height: 38px;
    font-size: 0.78rem;
  }

  .pain-section h2,
  .agent-copy h2,
  .final-cta h2 {
    font-size: 2.65rem;
  }

  .page-title h1 {
    font-size: 2.35rem;
  }

  .stats-section strong {
    font-size: 3.2rem;
  }
}
