:root {
  color-scheme: light;
  --ink: #090b10;
  --muted: #566174;
  --line: #e5e9f2;
  --soft: #f5f7fb;
  --orange: #ff8a00;
  --blue: #3a57fa;
  --deep: #080b10;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(58, 87, 250, 0.16), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(255, 138, 0, 0.2), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f7f8ff 48%, #f1f3ff 100%);
  color: var(--ink);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 32px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 34px rgba(15, 23, 42, 0.08);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand img,
.footer-brand img {
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav > a:not(.button) {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
}

.desktop-nav > a:not(.button):hover {
  background: #f1f4ff;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 0 14px;
  cursor: pointer;
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-dropdown summary:hover,
.nav-dropdown[open] summary {
  background: #f1f4ff;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 30;
  min-width: 230px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.nav-dropdown-menu a {
  min-height: 38px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  padding: 0 11px;
}

.nav-dropdown-menu a:hover {
  background: #f1f4ff;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(24, 28, 42, 0.12);
}

.button-blue {
  color: #fff;
  background: var(--blue);
}

.button-dark {
  color: #fff;
  background: var(--deep);
}

.button-light {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #f3f5fb;
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span,
.mobile-menu summary::before,
.mobile-menu summary::after {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  display: block;
}

.mobile-menu nav {
  position: absolute;
  right: 0;
  top: 52px;
  width: min(86vw, 330px);
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.mobile-menu nav a {
  min-height: 42px;
  display: flex;
  align-items: center;
  border-radius: 12px;
  padding: 0 12px;
  font-weight: 800;
}

.hero {
  padding: 70px 24px 90px;
  background:
    radial-gradient(circle at 12% 18%, rgba(58, 87, 250, 0.2), transparent 30%),
    radial-gradient(circle at 22% 80%, rgba(255, 141, 0, 0.22), transparent 32%),
    radial-gradient(circle at 92% 70%, rgba(83, 100, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #fff 0%, #fbfcff 36%, #f2f4ff 100%);
}

.hero-copy {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.app-kicker,
.shopify-proof {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 900;
}

.app-kicker img {
  border-radius: 10px;
}

.hero h1 {
  max-width: 980px;
  margin: 18px auto;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--orange);
}

.hero-lede {
  max-width: 760px;
  margin: 0 auto 8px;
  color: #252b36;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  font-weight: 600;
}

.shopify-proof {
  color: #4d5a70;
  font-size: 15px;
}

.feature-grid {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 34px auto 0;
}

.feature-grid article {
  min-height: 112px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(13, 16, 23, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(24, 28, 42, 0.07);
  text-align: left;
}

.icon {
  grid-row: span 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: var(--orange);
  font-weight: 900;
}

.feature-grid h2,
.feature-grid p {
  margin: 0;
}

.feature-grid h2 {
  font-size: 18px;
}

.feature-grid p {
  color: var(--muted);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.video-frame {
  position: relative;
  width: min(90vw, 980px);
  aspect-ratio: 16 / 9;
  margin: 34px auto 0;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 22px;
  background: #f7f8ff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18), 0 2px 0 rgba(255, 255, 255, 0.78) inset;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-controls {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(9, 11, 16, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
}

.video-controls button {
  height: 36px;
  border: 0;
  border-radius: 999px;
  padding: 0 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 800;
  cursor: pointer;
}

.section {
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 76px 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section h2,
.section-heading h2,
.support-card h1,
.policy-hero h1 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.06;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article,
.support-grid article {
  display: flex;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(18, 24, 38, 0.06);
}

.steps strong {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--deep);
  color: #fff;
  flex: 0 0 34px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.apps-section {
  padding-top: 44px;
}

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

.app-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 58px rgba(18, 24, 38, 0.07);
}

.app-card img,
.app-card-mark {
  margin-bottom: 18px;
}

.app-card-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  font-weight: 950;
}

.app-card h3 {
  margin: 0 0 10px;
  font-size: 26px;
}

.app-card p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.62;
}

.app-card > a,
.app-card-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 16px;
  color: #fff;
  background: var(--deep);
  font-weight: 900;
}

.app-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}

.app-card-actions a:first-child {
  color: var(--ink);
  background: #f2f5ff;
}

.search-hero {
  width: min(1180px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: center;
  margin: 0 auto;
  padding: 72px 0 54px;
}

.search-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.03;
}

.search-hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: #252b36;
  font-size: 19px;
  line-height: 1.62;
  font-weight: 600;
}

.search-hero .hero-actions {
  justify-content: flex-start;
}

.search-demo-card {
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.15);
}

.demo-search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f7f9ff;
  color: var(--muted);
  font-weight: 800;
}

.demo-search-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: var(--blue);
  font-weight: 950;
}

.demo-products {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.demo-products article {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.demo-product-image {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(58, 87, 250, 0.18), rgba(255, 138, 0, 0.22)),
    #f4f6ff;
}

.demo-product-image.orange {
  background:
    radial-gradient(circle at 36% 34%, rgba(255, 255, 255, 0.78), transparent 24%),
    linear-gradient(135deg, rgba(255, 138, 0, 0.28), rgba(255, 183, 77, 0.52)),
    #fff4e2;
}

.demo-product-image.blue {
  background:
    radial-gradient(circle at 36% 34%, rgba(255, 255, 255, 0.78), transparent 24%),
    linear-gradient(135deg, rgba(58, 87, 250, 0.28), rgba(125, 143, 255, 0.52)),
    #eef2ff;
}

.demo-products strong {
  font-size: 15px;
}

.demo-products span,
.demo-watermark {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.demo-watermark {
  margin: 18px 0 0;
  letter-spacing: 0.12em;
}

.search-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.search-feature-list article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(18, 24, 38, 0.06);
}

.search-feature-list span {
  color: var(--orange);
  font-weight: 950;
}

.search-feature-list h3 {
  margin: 12px 0 8px;
}

.search-feature-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

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

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

.plan {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 58px rgba(18, 24, 38, 0.07);
}

.plan.featured {
  color: #fff;
  background: var(--deep);
  border-color: #111827;
  box-shadow: 0 28px 90px rgba(8, 11, 16, 0.22);
}

.badge {
  width: max-content;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 138, 0, 0.12);
  color: var(--orange);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.plan h3 {
  margin: 0 0 8px;
  font-size: 25px;
}

.price {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 38px;
  line-height: 1;
  font-weight: 950;
}

.featured .price {
  color: var(--orange);
}

.price span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.featured .price span {
  color: rgba(255, 255, 255, 0.68);
}

.plan ul {
  display: grid;
  gap: 11px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  flex: 1;
}

.plan li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.45;
}

.featured li {
  color: rgba(255, 255, 255, 0.82);
}

.plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--blue));
}

