/* ====== CSS Variables ====== */
:root {
  --primary: #0ea5e9;
  --accent: #1E1B4B;
  --bg: #ffffff;
  --muted-bg: #f8fafc;
  --text: #4b5563;
  --ink: #1e293b;
  --border: #e2e8f0;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --radius: 8px;
  --radius-lg: 16px;
  --container: 1200px;
}

/* ====== Base Styles ====== */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.download{
  visibility: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: #1E1B4B;
  color: #1a1a1a;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 10px -1px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-secondary:hover {
  background: rgba(249, 180, 0, 0.05);
}

/* ====== Navbar ====== */
header.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-row img {
  width: 150px;
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-weight: 800;
  color: var(--ink);
  font-size: 1.25rem;
}

.brand-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #0ea5e9 0%, #0891b2 100%);
  font-weight: 800;
}

/* Desktop nav links */
nav.desktop ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

nav.desktop a {
   color: #1E1B4B;
  font-weight: 500;
  transition: color 0.2s;
  padding: .6rem .9rem;
}

nav.desktop a:hover {
  border: 1px solid var(--border);
  padding: .6rem .9rem;
  border-radius: 10px;
  color: #0d0a35;
}

/* Right actions */
.actions {
  display: flex;
  gap: .75rem;
  align-items: center;
}

/* Mobile nav (no JS) */
.nav-mobile {
  display: none;
}

details.nav-menu {
  position: relative;
}

details.nav-menu>summary {
  list-style: none;
  cursor: pointer;
  padding: .6rem .9rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-weight: 600;
  color: #1E1B4B;

}

details.nav-menu>summary::-webkit-details-marker {
  display: none;
}

details.nav-menu[open]>summary {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

details.nav-menu .menu {
  position: absolute;
  right: 0;
  top: calc(100% + 5px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: .5rem;
  min-width: 200px;
  z-index: 10;
}

details.nav-menu .menu a {
  display: block;
  padding: .6rem .9rem;
  border-radius: 8px;
}

details.nav-menu .menu a:hover {
  color: white;
  background: #1E1B4B;
}

/* ====== Hero Section ====== */
.hero {
  position: relative;
}

.hero-background {
  width: 100%;
  padding: 30px;
  z-index: -1;
  position: relative;
  height: 70%;
}

.hero-grid {
  position: absolute;
  max-width: 100%;
  top: 10%;
  display: grid;
  gap: 3rem;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  padding: 2rem;
}

.hero h1 {
  color: var(--ink);
  margin: .75rem 0 1.25rem;
  letter-spacing: -0.02em;
  font-size: 40px;
  font-weight: 800;
  color: #000;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.hero .highlight {
  color: #000;

}

.hero p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #fff;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero Image */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-frame {
  position: relative;
  width: min(100%, 400px);
  margin: 0 auto;
  top: 80px;
}

.phone-frame img {
  width: 100%;
  display: block;
}

.phone-content {
  position: absolute;
  top: 4.5%;
  left: 6.5%;
  width: 87%;
  height: 91%;
  border-radius: 24px;
  overflow: hidden;
  z-index: 2;
}

.phone-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* By default hide hero-background on small screens */
.hero-background {
  display: block;
}

/* ====== How It Works ====== */
.hiw {
  padding: clamp(2.5rem, 3vw + 1rem, 4rem) 0 5rem;
}

.hiw h1 {
  color: var(--ink);
  font-size: clamp(2.6rem, 2.2rem + 1.2vw, 2rem);
  text-align: center;
  margin: 0 0 .6rem;
  letter-spacing: -.01em;
  font-size: 50px;
  font-weight: 800;
  transition: all 0.3s ease;
}

.hiw h2 {
  color: var(--ink);
  font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2rem);
  text-align: center;
  margin: 0 0 .6rem;
  letter-spacing: -.01em;
  font-size: 30px;
  font-weight: 800;
  transition: all 0.3s ease;
}

.hiw p.lead {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.2rem;
  padding: 1rem .75rem;
  font-size: 20px;
}

