:root {
  --navy: #071f4f;
  --navy-2: #06194d;
  --blue: #1267ff;
  --blue-700: #0756ce;
  --blue-soft: #eff6ff;
  --orange: #ff9f1c;
  --green: #16a34a;
  --bg: #f6f9ff;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --danger: #b42318;
  --shadow: 0 18px 50px rgba(7, 31, 79, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

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

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(18, 103, 255, 0.38);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 8px 5vw;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 176px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
}

.nav,
.header-actions,
.hero-actions,
.proof-grid,
.section-heading,
.footer div {
  display: flex;
  align-items: center;
}

.nav {
  gap: clamp(12px, 1.6vw, 24px);
}

.nav a,
.footer a {
  color: #334155;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a:hover,
.footer a:hover,
.text-link:hover {
  color: var(--blue);
}

.header-actions {
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  font-size: 0.94rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.btn.primary {
  color: white;
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(18, 103, 255, 0.22);
}

.btn.primary:hover {
  background: var(--blue-700);
}

.btn.ghost {
  color: #334155;
  background: transparent;
}

.btn.bordered {
  border: 1px solid var(--line);
}

.btn.light {
  background: var(--blue);
}

.btn.outline-light {
  color: white;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 0.96fr) minmax(460px, 1.04fr);
  gap: 42px;
  overflow: hidden;
  padding: 64px 5vw 104px;
  color: white;
  background: var(--navy-2);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(18, 103, 255, 0.58), transparent 26%),
    radial-gradient(circle at 42% 40%, rgba(6, 83, 190, 0.42), transparent 30%),
    linear-gradient(135deg, #061a45 0%, #092c73 52%, #0b43a6 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.48;
  background-image: linear-gradient(120deg, transparent 0%, transparent 48%, rgba(255, 255, 255, 0.06) 48%, rgba(255, 255, 255, 0.06) 52%, transparent 52%);
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-content {
  align-self: center;
  max-width: 780px;
}

.pill,
.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.pill {
  gap: 8px;
  margin-bottom: 18px;
  padding: 9px 14px;
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.star {
  color: var(--orange);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  color: white;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 950;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--navy);
}

.hero-content p {
  max-width: 650px;
  color: #dbeafe;
  font-size: 1.16rem;
  line-height: 1.65;
}

.search-box {
  display: flex;
  align-items: center;
  max-width: 720px;
  margin-top: 32px;
  padding: 8px;
  overflow: hidden;
  background: white;
  border-radius: 18px;
  box-shadow: 0 24px 52px rgba(3, 15, 41, 0.34);
}

.search-box span {
  padding-left: 16px;
  color: rgba(7, 31, 79, 0.55);
  font-size: 1.6rem;
}

.search-box input {
  flex: 1;
  min-width: 0;
  height: 52px;
  padding: 0 16px;
  color: var(--navy);
  background: transparent;
  border: 0;
  outline: 0;
  font-weight: 650;
}

.search-box button {
  height: 48px;
  padding: 0 28px;
  color: white;
  background: var(--blue);
  border: 0;
  border-radius: 12px;
  font-weight: 900;
  cursor: pointer;
}

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

.proof-grid {
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.proof-grid div {
  max-width: 210px;
  padding: 14px 0;
}

.proof-grid strong {
  display: block;
  color: white;
  font-weight: 950;
}

.proof-grid span {
  display: block;
  margin-top: 4px;
  color: #bfdbfe;
  font-size: 0.86rem;
  line-height: 1.4;
}

.hero-visual {
  min-height: 540px;
}

.mascot {
  position: absolute;
  left: 50%;
  bottom: -58px;
  z-index: 2;
  width: min(430px, 78%);
  transform: translateX(-50%);
  filter: drop-shadow(0 34px 42px rgba(0, 0, 0, 0.34));
}

.hero-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 68%;
  height: 150px;
  transform: translateX(-50%);
  background: rgba(18, 103, 255, 0.28);
  border-radius: 999px;
  filter: blur(38px);
}

.floating-product {
  position: absolute;
  z-index: 3;
  width: 176px;
  padding: 12px;
  background: white;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 18px;
  box-shadow: 0 24px 54px rgba(3, 15, 41, 0.3);
  animation: float 6s ease-in-out infinite;
}

.floating-product:nth-child(2) {
  animation-delay: -1.5s;
}

.floating-product:nth-child(3) {
  animation-delay: -3s;
}

@keyframes float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

.floating-product button,
.product-card button {
  position: absolute;
  display: grid;
  place-items: center;
  color: #64748b;
  background: rgba(255, 255, 255, 0.95);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(7, 31, 79, 0.14);
  cursor: pointer;
}

.floating-product button {
  top: 18px;
  right: 18px;
  width: 30px;
  height: 30px;
}

.floating-product img {
  width: 100%;
  height: 116px;
  object-fit: cover;
  border-radius: 14px;
}

.floating-product h3 {
  margin: 10px 0 4px;
  font-size: 0.83rem;
  font-weight: 900;
}

.floating-product div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--navy);
  font-size: 0.78rem;
}

.floating-product span {
  color: #475569;
}

.top-left {
  top: 36px;
  left: 4%;
  transform: rotate(-8deg);
}

.top-right {
  top: 18px;
  right: 2%;
  transform: rotate(8deg);
}

.mid-right {
  top: 228px;
  right: -2%;
  transform: rotate(10deg);
}

.category-wrap {
  position: relative;
  z-index: 4;
  max-width: 1220px;
  margin: -58px auto 0;
  padding: 0 20px;
}

.category-intro {
  padding: 22px 24px 8px;
  background: white;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 8px 24px rgba(7, 31, 79, 0.06);
}

.category-intro h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  background: white;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 20px 20px;
  box-shadow: var(--shadow);
}

