@font-face {
  font-family: "Mantul";
  src: url("../fonts/Mantul.otf") format("opentype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DINPro";
  src: url("../fonts/DINPro-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-display: "Mantul", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "DINPro", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --turquoise: #00f5c9;
  --turquoise-soft: rgba(0, 245, 201, 0.12);
  --turquoise-border: rgba(0, 245, 201, 0.35);
  --deep-blue: #1a1e4f;
  --deep-blue-soft: rgba(26, 30, 79, 0.55);
  --beige: #f2f2e4;
  --bg: #000000;
  --bg-card: #0a0a14;
  --bg-card-2: #11142a;
  --border: rgba(242, 242, 228, 0.08);
  --border-strong: rgba(242, 242, 228, 0.16);
  --fg: #ffffff;
  --fg-muted: #b8b8c8;
  --fg-dim: #7b7b8c;
  --radius: 14px;
  --radius-lg: 20px;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-transform: none;
}
p { margin: 0; color: var(--fg-muted); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.accent { color: var(--turquoise); }
.muted { color: var(--fg-muted); }

/* brand glow background — deep blue → black gradient with turquoise halo */
body::before {
  content: "";
  position: fixed;
  inset: -20% -10% auto -10%;
  height: 75vh;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, var(--turquoise-soft), transparent 55%),
    radial-gradient(ellipse 90% 80% at 50% 0%, var(--deep-blue-soft), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
main, header, footer { position: relative; z-index: 1; }

/* nav — transparent, blends 1:1 with page background */
.nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent;
  border-bottom: none;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: var(--max); margin: 0 auto;
}
.brand {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 12px;
  row-gap: 0;
  align-items: center;
  font-weight: 600;
  text-transform: none;
}
.brand img {
  width: 32px; height: 32px; border-radius: 8px;
  grid-row: 1 / span 2;
  grid-column: 1;
}
.brand-mark {
  font-size: 15px; letter-spacing: -0.01em;
  grid-column: 2; grid-row: 1;
  align-self: end;
  line-height: 1.1;
}
.brand-sub {
  color: var(--fg-dim); font-size: 13px; font-weight: 500;
  grid-column: 2; grid-row: 2;
  align-self: start;
  line-height: 1.1;
}
@media (max-width: 480px) {
  .brand { column-gap: 10px; }
  .brand img { width: 28px; height: 28px; grid-row: 1; grid-column: 1; }
  .brand-mark { font-size: 13px; grid-column: 2; grid-row: 1; align-self: center; }
  .brand-sub { grid-column: 1 / -1; grid-row: 2; font-size: 10px; margin-top: 3px; }
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--fg-muted); font-size: 14px; transition: color .15s; }
.nav-links a:hover { color: var(--fg); }
.nav-cta { display: flex; gap: 14px; align-items: center; }
.nav-bfs img { height: 45px; width: auto; display: block; }
@media (max-width: 900px) {
  .nav-bfs img { height: auto; width: 110px; }
}
@media (max-width: 480px) {
  .nav-bfs img { width: 90px; }
}
.nav-toggle { display: none; background: none; border: 1px solid var(--border-strong); color: var(--fg); width: 40px; height: 40px; border-radius: 10px; cursor: pointer; }
@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: rgba(10, 10, 20, 0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding: 16px 24px; border-bottom: 1px solid var(--border); gap: 14px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-cta .btn-ghost { display: none; }
}

/* shopify app store button (image-based) */
.btn-shopify {
  display: inline-flex;
  transition: transform .15s, filter .15s;
  border-radius: 10px;
}
.btn-shopify img {
  height: 44px;
  width: auto;
  display: block;
}
.btn-shopify:hover { transform: translateY(-1px); filter: brightness(1.08); }
.nav-cta .btn-shopify img { height: 38px; }

/* generic buttons (secondary + misc) */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 10px; font-weight: 600; font-size: 14px;
  transition: transform .15s, background .15s, border-color .15s, color .15s;
  border: 1px solid transparent; cursor: pointer;
}
.btn-primary {
  background: var(--turquoise);
  color: #001512;
  box-shadow: 0 10px 30px -10px rgba(0, 245, 201, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.08); }
.btn-lg {
  padding: 16px 28px;
  font-size: 15px;
  border-radius: 12px;
  letter-spacing: 0.01em;
}
.btn-lg svg { width: 18px; height: 18px; }
.btn-shopify-sm img { height: 40px; }
.btn-ghost { background: transparent; color: var(--fg); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--turquoise); color: var(--fg); }
.btn svg { width: 16px; height: 16px; }