.steps {
  position: relative;
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1fr;
}

.step {
  text-align: center;
  padding: 1rem .75rem;
}

.step .num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffeef0;
  color: #7a4150;
  font-weight: 800;
  margin: 0 auto .75rem;
  border: 1px solid #ffd6db;
  box-shadow: var(--shadow);
}

.step h3 {
  margin: .2rem 0 .4rem;
  color: #1b2142;
  font-size: 1.05rem;
}

.muted {
  color: #8b92a6;
  font-size: 1rem
}

/* spacing helpers */
.space-xs {
  height: .5rem
}

.space-sm {
  height: 1rem
}


/* ====== Video section ====== */
.video-section {
  position: relative;
  width: 100%;
  height: 90vh;
  margin-top: 50px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #B772E6;
}

.video-section video {
  width: 90%;
  height: 90%;
  object-fit: cover;
  /* crop to cover full screen */
}


/* ====== Quick Section ====== */
.quick-section {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 40px;
  padding: 80px 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.quick-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.quickleft {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.phone-frames {
  position: relative;
  max-width: 500px;
  margin: auto;
  transition: transform 0.5s ease;
}

.quick-section:hover .phone-frames {
  transform: scale(1.02);
}

.phone-frames img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.phone-contents {
  position: absolute;
  top: 20%;
  left: 30%;
  height: 80%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.phone-contents img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Right Side */
.quick-text {
  flex: 1;
  max-width: 600px;
  padding: 20px;
}

.quick-text h1 {
  font-size: 40px;
  font-weight: 800;
  color: #1c1449;
  margin-bottom: 20px;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.quick-text h1:hover {
  color: #3a2c8c;
}

.quick-text p {
  font-size: 20px;
  color: #666;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.btn-primary {
  display: inline-block;
  background: #1E1B4B;
  color: #fff;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: #4841b4;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

/* Feature List Styles */
.quick-text ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.quick-text li {
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-20px);
}

.quick-section.visible .quick-text li {
  opacity: 1;
  transform: translateX(0);
}

.quick-section.visible .quick-text li:nth-child(1) {
  transition-delay: 0.2s;
}

.quick-section.visible .quick-text li:nth-child(2) {
  transition-delay: 0.4s;
}

.quick-section.visible .quick-text li:nth-child(3) {
  transition-delay: 0.6s;
}

.quick-section.visible .quick-text li:nth-child(4) {
  transition-delay: 0.8s;
}

.quick-text li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.quick-text li h2 {
  font-size: 20px;
  color: #1c1449;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quick-text li h2 {
  transition: transform 0.3s ease;
}

.quick-text li:hover h2 {
  transform: scale(1.2);
}

.quick-text li p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

/* Quick Section Responsive */
@media (max-width: 1024px) {
  .quick-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

  .quickleft {
    flex-direction: column;
    align-items: center;
  }

  .quick-text {
    max-width: 100%;
  }

  .quick-text h1 {
    font-size: 28px;
  }

  .platform {
    max-width: 100%;
  }

  .platform h1 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .phone-frames {
    max-width: 250px;
  }

  .quick-text h1 {
    font-size: 24px;
  }

  .quick-text p {
    font-size: 14px;
  }

  .platform h1 {
    font-size: 24px;
  }

  .platform p {
    font-size: 14px;
  }

  .quick-text li h2 {
    font-size: 18px;
  }

  .quick-text li p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .quick-section {
    padding: 40px 5%;
  }

  .phone-frames {
    max-width: 220px;
  }

  .quick-text h1 {
    font-size: 20px;
  }

  .platform h1 {
    font-size: 20px;
  }

  .btn-primary {
    padding: 10px 20px;
    font-size: 14px;
  }

  .quick-text li {
    padding: 15px;
  }
}

@media (max-width: 320px) {
  .phone-frames {
    max-width: 180px;
  }

  .quick-text h1 {
    font-size: 18px;
  }

  .quick-text p {
    font-size: 13px;
  }

  .platform h1 {
    font-size: 18px;
  }

  .platform p {
    font-size: 13px;
  }

  .btn-primary {
    padding: 8px 18px;
    font-size: 13px;
  }

  .quick-text li h2 {
    font-size: 16px;
  }
}

/* ===== Platform Section ===== */
.platform {
  background: #ffefef;
  padding: 20px;
  width: 90%;
  margin: auto;
  overflow: hidden;
}

.platform-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.platform-text {
  flex: 1;
  max-width: 700px;
}

.platform-text h1 {
  font-size: 40px;
  font-weight: 800;
  color: #1c1449;
  margin-bottom: 20px;
  line-height: 1.3;
}

.platform-text p {
  font-size: 18px;
  color: #666;
  margin-bottom: 25px;
}

.platform-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.platform-cards .card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  flex: 1;
  min-width: 200px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.platform-cards h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1c1449;
}

.platform-cards p {
  font-size: 14px;
  color: #555;
}

/* Right Side Image */
.platform-image img {
  max-width: 600px;
}

/* ==== Base (Default Desktop-first) ==== */
.coming-soon {
  --cs-bg: #0a0a0d;
  --cs-panel: #111216;
  --cs-text: #ffffff;
  --cs-muted: #b7bcc7;
  --cs-accent: #ff6a00;

  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--cs-text);
}

.coming-soon-hero {
  position: relative;
  min-height: 80vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  margin-top: 2rem;
  text-align: center;
  overflow: hidden;
}

.coming-soon-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/1000163039.webp");
  background-size: cover;
  background-position: center;
  filter: blur(1px) brightness(0.55) saturate(1.1);
  transform: scale(1.06);
  z-index: -2;
}

.coming-soon-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 50% 40%,
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.65) 60%,
      rgba(0, 0, 0, 0.85));
  z-index: -1;
}