.category-strip a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 2px 12px;
  align-items: center;
  min-height: 82px;
  padding: 14px;
  background: white;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  transition: transform 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
}

.category-strip a:hover {
  transform: translateY(-2px);
  border-color: #bfdbfe;
  box-shadow: 0 12px 26px rgba(7, 31, 79, 0.09);
}

.category-strip span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--blue-soft);
  border-radius: 12px;
}

.category-strip strong {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 950;
}

.category-strip small {
  color: var(--muted);
  font-size: 0.76rem;
}

.section,
.split-section,
.store-band,
.cta {
  max-width: 1220px;
  margin: 0 auto;
  padding: 72px 20px;
}

.section-heading {
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-heading.centered {
  justify-content: center;
  text-align: center;
}

.section-heading div {
  max-width: 760px;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.section-heading a,
.text-link {
  color: var(--blue);
  font-weight: 900;
}

.eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.product-grid,
.plans-grid,
.use-grid {
  display: grid;
  gap: 18px;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card,
.plan-card,
.security-panel,
.cta,
.use-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(7, 31, 79, 0.06);
}

.product-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover,
.use-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(7, 31, 79, 0.12);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.product-card button {
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
}

.badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  color: white;
  background: var(--blue);
}

.badge.orange {
  background: var(--orange);
}

.badge.green {
  background: var(--green);
}

.product-card div {
  padding: 15px;
}

.product-card h3 {
  margin-bottom: 4px;
  font-size: 1rem;
  font-weight: 950;
}

.product-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 950;
}

.product-card p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 10px;
  color: #475569;
  font-size: 0.82rem;
}

.product-card p span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: white;
  background: var(--navy);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
}

.product-card p b {
  margin-left: auto;
  color: var(--navy);
}

.product-card small {
  display: inline-flex;
  padding: 6px 10px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
}

.use-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.use-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.use-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  background: rgba(18, 103, 255, 0.08);
  border-radius: 999px;
}

.use-card.seller::after {
  background: rgba(255, 159, 28, 0.16);
}

.use-video-card {
  display: flex;
  padding: 0;
  background: var(--blue-soft);
}

.use-video-card::after {
  display: none;
}

.use-video {
  display: block;
  width: 100%;
  height: clamp(240px, 29vw, 360px);
  object-fit: cover;
  background: var(--navy);
  border-radius: inherit;
}

.use-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: white;
  background: var(--blue);
  border-radius: 14px;
  font-size: 1.35rem;
  font-weight: 900;
}

.use-card h3 {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.05;
}

.use-card p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.65;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 32px;
  align-items: center;
}

.copy-block p,
.store-band p,
.plan-card p,
.cta p,
.footer p {
  color: var(--muted);
  line-height: 1.65;
}

.security-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.security-panel div {
  padding: 18px;
  background: #f8fbff;
  border: 1px solid #eef2f7;
  border-radius: 16px;
}

