:root {
  --bg: #050608;
  --bg-alt: #111219;
  --text: #f7f7f7;
  --muted: #aaaaaa;
  --accent: #f97316; /* button color */
  --accent-soft: rgba(249, 115, 22, 0.12);
  --border: #262733;
  --card-bg: #151622;
  --font-main: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html { 
  scrollbar-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  background: radial-gradient(circle at top, #161827 0, #050608 45%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, rgba(5, 6, 8, 0.95), rgba(5, 6, 8, 0.85));
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.logo {
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--muted);
}

.header-cta {
  font-size: 0.9rem;
  color: var(--text);
  text-decoration: none;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: linear-gradient(135deg, rgba(249,115,22,0.0), rgba(249,115,22,0.18));
  transition: all 0.18s ease-out;
}

.header-cta:hover {
  border-color: var(--accent);
  background: rgba(249,115,22,0.2);
}

/* HERO */

.hero {
  padding: 4rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.hero-text h1 {
  font-size: 2.3rem;
  line-height: 1.1;
  margin: 0.5rem 0 1rem;
}

.hero-sub {
  margin: 0 0 1.5rem;
  color: var(--muted);
  max-width: 32rem;
}

.eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 0.98rem;
}

.btn-primary {
  background: var(--accent);
  color: #0b0b0f;
  box-shadow: 0 14px 40px rgba(249,115,22,0.45);
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.12s ease-out;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 50px rgba(249,115,22,0.65);
  background: #fb923c;
}

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

.hero-card {
  background: linear-gradient(145deg, rgba(249,115,22,0.16), rgba(15, 16, 25, 0.98));
  border-radius: 1rem;
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(249,115,22,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.55);
}

.hero-card-title {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.demo-list {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  font-size: 0.92rem;
  color: var(--text);
}

.demo-list li + li {
  margin-top: 0.4rem;
}

.hero-card-foot {
  font-size: 0.85rem;
  color: var(--text);
  opacity: 0.9;
}

/* GENERIC SECTIONS */

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section h2 {
  font-size: 1.7rem;
  margin: 0 0 0.6rem;
}

.section-intro {
  margin-top: 0;
  margin-bottom: 0.9rem;
  color: var(--muted);
  max-width: 32rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 2.3rem;
  align-items: flex-start;
}

.vertical-center {
  align-items: center;
}

.bullet-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text);
}

.bullet-list li + li {
  margin-top: 0.4rem;
}

/* STEPS */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.2rem;
  margin-top: 1.6rem;
}

.step {
  background: rgba(17,18,25,0.9);
  border-radius: 0.9rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
}

/* VIDEO PLACEHOLDER */

.video-placeholder {
  border-radius: 1rem;
  border: 1px dashed var(--border);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
  background: radial-gradient(circle at top left, rgba(249,115,22,0.12), transparent 55%);
}

/* ABOUT */

.about-card {
  background: var(--card-bg);
  padding: 1rem 1.1rem;
  border-radius: 0.9rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  max-width: 280px;
}

.avatar-placeholder {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 600;
}

.about-name {
  margin: 0;
  font-weight: 500;
}

.about-role {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

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

.center {
  text-align: center;
}

/* ABOUT – centered founder layout */

.section-founder {
  text-align: center;
}

.section-founder h2 {
  margin-bottom: 0.75rem;
}

.section-founder .section-intro,
.section-founder .founder-body,
.section-founder .founder-note {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.section-founder .founder-body {
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
}

.about-card-center {
  margin: 1.8rem auto 0;
  justify-content: center;
}

.section-founder .founder-note {
  margin-top: 1.3rem;
}

/* FOUNDER SECTION */

.founder-section {
  align-items: center;
}

.founder-photo-wrap {
  display: flex;
  justify-content: center;
}

.founder-photo {
  width: 300px;
  max-width: 100%;
  border-radius: 20px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
}

/* tighten the text width a bit so it reads nicer */
.founder-copy {
  max-width: 32rem;
}

.founder-name-line {
  margin-top: 1.2rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Mobile: stack photo on top, center everything */
@media (max-width: 800px) {
  .founder-section {
    text-align: center;
  }

  .founder-copy {
    margin-top: 1.4rem;
    margin-left: auto;
    margin-right: auto;
  }

  .founder-photo-wrap {
    justify-content: center;
  }

  .founder-photo {
    width: 240px;
  }
}


/* CALENDLY */

.calendly-wrapper {
  margin-top: 1.8rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #05060b;
}

/* Center the heading + intro of the Calendly section */
.center-booking h2,
.center-booking .section-intro {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Ensure the intro text doesn't stretch too wide */
.center-booking .section-intro {
  max-width: 40rem; /* perfect readable width */
}

/* Add a little breathing space above Calendly widget */
.center-booking .calendly-wrapper {
  margin-top: 2.2rem;
}


/* FAQ */

.faq {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.3rem;
}

.faq-item {
  background: rgba(17,18,25,0.9);
  border-radius: 0.9rem;
  padding: 1rem 1.05rem;
  border: 1px solid var(--border);
}

.faq-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.faq-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* FOOTER */

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.2rem 0 1.6rem;
  background: #050608;
}

.footer-inner {
  text-align: center;
}

.footer-inner p {
  margin: 0.2rem 0;
}

.footer-note {
  font-size: 0.8rem;
  color: var(--muted);
}

/* RESPONSIVE */

/* DEMO SECTION LAYOUT */

.section-demo .container {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr);
  gap: 3rem;
  align-items: center;
}

.section-demo h2 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.section-demo .section-intro {
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.section-demo .small-note {
  margin-top: 0;
  font-size: 0.9rem;
}

/* Make the video area feel more like a real “card” */
.section-demo .video-placeholder {
  min-height: 330px;
  padding: 2rem 1.6rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(10, 11, 18, 0.96);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.section-demo .video-placeholder p {
  font-size: 0.96rem;
  color: var(--muted);
}


@media (max-width: 800px) {
  .hero {
    padding-top: 1.5rem;
  }

  .hero-inner,
  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-text h1 {
    font-size: 1.9rem;
  }

  /* On mobile: put the orange card UNDER the hero text + button */
  .hero-card {
    order: 1;              /* comes after the text block */
    margin-top: 0.6rem;   /* nice breathing room below the button */
  }

  .site-header {
    position: static;
  }

  /* Tiny inward nudge for header items on mobile */
  .logo {
    margin-left: 4px;      /* moves logo slightly toward center */
  }

  .header-cta {
    margin-right: 4px;     /* moves button slightly toward center */
  }

  .section-demo .container {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.8rem;
  }

  .section-demo .video-placeholder {
    min-height: 220px;
  }

}

/* ---- Fit + Benefits sections tuning ONLY ---- */

.section-fit .bullet-list li + li,
.section-benefits .bullet-list li + li {
  /* more breathing room between bullets */
  margin-top: 0.7rem;
}

/* extra space above the second block so they don't feel glued together */
.section-benefits {
  padding-top: 3rem; /* overrides the default 3.5rem from .section */
  border-top: 1px solid rgba(255, 255, 255, 0.06); /* subtle divider */
}

/* keep the intro lines a touch more airy in these two sections */
.section-fit .section-intro,
.section-benefits .section-intro {
  margin-bottom: 1.2rem;
}

/* mobile fine-tuning */
@media (max-width: 800px) {
  .section-benefits {
    padding-top: 4.2rem;
  }

  .section-fit .bullet-list li + li,
  .section-benefits .bullet-list li + li {
    margin-top: 0.55rem;
  }
}