.coming-soon-stack {
  display: grid;
  gap: 1.25rem;
  width: min(100%, 1000px);
  margin: 0 auto;
}

.coming-soon-eyebrow {
  color: #ffffff;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.coming-soon-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  padding: 2rem 3rem;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px); 
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.coming-soon-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: #f0f0f0;
}

.coming-soon-title {
  margin: 0;
  font-size: clamp(2rem, 6vw, 5rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.highlight {
  color: #ff4b2b; 
}

.awesome {
  color: #ff4b2b;
  font-weight: bold;
}

.coming-soon-timer-card {
  position: relative;
  margin-inline: auto;
  background: var(--cs-panel);
  border-radius: 10px;
  border: 3px solid var(--cs-accent);
  padding: clamp(1.5rem, 5vw, 4rem) clamp(1.5rem, 8vw, 8rem);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4),
    inset 0 0 0 9999px rgba(255, 255, 255, 0.02);
  max-width: 1020px;
  color: #ffffff;
}

.coming-soon-timer-card::before,
.coming-soon-timer-card::after {
  content: "";
  position: absolute;
  width: 52px;
  height: 20px;
  background: var(--cs-accent);
  transform: skewX(-25deg);
}

.coming-soon-timer-card::before {
  left: -14px;
  bottom: 16px;
}

.coming-soon-timer-card::after {
  right: -14px;
  top: 16px;
}

.coming-soon-timer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.75rem, 2.5vw, 1.5rem);
  align-items: center;
  justify-items: center;
}

.coming-soon-unit {
  display: grid;
  gap: 0.25rem;
}

