/* =========================
   Critical (Above the Fold)
   ========================= */


/* =========================
   Base / Mobile
   ========================= */

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

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: #111;
  background: #fff;

  background: 
    radial-gradient(circle at 10% 20%, rgba(240, 242, 245, 0.4) 0%, transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(235, 238, 242, 0.35) 0%, transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(245, 247, 250, 0.3) 0%, transparent 55%);

  background-repeat: no-repeat;
  background-size: cover;
  animation: drift 120s linear infinite;
}

/* Slowly moves the patches diagonally for a soft effect */
@keyframes drift {
  0%   { background-position: 0% 0%, 100% 100%, 50% 50%; }
  50%  { background-position: 10% 20%, 90% 80%, 55% 45%; }
  100% { background-position: 0% 0%, 100% 100%, 50% 50%; }
}



/* --- Container --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;          /* mobile edge space */
}

/* --- Header --- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  /*background: #fff5e6;*/
  background: #fff;
  z-index: 50;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Logo + text wrapper */
.logo-wrap {
  display: flex;
  align-items: center;   /* 👈 vertical center */
  gap: 0.75rem;
  transition: transform 0.15s ease;
  transform-origin: center;
  text-decoration: none;
}

.logo-wrap:hover {
  transform: scale(1.05)
}

/* Logo image */
.logo {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  overflow: hidden;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* 👈 fills + crops */
  transform: scale(1.4); /* 👈 zoom in */
  transform-origin: center;
}

/* Text next to logo */
.logo-text {
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1;
  font-family: Karla, sans-serif; 
  color: #000;       /* 👈 prevents vertical drift */
}

.try-pill {
  display: inline-flex;
  align-items: center;
  padding: 2px 16px;
  border-radius: 14px;
  background: #1f1f1d;
  text-decoration: none;
  transition: transform 0.15s ease;
  transform-origin: center;
}

.try-pill:hover {
  transform: scale(1.05)
}

.try-text {
  font-family: Karla, system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}




/* --- Hero --- */
.hero {
  /*background: #fff5e6;*/
  
  padding: 8rem 0 2rem;
  min-height: 100vh;        /* top, LR, bottom - accounts for fixed header */
  align-items: center; 
}

.hero-grid {
  display: grid;
  gap: 20px;                  /* FIXED gap */
}

/* --- Hero text (mobile centered) --- */
.hero-text {
  text-align: center;
}

.hero h1 {
  font-family: Karla, sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin: 0;
}

.hero h2 {
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.2rem);
  color: rgb(120,126,138);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

/* --- Hero image (mobile centered) --- */
.hero-image img {
  width: 100%;
  max-width: 280px;
  display: block;
  margin: 0 auto;
}

.badge{
  transition: transform 0.15s ease;
  transform-origin: center;
}

.badge:hover {
  transform: scale(1.05)
}


/* =========================
   Desktop (≥768px)
   ========================= */

@media (min-width: 768px) {
  /* Container */
  .container {
    padding-left: 3rem;
    padding-right: 3rem;
    
    
  }
  .hero{
    
  }

  /* Hero layout */
  .hero-grid {
    grid-template-columns: 2fr 1fr; /* 2/3 + 1/3 */
    align-items: center;
  }

  /* Text aligns left */
  .hero-text {
    text-align: left;
    
  }

  .hero h2 {
    margin-left: 0;
    margin-right: 0;
    max-width: 440px;
  }

  /* Image hugs right */
  .hero-image img {
    margin-left: auto;
    margin-right: 0;
    margin: 0 auto;
  }
}

@media (min-width: 1024px) {
  .hero{
    
  }
}
