* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(to bottom, #ff5a1f, #ff5a1f 60%, #dcdcdc 60%);
  padding: 60px 20px 80px;
  display: flex;
  justify-content: center;
}

.hero-inner {
  max-width: 420px;
  width: 100%;
  text-align: center;
}

/* TITLE */
.hero-title {
  font-family: 'Michroma', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #f3f3f3;
  line-height: 1.2;
  margin-bottom: 30px;
letter-spacing: 2px;
text-transform: none;
}

/* CARD */
.hero-card {
  background: #e6e6e6;
  padding: 20px;
  border-radius: 6px;
  position: relative;
}

/* IMAGE */
.hero-image {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  display: block;
}

/* SEARCH BAR */
.search-bar {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 10px 12px;
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
}

/* FLOATING STATS */
.stats {
  position: absolute;
  right: -10px;
  top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* STAT CARD */
.stat {
  width: 190px;
  background: #f5f5f5;
  padding: 16px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* STAT TEXT */
.stat h2 {
  font-size: 24px;
  color: #ff5a1f;
  font-weight: 800;
  margin-bottom: 4px;
}

.stat h3 {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.stat p {
  font-size: 12px;
  color: #555;
  line-height: 1.4;
}

/* CTA */
.cta {
  margin-top: 28px;
  width: 100%;
  padding: 16px;
  background: #ff5a1f;
  color: #fff;
  font-weight: 800;
  letter-spacing: 2px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 6px 0 #d94812;
  transition: 0.2s ease;
}

.cta:active {
  transform: translateY(2px);
  box-shadow: 0 3px 0 #d94812;
}
/* TRUST SECTION */
.trust {
  background: #eef0f3;
  padding: 40px 20px;
}

.trust-inner {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}

.trust-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #8b8f97;
  margin-bottom: 24px;
}

.trust-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  color: #b5b8be;
  font-weight: 700;
}

.logo-right {
  text-align: right;
}

.case-link {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #3d6edc;
  text-decoration: none;
  font-weight: 500;
}

/* PROCESS SECTION */
.process {
  background: #ffffff;
  padding: 60px 20px 80px;
}

.process-inner {
  max-width: 420px;
  margin: 0 auto;
}

.process-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  color: #1d1f23;
  line-height: 1.3;
  margin-bottom: 50px;
}

/* TIMELINE */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* STEP */
.step {
  display: flex;
  gap: 20px;
}

/* LEFT SIDE (LINE SYSTEM) */
.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40px;
}

/* CIRCLE */
.circle {
  width: 42px;
  height: 42px;
  border: 2px solid #3d6edc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3d6edc;
  font-weight: 600;
}

/* LINE */
.line {
  width: 2px;
  height: 50px;
  background: #3d6edc;
  margin-top: 6px;
}

/* ARROW */
.arrow {
  width: 12px;
  height: 12px;
  border-left: 2px solid #3d6edc;
  border-bottom: 2px solid #3d6edc;
  transform: rotate(-45deg);
  margin-top: 6px;
}

/* CONTENT */
.step-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1d1f23;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 14px;
  color: #6b6f76;
  line-height: 1.6;
}

/* STORIES SECTION */
.stories {
  background: #2b0d00;
  padding: 40px 16px 60px;
}

.stories-inner {
  max-width: 380px;
  margin: 0 auto;
}

.stories-title {
  font-size: 26px;
  font-weight: 700;
  color: #ffd84d;
  line-height: 1.25;
  margin-bottom: 8px;
}

.stories-sub {
  font-size: 14px;
  color: #e5e5e5;
  margin-bottom: 22px;
}

/* CARD BASE */
.story-card {
  padding: 16px;
  border-radius: 18px;
  margin-bottom: 16px;
  box-shadow: 0 4px 0 rgba(0,0,0,0.25);
}

/* VARIANTS */
.story-card.yellow {
  background: #f5d94c;
}

.story-card.blue {
  background: #88a9d6;
}

/* TEXT */
.story-text {
  font-size: 14px;
  line-height: 1.55;
  color: #111;
  margin-bottom: 16px;
}

/* USER */
.story-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.story-user img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.4);
}