/* hero — custom, no screenshot (extra top padding to clear the absolute nav) */
.hero {
  position: relative;
  padding: 180px 0 140px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 20%, rgba(0, 245, 201, 0.18), transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(26, 30, 79, 0.6), transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--turquoise-border), transparent);
  z-index: 0;
}
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px;
  background: var(--turquoise-soft); color: var(--turquoise);
  border: 1px solid var(--turquoise-border);
  font-family: var(--font-body);
  font-size: 12px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 32px;
}
.hero .eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--turquoise);
  box-shadow: 0 0 0 0 var(--turquoise);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0, 245, 201, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(0, 245, 201, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 245, 201, 0); }
}
.hero h1 {
  font-size: clamp(38px, 6.2vw, 80px);
  max-width: 880px;
  margin: 0 auto 28px;
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.hero h1 .accent {
  display: inline;
  color: var(--turquoise);
  position: relative;
}
.hero p.lead {
  font-size: clamp(16px, 1.6vw, 20px);
  max-width: 640px;
  margin: 0 auto 40px;
  color: var(--fg-muted);
  line-height: 1.6;
  text-transform: none;
}
.hero-ctas { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; align-items: center; margin-bottom: 18px; }
.hero-ctas .btn-shopify img { height: 52px; }
.hero-appstore {
  display: flex; justify-content: center;
  margin-bottom: 28px;
}
.hero-appstore .btn-shopify img { height: 40px; opacity: 0.9; transition: opacity .15s; }
.hero-appstore .btn-shopify:hover img { opacity: 1; }
.hero-appstore-note {
  display: block;
  font-family: var(--font-body);
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 10px;
}

/* hero chips — brand feature tags under CTAs */
.hero-chips {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px; max-width: 720px; margin: 44px auto 0;
}
.hero-chips span {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(242, 242, 228, 0.02);
  color: var(--fg-muted);
}
.hero-chips span::before {
  content: "";
  display: inline-block;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--turquoise);
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
}

/* hero BFS badge wrapper */
.hero-bfs { margin-bottom: 8px; }

/* built for shopify badge (official asset) */
.bfs {
  display: inline-flex;
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
}
.bfs img {
  height: 45px;
  width: auto;
  display: block;
}
.footer-bfs img { height: 45px; }

/* section */
section { padding: 100px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .kicker { color: var(--turquoise); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 14px; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 16px; }
.section-head p { font-size: 17px; }

/* features */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 900px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .2s, transform .2s, background .2s;
}
.feature:hover { border-color: var(--turquoise-border); transform: translateY(-2px); background: var(--bg-card-2); }
.feature-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--turquoise-soft); color: var(--turquoise);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 20px; height: 20px; }
.feature h3 { font-size: 18px; margin-bottom: 8px; text-transform: none; letter-spacing: -0.01em; }
.feature p { font-size: 15px; }

/* showcase — alternating image + text rows */
.showcase { display: flex; flex-direction: column; gap: 120px; }
.show-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.show-row:nth-child(even) .show-media { order: 2; }
.show-row:nth-child(even) .show-copy { order: 1; }
.show-copy .kicker {
  color: var(--turquoise);
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  margin-bottom: 16px;
}
.show-copy h3 {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.show-copy p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
}
.show-copy ul {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: flex; flex-direction: column; gap: 12px;
}
.show-copy li {
  font-size: 15px; color: var(--fg-muted);
  display: flex; align-items: flex-start; gap: 12px;
}
.show-copy li::before {
  content: ""; flex-shrink: 0;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--turquoise-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2300f5c9'%3E%3Cpath fill-rule='evenodd' d='M16.7 5.3a1 1 0 010 1.4l-8 8a1 1 0 01-1.4 0l-4-4a1 1 0 111.4-1.4L8 12.6l7.3-7.3a1 1 0 011.4 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 14px; background-repeat: no-repeat; background-position: center;
  margin-top: 2px;
}
.show-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow:
    0 30px 80px -30px rgba(0, 245, 201, 0.12),
    0 0 0 1px rgba(255,255,255,0.02);
}
.show-media img { width: 100%; display: block; }
@media (max-width: 900px) {
  .showcase { gap: 80px; }
  .show-row { grid-template-columns: 1fr; gap: 28px; }
  .show-row:nth-child(even) .show-media { order: 0; }
  .show-row:nth-child(even) .show-copy { order: 1; }
}