.plan a {
  margin-top: auto;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  color: var(--deep);
  background: var(--orange);
  font-weight: 950;
}

.featured a {
  background: #fff;
}

.site-footer {
  width: min(1180px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  margin: 0 auto;
  padding: 48px 0 30px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  color: var(--muted);
}

.site-footer p {
  max-width: 620px;
  line-height: 1.6;
}

.site-footer nav {
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 14px;
}

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

.policy-page,
.support-page {
  width: min(1120px, calc(100vw - 40px));
  margin: 0 auto 72px;
  padding-top: 28px;
}

.policy-hero,
.support-card {
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 138, 0, 0.2), transparent 28%),
    radial-gradient(circle at 86% 8%, rgba(58, 87, 250, 0.24), transparent 30%),
    linear-gradient(135deg, #101114, #171b2b);
  padding: 58px 54px;
  margin: 18px 0 28px;
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.18);
}

.policy-hero .eyebrow,
.support-card .eyebrow {
  color: #fff;
}

.policy-hero p,
.support-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.65;
}

.policy-card {
  padding: 42px 46px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.07);
}

.policy-card h2 {
  margin: 42px 0 16px;
  font-size: clamp(26px, 3vw, 38px);
}

.policy-card h3 {
  margin: 26px 0 10px;
  font-size: 21px;
}

.policy-card p,
.policy-card li {
  color: #354055;
  font-size: 16px;
  line-height: 1.72;
}

.policy-card ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 20px;
  padding-left: 22px;
}

.policy-card a,
.support-card a {
  color: #2348ff;
  font-weight: 900;
}

.support-card .button {
  color: #fff;
  margin-top: 12px;
}

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

.support-grid article {
  display: block;
}

.support-grid h2,
.support-grid p {
  margin: 0;
}

.support-grid h2 {
  margin-bottom: 10px;
}

.support-grid p {
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 1040px) {
  .pricing-grid,
  .support-grid,
  .semantic-pricing .pricing-grid,
  .search-feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .search-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 0 14px;
  }

  .brand span {
    display: none;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    padding: 48px 16px 62px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .feature-grid,
  .pricing-grid,
  .app-cards,
  .search-feature-list,
  .semantic-pricing .pricing-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .button {
    width: min(100%, 320px);
  }

  .video-frame {
    width: 100%;
    border-radius: 16px;
  }

  .video-controls {
    right: 10px;
    bottom: 10px;
    padding: 6px;
  }

  .video-controls button {
    height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }

  .section,
  .search-hero,
  .site-footer,
  .policy-page,
  .support-page {
    width: calc(100vw - 28px);
  }

  .search-hero {
    padding: 48px 0 36px;
  }

  .search-demo-card {
    padding: 16px;
    border-radius: 18px;
  }

  .policy-hero,
  .support-card {
    padding: 38px 24px;
    border-radius: 18px;
  }

  .policy-card {
    padding: 28px 22px;
  }

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