:root{
  --ink:#0b0d12;
  --bg:#f6f4ef;
  --muted:#8a8f98;
  --card:#ffffff;
  --border:rgba(11,13,18,.10);
  --accent:#ff4d2e;
  --radius:14px;
  --shadow: 0 10px 30px rgba(11,13,18,.08);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.5;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{width:min(1120px,92%);margin:0 auto}

/* Top bar */
.topbar{
  background:var(--ink);
  color:#fff;
  font-size:14px;
}
.topbar p{margin:0;padding:10px 0;text-align:center;opacity:.9}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  background:#ffffff;
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex;
  align-items:center;
  gap:20px;
  padding:16px 0;
}

/* Brand */
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
}
.brand-mark{
  width:34px;
  height:34px;
  border-radius:10px;
  display:grid;
  place-items:center;

  /* make it match the logo: white background */
  background:#fff;
  border:1px solid var(--border);
}
.brand-logo{
  height:24px;       /* same feel as old "T" */
  width:auto;
  max-height:24px;
  object-fit:contain;
  display:block;
}
.brand-name{
  font-family:"Space Grotesk", Inter, sans-serif;
  letter-spacing:.2px;
}

/* Nav (center-ish) */
.nav{
  display:flex;
  gap:18px;
  align-items:center;
  margin-left:18px; /* keeps nav near brand instead of pushing everything */
}
.nav a{opacity:.85}
.nav a:hover{opacity:1}

/* Actions (RIGHT SIDE) */
.header-actions{
  margin-left:auto;           /* THIS pushes it to the far right */
  display:flex;
  gap:10px;
  align-items:center;
}

/* Hamburger */
.hamburger{
  display:none;
  width:44px; height:44px;
  border:1px solid var(--border);
  background:transparent;
  border-radius:12px;
}
.hamburger span{
  display:block;
  height:2px;
  background:var(--ink);
  margin:6px 10px;
  border-radius:10px;
}

/* Mobile nav */
.mobile-nav{
  border-top:1px solid var(--border);
  padding:10px 0 16px;
}
.mobile-nav a{display:block;padding:10px 4%}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:12px;
  font-weight:600;
  border:1px solid transparent;
  transition: transform .12s ease, opacity .12s ease, background .12s ease;
}
.btn:hover{transform: translateY(-1px)}
.btn-primary{background:var(--ink); color:#fff}
.btn-outline{background:transparent; border-color:var(--border)}
.btn-ghost{background:transparent; border-color:transparent}

/* Hero */
.hero{padding:54px 0 22px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:28px;
  align-items:center;
}
.eyebrow{
  display:inline-block;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:12px;
  opacity:.75;
  margin:0 0 10px;
}
h1,h2,h3,h4{
  font-family:"Space Grotesk", Inter, sans-serif;
  line-height:1.1;
}
h1{font-size: clamp(34px, 4vw, 54px); margin:0 0 12px}
.lead{font-size:18px; color:rgba(11,13,18,.78); margin:0 0 18px}
.hero-ctas{display:flex; gap:12px; flex-wrap:wrap}

.trust-row{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}
.trust-pill{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.65);
  font-size:14px;
}

.hero-media .media-card{
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(11,13,18,.06), rgba(11,13,18,.02));
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  min-height:360px;
  display:grid;
  place-items:center;
  overflow:hidden;
}

/* Sections */
.section{padding:56px 0}
.section-muted{
  background:rgba(11,13,18,.03);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border)
}
.section-head{margin-bottom:18px}
.section-head p{margin:6px 0 0; color:rgba(11,13,18,.70)}

/* Two col cards */
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px;
  box-shadow: 0 8px 18px rgba(11,13,18,.05);
}
.card.accent{
  border-color:rgba(0, 0, 0, 0.35);
  background:linear-gradient(180deg, rgba(255,77,46,.10), rgba(255,255,255,.8));
}

/* Steps */
.steps{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  margin-top:18px;
}
.step{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:20px;
}
.step-img{
  width:100%;
  height:220px;       /* uniform images */
  object-fit:cover;
  border-radius:12px;
  display:block;
  margin-bottom:12px;
}
.step-num{
  width:34px;height:34px;border-radius:12px;
  display:grid;place-items:center;
  background:rgba(11,13,18,.08);
  font-weight:800;
  margin-bottom:10px;
}

.center{text-align:center;margin-top:22px}

/* Reviews */
.reviews{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}
.review{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:20px;
}
.review blockquote{margin:0 0 10px; font-size:16px}
.review figcaption{color:rgba(11,13,18,.65); font-weight:600}

/* CTA */
.cta{padding:34px 0 70px}
.cta-inner{
  border-radius:var(--radius);
  background:var(--ink);
  color:#fff;
  padding:26px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  box-shadow:var(--shadow);
}
.cta-inner p{margin:6px 0 0; opacity:.85}

/* Footer */
.footer{
  background:#ffffff;              /* keep footer white */
  border-top:1px solid var(--border);
  padding:22px 0 14px;             /* reduced height */
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .6fr .6fr;
  gap:18px;                         /* slightly tighter */
}

.footer a{
  display:block;
  padding:4px 0;
  opacity:.85;
}

.footer a:hover{
  opacity:1;
}

.footer-bottom{
  border-top:1px solid var(--border);
  margin-top:14px;
  padding-top:10px;
}

.muted{
  color:rgba(11,13,18,.68);
}

/* Social Icons */
.socials{
  display:flex;
  gap:12px;
  margin-top:6px;
}

.socials a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:42px;          /* BIGGER icons */
  height:42px;
  border-radius:10px;
  border:1px solid var(--border);
  transition:.15s ease;
}

.socials a:hover{
  background:#f3f3f3;  /* subtle light hover instead of black */
  transform:translateY(-1px);
}

.socials img{
  width:22px;          /* bigger icon graphic */
  height:22px;
  object-fit:contain;
}

/* Center Shopify product embed */
#product-component-1770952349925 {
  display: flex;
  justify-content: center;
}

/* Responsive */
@media (max-width: 900px){
  .nav{display:none}
  .header-actions{margin-left:auto}
  .hamburger{display:inline-block}
  .hero-grid{grid-template-columns:1fr}
  .two-col{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .reviews{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
}