.story-user h4 {
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

.story-user span {
  font-size: 12px;
  color: rgba(0,0,0,0.6);
}

/* FINAL CTA */
.final-cta {
  background: #2b0d00;
  padding: 16px;
}

.final-inner {
  background: #e8e2cf;
  border-radius: 22px;
  padding: 28px 16px;
  text-align: center;
}

.final-inner h2 {
  font-size: 20px;
  font-weight: 600;
  color: #111;
  margin-bottom: 22px;
  line-height: 1.3;
}

.final-inner button {
  background: #111;
  color: #fff;
  border: none;
  padding: 14px 22px;
  border-radius: 22px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}


/* LEARNING SECTION */
.learning {
  background: #f5f6f8;
  padding: 50px 16px 70px;
}

.learning-inner {
  max-width: 420px;
  margin: 0 auto;
}

.learning-title {
  font-size: 26px;
  font-weight: 700;
  color: #2b2d33;
  line-height: 1.3;
  margin-bottom: 28px;
}

/* GRID */
.learning-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;

  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* hide ugly scrollbar */
.learning-grid::-webkit-scrollbar {
  display: none;
}

/* CARD */
.learning-card {
  background: #ffffff;
  border: 1.5px solid #d9dbe1;
  border-radius: 20px;
  padding: 18px;
}

.learning-card {
  min-width: 260px;
  max-width: 260px;
  flex: 0 0 auto;

  scroll-snap-align: start;
}

/* QUOTE */
.quote {
  font-size: 36px;
  color: #2b2d33;
  margin-bottom: 10px;
}

/* TEXT */
.learning-text {
  font-size: 14px;
  line-height: 1.6;
  color: #4a4d55;
  margin-bottom: 18px;
}

/* USER */
.learning-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.learning-user img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.learning-user h4 {
  font-size: 15px;
  font-weight: 600;
  color: #2b2d33;
}

.learning-user span {
  font-size: 13px;
  color: #7a7d85;
}

/* LINK */
.learning-link {
  font-size: 14px;
  color: #6f3cff;
  text-decoration: none;
  font-weight: 500;
}


/* CREATOR CTA */
.creator-cta {
  background: #000;
  padding: 40px 16px 20px; /* reduced top & bottom */
  text-align: center;
}

.creator-inner {
  max-width: 380px; /* tighter to match other sections */
  margin: 0 auto;
}

.creator-title {
  font-size: 26px; /* reduced from 30 */
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}

.creator-sub {
  font-size: 14px; /* tighter */
  color: #bdbdbd;
  margin-bottom: 20px;
}

/* BUTTON */
.creator-btn {
  background: #e5e5e5;
  color: #000;
  border: none;
  padding: 12px 22px; /* slightly reduced */
  border-radius: 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 26px; /* reduced gap */
}

/* IMAGE */
.creator-image {
  margin-top: 10px;
}

.creator-image img {
  width: 100%;
  display: block;

  /* REMOVE ALL THIS VISUAL NOISE */
  border-radius: 0;      /* no fake card look */
  box-shadow: none;      /* remove glow completely */
}


/* FOOTER */
.footer {
  background: #000;
  padding: 28px 16px 40px; /* tighter vertical rhythm */
  color: #fff;
}

.footer-inner {
  max-width: 380px; /* align with other sections */
  margin: 0 auto;
}

/* LOGO */
.footer-logo {
  font-size: 28px; /* reduced from 40 */
  font-weight: 700;
  margin-bottom: 14px;
}

/* TOP ROW */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px; /* reduced */
}

/* SOCIALS */
.socials {
  display: flex;
  gap: 8px;
}

