/* assets/styles.css */
:root{
  --bg-dark: #050b17;
  --bg-dark-2: #07122b;
  --card: #ffffff;
  --alt: #f5f7fb;
  --text: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, 0.12);
  --primary: #1e6cf2;
  --primary-2: #0b3d91;
  --accent: #60a5fa;
  --shadow: 0 12px 30px rgba(2, 8, 23, 0.18);
  --radius: 16px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.5;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* Topbar */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5,11,23,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}
.logo img{
  height: 62px;
  width: auto;
  display: block;
}
.topbar-actions{
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar-link{
  color: rgba(255,255,255,0.86);
  font-weight: 700;
  font-size: 14px;
}
.topbar-link:hover{ text-decoration: none; color: #fff; }

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.08s ease, border 0.08s ease;
  text-decoration: none !important;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  box-shadow: 0 12px 26px rgba(30,108,242,0.25);
}
.btn--primary:hover{ box-shadow: 0 16px 32px rgba(30,108,242,0.32); }

.btn--ghost{
  background: transparent;
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.92);
}
.btn--ghost:hover{ background: rgba(255,255,255,0.06); }

.btn--outline{
  background: transparent;
  border-color: rgba(255,255,255,0.24);
  color: rgba(255,255,255,0.92);
}
.btn--outline:hover{ background: rgba(255,255,255,0.06); }

.btn--soft{
  background: rgba(30,108,242,0.10);
  color: var(--primary-2);
  border-color: rgba(30,108,242,0.16);
}
.btn--soft:hover{ background: rgba(30,108,242,0.14); }

.btn--small{
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
}

.btn--full{ width: 100%; }

/* Hero */
.hero{
  padding: 56px 0 42px;
  color: #ffffff;
  background:
    radial-gradient(1100px 520px at 15% 5%, rgba(30,108,242,0.30), rgba(30,108,242,0.00) 60%),
    radial-gradient(900px 450px at 90% 10%, rgba(96,165,250,0.22), rgba(96,165,250,0.00) 58%),
    linear-gradient(180deg, var(--bg-dark), var(--bg-dark-2));
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: 26px;
  align-items: start;
}
.pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}
h1{
  margin: 14px 0 10px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.accent{ color: var(--accent); }
.lead{
  margin: 0 0 14px;
  color: rgba(255,255,255,0.84);
  font-size: 16px;
  max-width: 60ch;
}

/* Phone links */
.phone-link{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* BIG hero review */
.review{
  margin-top: 14px;
}
.review-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.stars{
  font-weight: 900;
  letter-spacing: 0.08em;
}
.review-source{
  color: rgba(255,255,255,0.74);
  font-weight: 800;
  font-size: 12px;
}
.review-quote{
  margin: 0;
  font-weight: 850;
}
.review-author{
  margin-top: 10px;
  font-weight: 900;
  font-size: 14px;
}

/* make the hero review REALLY stand out */
.review--hero{
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 18px 34px rgba(0,0,0,0.18);
}
.review--hero .review-quote{
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  line-height: 1.35;
}
.review--hero .stars{
  font-size: 16px;
}
.review--hero .review-author{
  color: rgba(255,255,255,0.86);
}

/* scan items */
.scan{
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.scan-item{
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
}
.scan-title{
  font-weight: 900;
  color: #ffffff;
}
.scan-text{
  color: rgba(255,255,255,0.80);
  font-weight: 650;
}

.cta-row{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.micro{
  margin-top: 12px;
  color: rgba(255,255,255,0.66);
  font-size: 12px;
  font-weight: 800;
}
.micro a{ color: #fff; text-decoration: underline; }

/* Hero card */
.hero-card{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}

.founder{
  display: grid;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.founder-photo-wrap{
  position: relative;
}

/* Make Tom's image smaller + less screen-hogging */
.founder-photo{
  width: 100%;
  max-width: 260px;   /* was 360px */
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.10);
}

.founder-cta{
  position: absolute;
  left: 12px;
  bottom: 12px;
  backdrop-filter: blur(6px);
}

.founder-meta{
  display: grid;
  gap: 4px;
}
.founder-name{
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #ffffff;
}
.founder-title{
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  font-weight: 700;
}

.stat-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}
.stat{
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 10px;
  background: rgba(255,255,255,0.06);
}
.stat-k{
  font-weight: 900;
  color: #ffffff;
}
.stat-v{
  font-size: 12px;
  color: rgba(255,255,255,0.76);
  margin-top: 3px;
  font-weight: 750;
}

/* Sections */
.section{
  padding: 54px 0;
}
.section--alt{
  background: var(--alt);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.section-head{
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}
.section-head h2{
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.section-head p{
  margin: 0;
  color: var(--muted);
  max-width: 75ch;
  font-weight: 650;
}

/* Steps */
.steps{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.step{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 8px 18px rgba(2, 8, 23, 0.06);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
}
.step-num{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(30,108,242,0.10);
  color: var(--primary-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}
.step-title{
  font-weight: 900;
  margin-bottom: 4px;
}
.step-text{
  color: var(--muted);
  font-weight: 650;
  font-size: 14px;
}

/* Cards */
.cards{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 8px 18px rgba(2, 8, 23, 0.06);
}
.card h3{
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.card p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

/* About Tom */
.about{
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
  align-items: start;
}
.about-media{
  position: sticky;
  top: 92px;
  display: grid;
  gap: 10px;
}

/* Make About Tom image smaller too */
.about-photo{
  width: 100%;
  max-width: 320px;   /* was 420px */
  height: auto;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 30px rgba(2, 8, 23, 0.10);
  display: block;
}

.about-call{
  font-weight: 900;
  color: #0f172a;
}
.kicker{
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(30,108,242,0.10);
  color: var(--primary-2);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.about-lead{
  color: var(--muted);
  font-weight: 650;
}
.quote{
  margin-top: 14px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(30,108,242,0.18);
  background: rgba(30,108,242,0.06);
}
.quote-mark{
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
  color: var(--primary-2);
}
.quote-text{
  margin: 0;
  font-weight: 850;
  color: #0f172a;
}
.quote-attrib{
  margin-top: 8px;
  font-size: 13px;
  font-weight: 900;
  color: #334155;
}
.about-points{
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.about-point{
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  background: #fff;
}
.about-point-title{
  font-weight: 900;
  margin-bottom: 4px;
}
.about-point-text{
  color: var(--muted);
  font-weight: 650;
  font-size: 14px;
}
.about-cta{
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Contact */
.contact{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: start;
}
.contact-copy h2{
  margin-top: 0;
  margin-bottom: 10px;
}
.contact-copy p{
  margin-top: 0;
  color: var(--muted);
  font-weight: 650;
  max-width: 70ch;
}
.contact-details{
  margin-top: 16px;
  display: grid;
  gap: 8px;
  font-weight: 850;
}
.contact-details a{ color: var(--primary-2); }

.form{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 24px rgba(2, 8, 23, 0.08);
}
label{
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 12px;
}
input, textarea{
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 12px;
  padding: 12px 12px;
  font: inherit;
  font-size: 14px;
  background: #ffffff;
}
input:focus, textarea
