:root {
  --color-bg: #f5f7fb;
  --color-surface: #ffffff;
  --color-border: #e0e5f2;
  --color-primary: #ff7a30;
  --color-primary-soft: #ffe0cc;
  --color-primary-dark: #e05a0c;
  --color-success: #6ee7c8;
  --color-text-main: #1f2933;
  --color-text-muted: #6b7280;
  --color-text-soft: #9ca3af;
  --radius-lg: 16px;
  --radius-xl: 999px;
  --shadow-soft: 0 20px 45px rgba(15, 23, 42, 0.08);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text-main);
  background: radial-gradient(circle at top left, #fef5ee 0, #f5f7fb 45%, #edf1fb 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

/* Banner */
header.banner {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-logo {
  height: 42px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 14px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 10px;
}

.nav a:hover {
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-main);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease;
  user-select: none;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: #d3daee;
}

.btn-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  box-shadow: 0 16px 32px rgba(255, 122, 48, 0.24);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

/* Page header */
.page-hero {
  padding: 44px 0 16px;
}

.page-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.page-hero p {
  margin: 0 0 18px;
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 72ch;
}

/* =========================================================
   ADDED: Hero layout (intro left, aside right)
   - Keeps your existing colours/gradients
   - Only controls layout
========================================================= */
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}

.hero-content {
  min-width: 0;
}

/* Your existing .hero-card class is used in HTML; define it here to match theme */

/* =========================================================
   HERO ASIDE – success colour (de-emphasise orange)
========================================================= */



.hero-card {
  background: var(--color-surface); /* plain white */
  border: 1px solid rgba(110, 231, 200, 0.55);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

page-hero
/* Heading slightly darker for contrast */
.hero-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #065f46; /* deep green-teal, not neon */
}

/* Body copy remains neutral */
.hero-card p {
  margin: 0 0 14px;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: none;
}

/* Optional: soften the primary button INSIDE the aside only */
.hero-card .btn-primary {
  background: linear-gradient(
    135deg,
    #34d399 0%,
    #10b981 100%
  );
  box-shadow: 0 4px 8px rgba(16, 185, 129, 0.28);
}

.hero-card .btn-primary:hover {
  transform: translateY(-1px);
}

/* Mobile stack */
@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }
}

/* Pricing bar */
.pricing-bar {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.pricing-items {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.price-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  background: linear-gradient(180deg, #fff 0%, #fbfcff 100%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-text-main);
}

.price-pill span {
  font-weight: 600;
  color: var(--color-text-muted);
}

.divider {
  width: 1px;
  height: 18px;
  background: var(--color-border);
}

/* Content grid */
main {
  padding: 0 0 56px;
}

.grid-3 {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch; /* Ensures equal-height grid items */
}

/* Card (Equal height regardless of content) */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;

  /* Equal height behavior */
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-head {
  padding: 18px 18px 14px;
  border-bottom: 1px solid var(--color-border);
  background:
    radial-gradient(circle at top left, rgba(255, 224, 204, 0.55) 0%, rgba(255, 255, 255, 0.9) 60%),
    #fff;
}

.card-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.card-head h2 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: var(--radius-xl);
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: 12px;
  border: 1px solid rgba(255, 122, 48, 0.25);
  white-space: nowrap;
}

.card-body {
  padding: 16px 18px 18px;

  /* Equal height inner layout */
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.lead {
  margin: 0 0 12px;
  color: var(--color-text-muted);
  line-height: 1.6;
  font-size: 14px;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 14px;

  /* Optional: keeps lists visually aligned lower */
  margin-top: auto;
}

.list li {
  margin: 6px 0;
}

/* CTA */
.cta {
  margin-top: 18px;
  padding: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 224, 204, 0.55) 0%,
    rgba(255, 255, 255, 0.9) 55%,
    #ffffff 100%
  );
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.cta p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 70ch;
  font-size: 14px;
}

/* =========================================================
   ADDED: Founder block styling (uses your theme)
========================================================= */
.founder-block {
  margin-top: 18px;
  padding: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 224, 204, 0.50) 0%,
    rgba(255, 255, 255, 0.92) 55%,
    #ffffff 100%
  );
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.founder-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
}

.founder-title {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.founder-body p {
  line-height: 1.7;
  color: var(--color-text-muted);
}

.founder-body p strong,
.founder-body strong {
  color: var(--color-text-main);
}

.founder-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(255, 122, 48, 0.18);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.10);
}

.founder-signature-block {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(224, 229, 242, 0.9);
}

.founder-name {
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 8px;
}

.founder-signature {
  max-width: 180px;
  height: auto;
  display: block;
}

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

  .founder-photo {
    order: -1;
  }
}

/* Form */
.form-block {
  margin-top: 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 22px;
}

.form-block h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.form-block p {
  margin: 0 0 16px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 13px;
  color: var(--color-text-main);
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: #fff;
  font: inherit;
  color: inherit;
  outline: none;
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(255, 122, 48, 0.55);
  box-shadow: 0 0 0 6px rgba(255, 122, 48, 0.12);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.hint {
  font-size: 12px;
  color: var(--color-text-soft);
  line-height: 1.4;
}

footer {
  padding: 26px 0 40px;
  color: var(--color-text-soft);
  font-size: 13px;
}
/* =========================================================
   Pill row (hero highlights)
========================================================= */

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  font-weight: 600;
  color: var(--color-text-muted);
  font-size: 13px;
}

/* Orange accent dot */
.pill-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 5px rgba(255, 122, 48, 0.25);
}

@media (max-width: 980px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  form {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   Mobile nav (hamburger)
========================================================= */

.nav-toggle {
  display: none; /* shown only on mobile */
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: transform 0.12s ease, border-color 0.12s ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  border-color: #d3daee;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-text-main);
}

/* Mobile layout */
@media (max-width: 820px) {
  .banner-inner {
    position: relative;
  }

  /* show hamburger */
  .nav-toggle {
    display: inline-flex;
  }

  /* hide nav by default on mobile */
  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    padding: 12px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    gap: 10px;
    z-index: 20;
  }

  /* open state */
  .nav.is-open {
    display: flex;
  }

  /* make links full width on mobile */
  .nav a {
    width: 100%;
  }

  .nav .btn {
    width: 100%;
    justify-content: center;
  }
}
.video-wrap {
  position: relative;
  z-index: 1;
}

.video-wrap video {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  pointer-events: auto;
}
/* Any decorative overlay must not capture taps */
.overlay,
.hero-overlay,
.video-overlay {
  pointer-events: none;
}
video { position: relative; z-index: 9999 !important; }
