
:root{
  --bg:#ffffff;
  --bg-soft:#f6f8fb;
  --fg:#0b0b0c;
  --muted:#657286;
  --line:#e7ebf2;

  --max:1220px;
  --r:24px;
  --r2:18px;

  --shadow: 0 18px 55px rgba(16,24,40,.10);
  --shadow2: 0 10px 28px rgba(16,24,40,.08);

  --ease:cubic-bezier(.2,.9,.2,1);
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}
/* --- 1. Base Header Styling --- */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Default size for desktop */
.brand-img {
  height: auto;
  width: 150px;
  margin-left: 20px;
  transition: width 0.3s ease;
}

/* When the screen is 768px wide or less (Tablets/Phones) */
@media (max-width: 768px) {
  .brand-img {
    width: 150px; /* Adjust this to your preferred mobile size */
    margin-left: 20px;

  }
}

/* Optional: Even smaller for very small phones */
@media (max-width: 480px) {
  .brand-img {
    width: 120px;
  }
}
/* --- 2. Desktop Navigation --- */
.navlinks {
  display: flex;
  gap: 2rem;
}

.navlinks a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

/* --- 3. Hide Checkbox & Setup Hamburger --- */
.menu-toggle {
  display: none; /* Keep the actual checkbox invisible */
}

.hamburger {
  display: none; /* Hidden on desktop */
  flex-direction: column;
  gap: 6px;
  margin-right: 20px;
  cursor: pointer;
  z-index: 1100;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: 0.3s ease-in-out;
}


