/* EmbroideryBreeze landing page
   Palette sampled from logo.png / logo_image.png:
   teal #16CCC9 · cyan #1FC9E5 · blue #608BE1 · navy #00002B */

:root {
  --teal: #16ccc9;
  --cyan: #1fc9e5;
  --blue: #608be1;
  --navy: #101033;
  --ink: #101033;
  --body: #454866;
  --muted: #6b6e8c;
  --bg: #f7f8f7;
  --card: #ffffff;
  --line: #e6e8f0;
  --grad: linear-gradient(100deg, var(--teal), var(--cyan) 50%, var(--blue));
  --radius: 16px;
  --shadow: 0 10px 30px rgba(16, 16, 51, 0.08);
  --shadow-lg: 0 24px 60px rgba(16, 16, 51, 0.14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--body);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow { max-width: 760px; }

h1, h2, h3 { color: var(--ink); line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin-bottom: 16px; }
h3 { font-size: 1.15rem; margin-bottom: 8px; font-weight: 700; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}

.micro { font-size: 0.85rem; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 26px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 0.95rem;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 20px rgba(31, 201, 229, 0.35);
}
.btn-primary:hover { box-shadow: 0 12px 28px rgba(31, 201, 229, 0.45); }
.btn-outline {
  border-color: var(--cyan);
  color: var(--ink);
  background: #fff;
}
.btn-outline:hover { background: #eefbfc; }
.btn-ghost { color: var(--ink); }
.btn-ghost:hover { background: #eef0f6; }
.btn-lg { padding: 15px 34px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: 0.88rem; }
.btn-block { display: block; text-align: center; margin-top: 12px; }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: #f0fbfc; }
.btn-outline-white { border-color: rgba(255,255,255,0.8); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 248, 247, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-mark { width: 38px; height: 38px; border-radius: 9px; }
.brand-name { font-weight: 800; color: var(--ink); font-size: 1.12rem; letter-spacing: -0.02em; white-space: nowrap; }
.brand-name em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-links { display: flex; gap: 24px; margin-left: auto; }
.nav-links a {
  color: var(--body);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.93rem;
}
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; gap: 8px; align-items: center; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  padding: 44px 0 72px;
  text-align: center;
  background:
    radial-gradient(60% 50% at 15% 0%, rgba(22, 204, 201, 0.12), transparent 70%),
    radial-gradient(55% 45% at 85% 10%, rgba(96, 139, 225, 0.12), transparent 70%),
    var(--bg);
}
.hero-inner { max-width: 860px; }
.hero-logo {
  display: block;
  width: min(600px, 88vw);
  height: auto;
  margin: 0 auto 22px;
}
.pill {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--body);
  margin-bottom: 22px;
  box-shadow: var(--shadow);
}
.pill strong { color: var(--ink); }
.pill s { color: var(--muted); }
.lede {
  font-size: 1.15rem;
  max-width: 680px;
  margin: 18px auto 30px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

/* Screenshot placeholders (swap in real captures later) */
.shot {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.shot-bar {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  background: #eef0f6;
  border-bottom: 1px solid var(--line);
}
.shot-bar span { width: 10px; height: 10px; border-radius: 50%; background: #cfd3e2; }
.shot-bar span:first-child { background: var(--teal); }
.shot-bar span:nth-child(2) { background: var(--cyan); }
.shot-bar span:nth-child(3) { background: var(--blue); }
.shot-body {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px;
  color: var(--muted);
  font-size: 0.9rem;
}
.hero-shot { margin-top: 52px; }
.hero-shot .shot-body { min-height: 340px; background: #f7f8f7; } /* matches logo.png background */
.shot-logo { max-width: 320px; }

/* ---------- Download buttons ---------- */
.download-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.btn-dl {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  min-width: 220px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  text-decoration: none;
  text-align: left;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.btn-dl:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cyan);
}
.btn-dl-icon {
  flex: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: var(--grad);
  color: #fff;
}
.btn-dl-text { display: flex; flex-direction: column; gap: 1px; }
.btn-dl-os { font-size: 0.98rem; font-weight: 700; color: var(--ink); }
.btn-dl-sub { font-size: 0.78rem; font-weight: 500; color: var(--muted); }
.hero-formats {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.hero-formats strong { color: var(--ink); letter-spacing: 0.03em; }
.hero-formats-sub { font-size: 0.85rem; }
.hero-formats a { color: var(--ink); font-weight: 600; }
.hero-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-lede { max-width: 640px; margin-bottom: 40px; font-size: 1.05rem; }

.grid { display: grid; gap: 20px; margin-top: 36px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.section-alt .card { background: var(--bg); }
.card p { font-size: 0.95rem; }
.card-icon {
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(22,204,201,0.14), rgba(96,139,225,0.14));
  color: var(--ink);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 14px;
}
.persona { border-top: 3px solid; border-image: var(--grad) 1; }

/* ---------- Steps ---------- */
.steps {
  list-style: none;
  margin-top: 40px;
  display: grid;
  gap: 18px;
  max-width: 720px;
}
.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.step p { font-size: 0.95rem; }
.step-num {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shot-row { margin-top: 44px; }
.shot-row .shot-body { min-height: 160px; }

/* ---------- Honesty box ---------- */
.honest {
  margin-top: 44px;
  background: var(--navy);
  color: #c9cbe4;
  border-radius: var(--radius);
  padding: 36px;
}
.honest h3 { color: #fff; font-size: 1.3rem; }
.honest h3 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.honest ul { margin: 14px 0 18px 20px; display: grid; gap: 8px; }
.honest-close { color: #fff; font-weight: 600; }

/* ---------- Compatibility ---------- */
.grid-2 { grid-template-columns: 1fr 1fr; }
.compat-grid { align-items: start; }
.check-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 14px;
  font-size: 0.95rem;
}
.check-list li { padding-left: 28px; position: relative; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.check-list strong { color: var(--ink); }
.compat-note { font-size: 0.9rem; margin-bottom: 14px; }
.compat-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}
.compat-table th, .compat-table td {
  text-align: left;
  padding: 9px 12px;
  border-bottom: 1px solid var(--line);
}
.compat-table th {
  color: var(--ink);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.compat-table td strong { color: var(--ink); }
.compat-table tr:last-child td { border-bottom: none; }
.compat-foot { margin-top: 18px; }

/* ---------- Pricing ---------- */
.price-card {
  max-width: 480px;
  margin: 36px auto 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  border-radius: 999px;
  white-space: nowrap;
}
.price { margin: 14px 0 22px; color: var(--muted); }
.price s { font-size: 1.2rem; margin-right: 8px; }
.price-now {
  font-size: 3rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.price-note { font-size: 0.9rem; margin-left: 6px; }
.price-list {
  list-style: none;
  text-align: left;
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
  font-size: 0.95rem;
}
.price-list li { padding-left: 28px; position: relative; }
.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-card .micro { margin-top: 14px; }
.addon-note {
  max-width: 560px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
}
.addon-note strong { color: var(--ink); }

/* ---------- FAQ ---------- */
.faq {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 14px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cyan);
  transition: transform 0.15s ease;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq p { margin-top: 12px; font-size: 0.95rem; }

/* ---------- Final CTA ---------- */
.cta-band {
  background: var(--grad);
  color: #fff;
  text-align: center;
  padding: 88px 0;
}
.cta-inner h2 { color: #fff; }
.cta-inner p { font-size: 1.15rem; margin-bottom: 30px; opacity: 0.95; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 36px 0; background: #fff; }
.footer-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 20px; margin-left: auto; }
.footer-links a { color: var(--body); text-decoration: none; font-size: 0.9rem; }
.footer-links a:hover { color: var(--ink); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 18px 24px;
    gap: 14px;
  }
  .nav.open .nav-actions {
    display: flex;
    position: absolute;
    top: calc(68px + 220px);
    left: 0;
    right: 0;
    background: #fff;
    padding: 0 24px 18px;
    border-bottom: 1px solid var(--line);
  }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { padding: 30px 0 56px; }
  .price-card { padding: 32px 24px; }
  .honest { padding: 26px; }
}