/* how it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; position: relative;
}
.step-num {
  font-size: 14px; color: var(--turquoise); font-weight: 700;
  margin-bottom: 14px; letter-spacing: .1em;
}
.step h3 { font-size: 20px; margin-bottom: 10px; text-transform: none; letter-spacing: -0.01em; }

/* pricing */
.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.price {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  display: flex; flex-direction: column;
}
.price.featured {
  border-color: var(--turquoise);
  background: linear-gradient(180deg, rgba(0, 245, 201, 0.06), var(--bg-card) 60%);
}
.price .tier { font-size: 13px; color: var(--turquoise); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 8px; font-weight: 600; }
.price h3 { font-size: 36px; margin-bottom: 4px; }
.price h3 small { font-size: 14px; color: var(--fg-muted); font-weight: 500; }
.price .sub { font-size: 14px; color: var(--fg-muted); margin-bottom: 20px; }
.price ul { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.price li { font-size: 14px; display: flex; align-items: flex-start; gap: 10px; }
.price li::before {
  content: ""; flex-shrink: 0; width: 18px; height: 18px;
  background: var(--turquoise-soft); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2300f5c9'%3E%3Cpath fill-rule='evenodd' d='M16.7 5.3a1 1 0 010 1.4l-8 8a1 1 0 01-1.4 0l-4-4a1 1 0 111.4-1.4L8 12.6l7.3-7.3a1 1 0 011.4 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 14px; background-repeat: no-repeat; background-position: center;
}
.price .btn, .price .btn-shopify { margin-top: auto; justify-content: center; }
.price .btn-shopify img { height: 44px; }

/* cta band — black with turquoise halo + hairline glow */
.band {
  position: relative;
  border: 1px solid var(--turquoise-border);
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  background:
    radial-gradient(ellipse 70% 90% at 50% 0%, rgba(0, 245, 201, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 100% at 50% 100%, rgba(0, 245, 201, 0.06), transparent 70%),
    #050505;
  text-align: center;
  overflow: hidden;
  box-shadow:
    0 40px 120px -40px rgba(0, 245, 201, 0.25),
    inset 0 1px 0 rgba(0, 245, 201, 0.15);
}
.band::before {
  content: "";
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--turquoise), transparent);
  opacity: 0.9;
}
.band h2 { font-size: clamp(30px, 3.2vw, 44px); margin-bottom: 16px; }
.band p { max-width: 560px; margin: 0 auto 32px; color: var(--fg-muted); }
.band-appstore { margin-top: 18px; }
.band-appstore .btn-shopify img { height: 40px; opacity: 0.9; transition: opacity .15s; }
.band-appstore .btn-shopify:hover img { opacity: 1; }

/* resources */
.resources { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .resources { grid-template-columns: 1fr; } }
.res {
  display: block; padding: 24px; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border);
  transition: border-color .15s, transform .15s, background .15s;
}
.res:hover { border-color: var(--turquoise-border); transform: translateY(-2px); background: var(--bg-card-2); }
.res h4 { font-size: 16px; margin-bottom: 6px; display: flex; align-items: center; justify-content: space-between; text-transform: none; letter-spacing: -0.01em; }
.res h4 svg { width: 14px; height: 14px; color: var(--turquoise); }
.res p { font-size: 14px; }

/* footer */
footer {
  border-top: 1px solid var(--border);
  margin-top: 60px;
  padding: 48px 0 36px;
}
.foot {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 900px) { .foot { grid-template-columns: 1fr 1fr; } }
.foot h5 { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: var(--fg-dim); margin-bottom: 16px; font-weight: 600; }
.foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot a { color: var(--fg-muted); font-size: 14px; }
.foot a:hover { color: var(--fg); }
.foot-top { max-width: 320px; }
.foot-top p { font-size: 14px; margin-top: 14px; }
.foot-logo { display: inline-block; }
.foot-logo img {
  height: 40px; width: auto; display: block;
  opacity: 0.95; transition: opacity .15s;
}
.foot-logo:hover img { opacity: 1; }
.foot-bottom a { color: var(--fg-muted); text-decoration: none; transition: color .15s; }
.foot-bottom a:hover { color: var(--turquoise); }
.foot-bottom {
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: var(--fg-dim);
}

/* legal page — matches main page container width */
.legal { max-width: 100%; margin: 0 auto; padding: 140px 0 60px; }
.legal-body { max-width: 820px; }
.legal h1 { font-size: clamp(32px, 4vw, 44px); margin-bottom: 8px; }
.legal .date { color: var(--fg-dim); font-size: 14px; margin-bottom: 40px; }
.legal h1 { text-transform: none; letter-spacing: -0.02em; }
.legal h2 { font-size: 22px; margin-top: 36px; margin-bottom: 14px; text-transform: none; letter-spacing: -0.01em; }
.legal h3 { font-size: 17px; margin-top: 26px; margin-bottom: 10px; color: var(--fg); text-transform: none; letter-spacing: 0; }
.legal p, .legal li { color: var(--fg-muted); font-size: 15px; line-height: 1.75; }
.legal ul { padding-left: 22px; margin: 12px 0; }
.legal li { margin-bottom: 4px; }
.legal a { color: var(--turquoise); }
.legal a:hover { text-decoration: underline; }

/* reveal — only hides if JS is ready; otherwise content is always visible */
.js-ready .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.js-ready .reveal.in { opacity: 1; transform: none; }