/* --- 4. Mobile Responsiveness (Max-width: 768px) --- */
@media (max-width: 768px) {
  .hamburger {
    display: flex; /* Show hamburger on mobile */
  }

  .navlinks {
    position: absolute;
    top: 100%; /* Sits right at the bottom of the header */
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    gap: 1.5rem;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    
    /* Hiding logic */
    display: none; 
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  /* --- THE TOGGLE LOGIC --- */
  /* When checkbox is checked, show navlinks */
  .menu-toggle:checked ~ .navlinks {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  /* --- HAMBURGER TO 'X' ANIMATION --- */
  .menu-toggle:checked ~ .hamburger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle:checked ~ .hamburger span:nth-child(2) {
    opacity: 0; /* Hides middle bar */
  }

  .menu-toggle:checked ~ .hamburger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font);
  background:var(--bg);
  color:var(--fg);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  background-repeat:no-repeat;
  background-size: cover;
  background-attachment: fixed;
  
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.wrap{max-width:var(--max);margin:0 auto;padding:0 22px}

/* Typography (Tarode-like: big, bold, clean) */
/* hero img */
    /* Default styles (Mobile First) */
.top  {
  margin-top: 14px;
  white-space: normal; /* Allows text to wrap naturally on phones */
}

/* Desktop styles */
@media (min-width: 1024px) {
  .top{
    margin-top: 14px; /* Matches your H1 margin */
    white-space: nowrap; /* Keeps text on one/two lines as defined by your <br> */
  }
}
/* --- 1. MOBILE (Small Phones - Default) --- */
.h1.top {
    margin-top: 14px;
    font-size: 38px; /* Prevents text overflow on small screens */
    line-height: 1.1;
    overflow: hidden;
}

p.top {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.5;
    white-space: normal; /* Allows text to wrap naturally */
}

.desktop-only {
    display: none; /* Hides <br> tags so text flows correctly on phones */
}

/* --- 2. TABLETS (iPads / Foldables) --- */
@media screen and (min-width: 768px) {
    .h1.top {
        font-size: 52px;
    }
    
    p.top {
        font-size: 18px;
    }
}


/* --- 3. DESKTOP / MAC (Laptops & Large Monitors) --- */
@media screen and (min-width: 1024px) {
    .h1.top {
        font-size: 70px; /* Your design size for high-res screens */
    }

    p.top {
        white-space: nowrap; /* Forces the specific line layout on Mac */
    }

    .desktop-only {
        display: inline; /* Shows line breaks for the intended design */
    }
}

/* --- 4. ULTRA-WIDE / RETINA (Optional) --- */
@media screen and (min-width: 1440px) {
    .wrap {
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* hero img  */
.smallcap{
  letter-spacing:.26em;
  text-transform:uppercase;
  font-size:12px;
  color:var(--muted);
}
.h1{
  font-size:clamp(44px,5.2vw,88px);
  line-height:1.02;
  margin:0;
  letter-spacing:-.02em;
}

.h2{
  font-size:clamp(30px,3.9vw,58px);
  line-height:1.06;
  margin:0;
  letter-spacing:-.02em;
}
.h3{
  font-size:22px;
  line-height:1.25;
  margin:0;
}
.lead{
  font-size:18px;
  line-height:1.8;
  color:var(--muted);
  max-width:76ch;
}
.p{line-height:1.85;color:var(--muted);margin:0}
.hr{height:1px;background:var(--line)}

/* Header (Tarode-like: airy, sticky, subtle blur) */
header{
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(255,255,255,.70);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(231,235,242,.85);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
  gap:14px;
}
.brand{
  font-weight:950;
  letter-spacing:.10em;
  display:flex;
  align-items:center;
  gap:10px;
}
.brandMark{
  width:28px;height:28px;border-radius:10px;
  background:#0b0b0c;
}
.navlinks{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  align-items:center;
}
.navlinks a{
  font-weight:900;
  color:rgba(11,11,12,.70);
  padding:10px 12px;
  border-radius:999px;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.navlinks a:hover{
  background:rgba(11,11,12,.05);
  color:#0b0b0c;
  transform: translateY(-1px);
}
.navlinks a.active{
  background:rgba(11,11,12,.07);
  color:#0b0b0c;
}

/* Buttons (Tarode-like: simple, bold) */
.btn{
  padding:12px 18px;
  border-radius:999px;
  border:1px solid rgba(231,235,242,.95);
  font-weight:950;
  background:#fff;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  will-change: transform;
}
.btn:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow2);
}
.btn.primary{
  background:#0b0b0c;
  color:#fff;
  border-color: transparent;
}
.btn.primary:hover{background:#111}

/* Hero (bright + soft overlay; closer to Tarode spacing) */
.hero{
  padding:150px 0 96px;
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(0,0,0,.06) 0%, rgba(0,0,0,0) 60%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.98)),
    var(--hero-url);
  background-size:cover;
  background-position:center;
}
.hero .actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:24px;
}

/* Sections (Tarode-like whitespace) */
.section{padding:96px 0}
.section.alt{background:var(--bg-soft)}
.grid-2{display:grid;grid-template-columns:1.2fr .8fr;gap:28px;align-items:start}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}

/* lifecyle */
.lifecycle-steps {
  display: flex;
  flex-wrap: wrap;       /* Allows it to wrap on smaller screens */
  gap: 30px;            /* Increased gap between steps */
  margin-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 15px;
}

.step-item {
  display: flex;
  flex-direction: column;
  /* Slightly larger base font */
  font-size: 14px;      
}

.step-num {
  font-size: 11px;      /* Slightly bigger numbers */
  opacity: 0.7;         /* Increased opacity to be more readable */
  margin-bottom: 4px;
  font-weight: 700;
  color: #007bff;       /* Added a color accent to the number */
}