.security-panel span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  color: white;
  background: var(--green);
  border-radius: 999px;
  font-weight: 900;
}

.security-panel strong {
  color: var(--navy);
  font-weight: 950;
}

.security-panel p {
  margin: 6px 0 0;
  color: var(--muted);
}

.store-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) 320px;
  gap: 32px;
  align-items: center;
  max-width: none;
  padding-inline: 5vw;
  color: white;
  background:
    linear-gradient(135deg, rgba(6, 25, 77, 0.95), rgba(8, 44, 114, 0.98)),
    var(--navy);
  overflow: hidden;
}

.store-band h2,
.store-band .eyebrow {
  color: white;
}

.store-band p {
  max-width: 700px;
  color: #dbeafe;
}

.store-band img {
  justify-self: center;
  max-height: 330px;
  object-fit: contain;
  filter: drop-shadow(0 30px 32px rgba(0, 0, 0, 0.25));
}

.plans-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-card {
  position: relative;
  padding: 28px;
}

.plan-card.featured {
  border-color: #93c5fd;
  box-shadow: 0 0 0 4px #dbeafe, 0 18px 42px rgba(18, 103, 255, 0.12);
}

.plan-card .badge {
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
}

.plan-card h3 {
  font-size: 1.25rem;
  font-weight: 950;
}

.plan-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 1.8rem;
  font-weight: 950;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  color: #334155;
  font-size: 0.95rem;
}

.plan-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green);
  font-weight: 900;
}

.cta {
  display: grid;
  gap: 24px;
  margin-bottom: 72px;
  padding: 28px;
}

.cta-intro {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.cta img {
  width: 150px;
  height: 90px;
  object-fit: contain;
  object-position: left center;
}

.cta h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.cta p {
  margin-bottom: 0;
}

.signup-form {
  display: grid;
  gap: 18px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  opacity: 0;
}

.form-fields {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-fields legend {
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 950;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 850;
}

.field label span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form input[type="tel"],
.signup-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: var(--navy);
  background: #fbfdff;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
}

.signup-form textarea {
  min-height: 94px;
  padding: 12px 14px;
  resize: vertical;
}

.signup-form input:focus,
.signup-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px #dbeafe;
}

.error-message {
  min-height: 18px;
  color: var(--danger);
  font-size: 0.8rem;
  font-weight: 750;
}

.field.has-error input,
.field.has-error textarea {
  border-color: #fda29b;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 4px;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.submit-feedback {
  min-height: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.submit-feedback.error {
  color: var(--danger);
}

.success-panel {
  padding: 24px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 18px;
}

.success-panel h3 {
  font-size: 1.45rem;
}

.success-panel p {
  margin-bottom: 18px;
}

.footer {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px 5vw;
  background: white;
  border-top: 1px solid var(--line);
}

.footer img {
  width: 170px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.footer p {
  margin-bottom: 0;
}

.footer div {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 18px;
}

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

@media (max-width: 1180px) {
  .nav {
    display: none;
  }
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .category-strip,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .store-band,
  .cta-intro {
    grid-template-columns: 1fr;
  }

  .plans-grid,
  .use-grid {
    grid-template-columns: 1fr;
  }

  .cta img {
    display: none;
  }

  .footer {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 8px 18px;
  }

  .brand img {
    width: 136px;
  }

  .header-actions .ghost {
    display: none;
  }

  .header-actions .btn {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: auto;
    padding: 44px 18px 64px;
  }

  h1 {
    font-size: 3.05rem;
  }

  .search-box {
    display: grid;
    grid-template-columns: 34px 1fr;
  }

  .search-box button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .proof-grid {
    display: grid;
  }

  .hero-visual {
    min-height: 410px;
  }

  .floating-product {
    width: 142px;
  }

  .floating-product img {
    height: 88px;
  }

  .top-left {
    left: -8px;
  }

  .top-right {
    right: -6px;
  }

  .mid-right {
    display: none;
  }

  .category-wrap {
    margin-top: -34px;
    padding-inline: 18px;
  }

  .category-strip,
  .product-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .split-section,
  .store-band,
  .cta {
    padding: 58px 18px;
  }

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

  .cta {
    margin-inline: 18px;
    padding: 22px;
  }

  .form-actions {
    display: grid;
  }

  .form-actions .btn {
    width: 100%;
  }

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