.coming-soon-value {
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.coming-soon-label {
  color: #ffffff;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.coming-soon-hint {
  margin-top: 0.4rem;
  color: #ffffff;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}


/* Footer */
/* Footer Base */
footer {
  background-color: #1E1B4B;
  padding: 1.5rem 1rem;
  border-top: 1px solid #e0e0e0;
  color: white;
}


/* Company Info */
.company-info {
  margin-bottom: 1.5rem;
  text-align: center;
}

.company-info h1 {
  color: #FFF;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.company-info p {
  color: #FFF;
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer-container {
  max-width: 1500px;
  margin: 0 auto;
  background-color: #1E1B4B;
}

/* Footer Middle */
.footer-middle {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem 0;
}

.company-info h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #fff, #a8d8ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.company-info p {
  line-height: 1.6;
  color: #e0e0e0;
  font-size: 0.95rem;
}

.company-info img {
  width: 80px;
}

.column-continar {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  min-width: 120px;
}

.footer-column h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #fff;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #1E1B4B;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 0.7rem;
}

.footer-column a {
  text-decoration: none;
  color: #e0e0e0;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-column a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-column a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #3a7bd5;
  transition: width 0.3s ease;
}

.footer-column a:hover::after {
  width: 100%;
}

.subscribe {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.subscribe p {
  margin-bottom: 1rem;
  font-weight: 500;
  color: #fff;
}

.subscribe-form {
  display: flex;
  gap: 0.5rem;
}

.subscribe input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.267);
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
  color: white;
}

.subscribe input:focus {
  background: rgba(255, 255, 255, 0.267);
  box-shadow: 0 0 0 2px rgba(77, 171, 247, 0.5);
}

.subscribe button {
  background: #1E1B4B;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 0 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subscribe button:hover {
  background: #4dabf7;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links a {
  text-decoration: none;
  color: #e0e0e0;
  font-size: 0.85rem;
  transition: color 0.3s;
  position: relative;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #3a7bd5;
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.copyright {
  color: #e0e0e0;
  font-size: 0.8rem;
}


.founderSection {
  padding: 5rem 0;
  background: #ffffff;
  font-family: "Inter", sans-serif;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.sectionHeader {
  text-align: center;
  margin-bottom: 4rem;
}

.mainTitle {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

.subtitle {
  font-size: 1.25rem;
  color: #fff;
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.foundersGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .foundersGrid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.founderCard {
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.founderCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cardContent {
  padding: 2rem;
}

.imageContainer {
  position: relative;
  margin-bottom: 2rem;
}

.imageWrapper {
  width: 12rem;
  height: 12rem;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.founderImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.founderImage:hover {
  transform: scale(1.05); 
}

.decorativeBlur1{
  position: absolute;
  border-radius: 50%;
}


.founderInfo {
  text-align: center;
  margin-bottom: 1.5rem;
}

.founderName {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.5rem;
}

.founderRole {
  color: #000;
  font-weight: 600;
  font-size: 1.125rem;
}

.bioContent {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.bioText {
  color: #000;
  font-weight: 600;
}


.cardFooter {
  margin-top: 2rem;
  padding-top: 1.5rem;
 
  display: flex;
  justify-content: center;
}

.accentLine {
  width: 3rem;
  height: 0.25rem;

  border-radius: 9999px;
}

.bottomSection {
  text-align: center;
  margin-top: 4rem;
}

.bottomContent {
  max-width: 64rem;
  margin: 0 auto;
}

.bottomTitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.bottomText {
  font-size: 1.125rem;
  color: #fff;
  line-height: 1.6;
}

/* Simple fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease-out forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ====== Coaching Section ====== */
.coaching-section {
  background: var(--muted-bg);
  padding: 5rem 1rem;
  text-align: center;
}

.coaching-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.coaching-description {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
  color: var(--text);
  line-height: 1.8;
}

.coaching-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.coaching-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
  flex: 1;
  min-width: 260px;
  max-width: 320px;
  transition: all 0.3s ease;
}

.coaching-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.coaching-card h3 {
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.coaching-card p {
  color: var(--text);
  margin-bottom: 1rem;
}

.coaching-card .price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ink);
}

.coaching-cta .btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
}

.coaching-cta .btn-primary:hover {
  background: #2d2970;
  transform: translateY(-2px);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .coaching-grid {
    flex-direction: column;
    align-items: center;
  }

  .coaching-title {
    font-size: 2rem;
  }

  .coaching-description {
    font-size: 1rem;
  }
}