.icon {
  width: 36px; /* reduced */
  height: 36px;
  border-radius: 50%;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* LANG */
.lang {
  font-size: 12px;
  color: #aaa;
}

/* LINKS */
.footer-links {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.label {
  font-size: 11px;
  color: #7a7a7a;
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.col a {
  font-size: 14px;
  color: #eaeaea;
  text-decoration: none;
}

/* LOVABLE SECTION */
.lovable {
  padding: 60px 16px 80px;
  background:
    radial-gradient(circle at 20% 80%, #ff4fd8 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, #4f7bff 0%, transparent 40%),
    #0b0b0f;
}

.lovable-inner {
  max-width: 380px;
  margin: 0 auto;
  text-align: center;
}

/* PROMO */
.promo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.pill {
  background: linear-gradient(135deg, #6a8cff, #9a6bff);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.promo p {
  font-size: 13px;
  color: #cfcfcf;
}

/* TITLE */
.lovable-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.lovable-sub {
  font-size: 15px;
  color: #bdbdbd;
  line-height: 1.4;
  margin-bottom: 30px;
}

/* BOX */
.lovable-box {
  background: #1a1a1a;
  border-radius: 24px;
  padding: 18px;
  text-align: left;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05);
}

/* PLACEHOLDER */
.placeholder {
  color: #9a9a9a;
  font-size: 14px;
  margin-bottom: 30px;
}

/* ACTIONS */
.lovable-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LEFT */
.circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 18px;
}

/* RIGHT SIDE */
.right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.build {
  font-size: 14px;
  color: #cfcfcf;
}

.mic {
  font-size: 16px;
  color: #aaa;
}

.send {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #dcdcdc;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}


.build {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mic svg,
.send svg {
  display: block;
}




/* HEADER WRAPPER */
.x-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  padding: 12px 16px;

  background: transparent; /* 🔥 THIS is the fix */
}

/* INNER PILL */
.x-header-inner {
  max-width: 1200px;
  margin: 0 auto;

  background: #ffffff;
  border-radius: 999px;

  padding: 18px 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  box-shadow:
    0 8px 24px rgba(0,0,0,0.08),
    0 2px 6px rgba(0,0,0,0.04);

  /* subtle glass streak */
  position: relative;
  overflow: hidden;
}

/* LIGHT STREAK EFFECT */
.x-header-inner::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.6) 30%,
    transparent 60%
  );

  opacity: 0.4;
  pointer-events: none;
}

/* LOGO */
.x-logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;

  color: #111;
}

.x-logo span {
  color: #6d28d9; /* premium accent */
}

/* ACTIONS */
.x-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* ICON BUTTON BASE */
.x-icon-btn {
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  border: none;
  cursor: pointer;

  color: #111;
}

/* HOVER FEEL */
.x-icon-btn:hover {
  opacity: 0.6;
}

/* MENU ICON */
.x-icon-btn svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* SEARCH ICON */
.x-icon-btn svg {
  width: 22px;
  height: 22px;
}

/* MOBILE POLISH */
@media (max-width: 768px) {
  .x-header {
    padding: 12px;
  }

  .x-header-inner {
    padding: 14px 18px;
  }

  .x-logo {
    font-size: 22px;
  }
}


/* =========================
   DRAWER SYSTEM
========================= */

.x-drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
}

/* OVERLAY */
.x-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);

  opacity: 0;
  transition: 0.3s ease;
}

/* PANEL */
.x-drawer-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 360px;
  height: 100%;

  background: #ffffff;

  transform: translateX(-100%);
  transition: 0.35s cubic-bezier(.22,.61,.36,1);

  display: flex;
  flex-direction: column;
}

/* ACTIVE STATE */
.x-drawer.active {
  pointer-events: auto;
}

.x-drawer.active .x-drawer-overlay {
  opacity: 1;
}

.x-drawer.active .x-drawer-panel {
  transform: translateX(0);
}

/* TOP */
.x-drawer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px;
  border-bottom: 1px solid #eee;
}

.x-drawer-logo {
  font-weight: 800;
  font-size: 22px;
}

.x-drawer-logo span {
  color: #6d28d9;
}

/* CLOSE */
.x-drawer-close {
  background: none;
  border: none;
  cursor: pointer;
}

.x-drawer-close svg {
  width: 22px;
  height: 22px;
}

/* MENU */
.x-drawer-menu {
  padding: 20px;
  flex: 1;
}

.x-drawer-label {
  font-size: 13px;
  color: #888;
  margin-bottom: 16px;
}

.x-drawer-item {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 14px 0;
  font-size: 16px;
  color: #111;
  text-decoration: none;

  border-bottom: 1px solid #f2f2f2;
}

/* CTA */
.x-drawer-cta {
  padding: 20px;
  display: grid;
  gap: 12px;
}

.x-drawer-cta button {
  height: 50px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.x-drawer-cta .primary {
  background: #020617;
  color: #fff;
}

.x-drawer-cta .secondary {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
}


.x-drawer-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.85;
}

.x-drawer-item:hover svg {
  opacity: 1;
}