.step-label {
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase; /* Makes it look more like a professional process */
  color: var(--fg);
}
/* Panels */
.panel {
  background: #fff;
  border: 1px solid rgba(231, 235, 242, .95);
  border-radius: var(--r);
  
  /* Balanced padding - not too small, not too big */
  padding: 30px; 
  
  box-shadow: var(--shadow);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

/* Balanced Text Sizes */
.panel .kicker {
  font-size: 1.25rem;   /* Noticeable but compact heading */
  font-weight: 700;
  margin-bottom: 10px;
}

.panel .p {
  font-size: 1.1rem;    /* Comfortable reading size */
  line-height: 1.5;
  color: #4a4a4a;       /* Slightly softer black for readability */
}

/* Badges */
.badge {
  border: 1px solid rgba(231, 235, 242, .95);
  background: #fff;
  padding: 8px 16px;    /* Slimmer badges */
  font-size: 14px;      /* Standard readable size */
  border-radius: 999px;
  font-weight: 600;     /* Reduced from 950 to look cleaner */
  color: #0b0b0c;
  transition: transform .2s var(--ease);
}
/* Cards (Tarode-like: image top, clean body, readmore row) */
.card{
  background:#fff;
  border-radius:var(--r);
  border:1px solid rgba(231,235,242,.95);
  overflow:hidden;
  box-shadow: var(--shadow);
  display:flex;flex-direction:column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover{transform: translateY(-4px); box-shadow: var(--shadow2);}
.card .media{
  height:240px;
  background-size:cover;
  background-position:center;
  transform: scale(1.02);
  transition: transform .6s var(--ease);
}
.card:hover .media{transform: scale(1.06);}
.card .body{padding:28px 26px 20px}
.kicker{
  font-size:12px;
  letter-spacing:.26em;
  text-transform:uppercase;
  color:var(--muted);
  font-weight:950;
}
.card h3{margin:12px 0 12px;font-size:28px;letter-spacing:-.01em}
.card ul{padding-left:18px;color:var(--muted);margin:0;line-height:1.85}
.readmore{
  padding:18px 26px;
  border-top:1px solid rgba(231,235,242,.95);
  font-weight:950;
  color:#0b0b0c;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.readmore span:last-child{font-size:18px}
.readmore:hover span:last-child{transform: translateX(2px); transition: transform .2s var(--ease);}

/* Stats */
.stats{margin-top:26px;display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.stat{
  background:#fff;
  border:1px solid rgba(231,235,242,.95);
  border-radius:var(--r2);
  padding:18px;
  box-shadow: var(--shadow);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.stat:hover{transform: translateY(-2px); box-shadow: var(--shadow2);}
.stat .val{font-weight:980;font-size:34px;letter-spacing:-.01em}
.stat .lbl{color:var(--muted);margin-top:6px}

/* Forms */
input, textarea{
  width:100%;
  padding:14px 14px;
  border-radius:14px;
  border:1px solid rgba(231,235,242,.95);
  font-size:16px;
  font-family:var(--font);
  outline:none;
  background:#fff;
  transition: box-shadow .2s var(--ease), border-color .2s var(--ease);
}
input:focus, textarea:focus{
  border-color: rgba(11,11,12,.20);
  box-shadow: 0 0 0 6px rgba(11,11,12,.06);
}
textarea{min-height:160px;resize:vertical}
.formRow{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.formActions{margin-top:14px;display:flex;gap:12px;flex-wrap:wrap}

/* Footer */
footer{
  padding:64px 0;
  border-top:1px solid rgba(231,235,242,.95);
  background:#fff;
}
.footGrid{display:grid;grid-template-columns:1.2fr 1fr 1fr 1fr 1.4fr;gap:18px}
.footCol h4{
  font-size:12px;
  letter-spacing:.26em;
  text-transform:uppercase;
  color:var(--muted);
  margin:0 0 12px;
}
.footCol a,.footCol div{
  color:var(--muted);
  display:block;
  line-height:1.75;
  margin:6px 0;
}
.footCol a:hover{color:#0b0b0c}
.copy{margin-top:30px;color:var(--muted);font-size:14px}

/* ---------- Animations & smooth transitions ---------- */
@media (prefers-reduced-motion: no-preference){
  .reveal{opacity:0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease);}
  .reveal.show{opacity:1; transform: translateY(0);}

  .fade-in{animation: fadeIn .8s var(--ease) both;}
  @keyframes fadeIn{from{opacity:0; transform: translateY(10px);} to{opacity:1; transform: translateY(0);}}
}

/* Responsive */
@media(max-width:980px){
  .grid-2{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .grid-4{grid-template-columns:1fr 1fr}
  .stats{grid-template-columns:repeat(2,1fr)}
  .footGrid{grid-template-columns:1fr 1fr}
  .formRow{grid-template-columns:1fr}
  .hero{padding-top:128px}
  .navlinks{gap:10px}
}


/* Accordions */
.accordion{
  margin-top:18px;
  border:1px solid rgba(231,235,242,.95);
  border-radius:var(--r);
  overflow:hidden;
  background:#fff;
  box-shadow: var(--shadow);
}
.ac-item + .ac-item{border-top:1px solid rgba(231,235,242,.95);}
.ac-head{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:18px 22px;
  background:#fff;
  cursor:pointer;
  border:0;
  text-align:left;
  font-family:var(--font);
  transition: background .2s var(--ease);
}
.ac-head:hover{background:rgba(11,11,12,.03);}
.ac-title{font-weight:980;letter-spacing:-.01em;font-size:18px;color:#0b0b0c;}
.ac-sub{font-size:13px;color:var(--muted);margin-top:6px;line-height:1.6;}
.ac-icon{
  width:34px;height:34px;border-radius:999px;
  border:1px solid rgba(231,235,242,.95);
  display:flex;align-items:center;justify-content:center;
  color:#0b0b0c;font-weight:980;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.ac-item.open .ac-icon{transform: rotate(45deg); background:rgba(11,11,12,.04);}
.ac-body{
  max-height:0;
  overflow:hidden;
  transition:max-height .45s var(--ease);
}
.ac-inner{
  padding:0 22px 22px;
}
.ac-inner .p{margin-top:10px}
.ac-cols{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  margin-top:14px;
}
.ac-box{
  border:1px solid rgba(231,235,242,.95);
  border-radius:var(--r2);
  padding:16px 16px;
  background:#fff;
}
.ac-box h4{
  margin:0;
  font-size:12px;
  letter-spacing:.26em;
  text-transform:uppercase;
  color:var(--muted);
}
.ac-box ul{margin:10px 0 0; padding-left:18px; color:var(--muted); line-height:1.85;}
.ac-box .meta{margin-top:10px; color:var(--muted); font-size:14px; line-height:1.7;}
.pills{
  margin-top:16px;
  display:flex;flex-wrap:wrap;gap:10px;
}
.pill{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(231,235,242,.95);
  background:#fff;
  font-weight:950;
  color:#0b0b0c;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.pill:hover{transform: translateY(-2px); box-shadow: var(--shadow2);}

.sectionNav{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.sectionNav a{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(231,235,242,.95);
  background:#fff;
  font-weight:950;
  color:#0b0b0c;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.sectionNav a:hover{transform: translateY(-2px); box-shadow: var(--shadow2); background:rgba(11,11,12,.02);}

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

/* Long content helpers */
.richBlock{
  margin-top:18px;
  background:#fff;
  border:1px solid rgba(231,235,242,.95);
  border-radius:var(--r);
  padding:26px;
  box-shadow: var(--shadow);
}
.richBlock h3{margin-top:6px}
.richGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  margin-top:14px;
}
.richGrid .ac-box{height:100%}
.kv{
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
  margin-top:14px;
}
.kvRow{
  display:grid;
  grid-template-columns: 220px 1fr;
  gap:14px;
  align-items:start;
  padding:12px 0;
  border-top:1px solid rgba(231,235,242,.95);
}
.kvRow:first-child{border-top:0}
.kvKey{font-weight:950;color:#0b0b0c}
.kvVal{color:var(--muted);line-height:1.85}
.listCols{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:10px 22px;
  margin-top:10px;
  color:var(--muted);
  line-height:1.85;
}
.listCols ul{margin:0;padding-left:18px}
@media(max-width:980px){
  .richGrid{grid-template-columns:1fr}
  .kvRow{grid-template-columns:1fr}
  .listCols{grid-template-columns:1fr}
}
