/* =========================================================
   StartupGrants India — Store Page (Dark + Yellow theme)
   Fully responsive, 100% width on every device
   ========================================================= */
:root{
  /* --- colour --- */
  --bg:            #0B0B0D;
  --bg-soft:       #121214;
  --surface:       #17171A;
  --surface-hi:    #1E1E22;
  --border:        #2A2A2F;
  --border-soft:   #232327;

  --yellow:        #F5C518;
  --yellow-soft:   #FFE07A;
  --yellow-dim:    #A98B1E;
  --yellow-wash:   rgba(245,197,24,0.08);

  --text:          #F3F1E8;
  --text-muted:    #A6A5AC;
  --text-faint:    #6C6C74;

  /* --- type --- */
  --font-display:  'Fraunces', serif;
  --font-body:     'Inter', sans-serif;
  --font-mono:     'IBM Plex Mono', monospace;

  /* --- shape --- */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  /* fluid side-padding used by every full-width section */
  --edge: clamp(16px, 4vw, 32px);
}

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

html{
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body{
  margin: 0;
  width: 100%;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }

body::before{
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(245,197,24,0.05), transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(245,197,24,0.04), transparent 45%);
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,11,13,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}

.header-inner{
    width:100%;
    max-width:100%;
    margin:0;
    padding:16px 40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.logo{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.logo-mark{
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--yellow);
  color: #14140F;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.logo-text em{ font-style: normal; color: var(--yellow); }

.main-nav{
display:flex;
gap:28px;
font-size:14px;
font-weight:500;
}

.main-nav a{
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}

.main-nav a:hover{ color: var(--text); }

.main-nav a.active{
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

.header-actions{
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn{
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}

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

.btn-ghost{
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover{ border-color: var(--yellow-dim); }

.btn-solid{
  background: var(--yellow);
  color: #14140F;
}
.btn-solid:hover{ background: var(--yellow-soft); }

.nav-toggle{
display:none;
background:none;
border:none;
color:#fff;
font-size:30px;
cursor:pointer;
width:42px;
height:42px;
margin-left:auto;
}

.nav-toggle span{
  width: 16px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity: 0; }
.nav-toggle.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 88px) var(--edge) clamp(28px, 5vw, 44px);
  text-align: center;
}

.eyebrow{
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--yellow);
  margin: 0 0 18px;
}

.hero h1{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 5.2vw, 58px);
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -0.5px;
}

.hero h1 span{ font-style: italic; color: var(--yellow); }

.hero-sub{
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.6;
}

/* =========================================================
   PRODUCTS — "ticket" cards (signature element for the Store)
   ========================================================= */
.products-section{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 8px var(--edge) 48px;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    align-items:stretch;
}

.ticket{
    min-height: 100%;
}

.ticket:hover{
  transform: translateY(-3px);
  border-color: var(--yellow-dim);
  background: var(--surface-hi);
}

.ticket-info{
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.category{
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--yellow-soft);
  background: var(--yellow-wash);
  border: 1px solid var(--yellow-dim);
  border-radius: 999px;
  padding: 4px 10px;
}

.ticket-info h3{
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

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

.features{
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.features li{
  font-size: 13.5px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.features li::before{
  content: "✓";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  font-size: 10.5px;
  font-weight: 700;
  color: #14140F;
  background: var(--yellow);
  border-radius: 50%;
  margin-top: 1px;
}

/* --- the tear-off stub: perforated edge + price --- */
.ticket-stub{
  position: relative;
  width: 190px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 18px;
  background: var(--bg-soft);
  border-left: 1px dashed var(--border);
}

/* perforation notches */
.ticket-stub::before,
.ticket-stub::after{
  content: "";
  position: absolute;
  left: -9px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
}
.ticket-stub::before{ top: -9px; }
.ticket-stub::after{ bottom: -9px; }

.price-row{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.price-old{
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-faint);
  text-decoration: line-through;
}

.price-new{
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--yellow);
}

.price-note{
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-faint);
  text-align: center;
  letter-spacing: 0.3px;
}

.btn-view{
  margin-top: 4px;
  width: 100%;
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  color: #14140F;
  background: var(--yellow);
  border-radius: 999px;
  padding: 10px 14px;
  transition: background .2s ease, transform .15s ease;
}

.btn-view:hover{
  background: var(--yellow-soft);
  transform: translateY(-1px);
}

.footnote{
  text-align: center;
  margin: 36px 0 0;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.5px;
  color: var(--text-faint);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  position: relative;
  z-index: 1;
  width: 100%;
  border-top: 1px solid var(--border-soft);
  background: var(--bg-soft);
  padding: clamp(36px, 6vw, 56px) var(--edge) 28px;
}

.footer-grid{
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-brand p{
  margin-top: 16px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-faint);
  max-width: 320px;
}

.footer-col h4{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--yellow-soft);
  margin: 0 0 16px;
}

.footer-col a{
  display: block;
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
  transition: color .18s ease;
}

.footer-col a:hover{ color: var(--yellow); }

.footer-bottom{
  width: 100%;
  max-width: 1400px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-faint);
}

.disclaimer{ font-style: italic; }

/* =========================================================
   RESPONSIVE — every breakpoint stays at 100% width,
   nothing overflows horizontally
   ========================================================= */

@media (max-width: 1400px){
  .footer-grid{ grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; }
}

@media (max-width: 1024px){
  .main-nav{ gap: 22px; font-size: 14.5px; }
  .footer-grid{ grid-template-columns: 1fr 1fr 1fr; gap: 28px 24px; }
  .footer-brand{ grid-column: 1 / -1; }

  .ticket{ grid-template-columns: 1fr; }
  .ticket-stub{
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    border-left: none;
    border-top: 1px dashed var(--border);
    padding: 16px 24px;
  }
  .ticket-stub::before,
  .ticket-stub::after{
    left: auto;
    top: -9px;
    bottom: auto;
  }
  .ticket-stub::before{ left: -9px; }
  .ticket-stub::after{ right: -9px; left: auto; }
  .price-row{ align-items: flex-start; }
  .btn-view{ width: auto; padding: 10px 22px; }
}

@media(max-width:880px){

.nav-toggle{
display:flex;
align-items:center;
justify-content:center;
width:42px;
height:42px;
margin-left:auto;
}

.header-inner{
display:flex;
align-items:center;
justify-content:space-between;
flex-wrap:wrap;
}

.main-nav{
display:none;
width:100%;
flex-direction:column;
margin-top:15px;
background:#1a1a1c;
border-radius:12px;
overflow:hidden;
}

.main-nav.is-open{
display:flex;
}

.main-nav a{
padding:16px 20px;
border-bottom:1px solid rgba(255,255,255,.08);
}

.header-actions{
display:none;
width:100%;
margin-top:10px;
}

.header-actions.is-open{
display:block;
}

.header-actions .btn{
width:100%;
}
.header-actions .btn{
width:100%;
justify-content:center;
}

.header-actions .btn{
width:100%;
}

}

@media (max-width: 700px){
  .header-actions .btn-solid{ padding: 9px 14px; font-size: 13px; }
  .logo-text{ font-size: 16px; }
  .grid{ grid-template-columns: 1fr; }
  .ticket-info{
padding:18px;
}

.ticket-info h3{
font-size:22px;
line-height:1.35;
}

.ticket-info p{
font-size:14px;
}

.features li{
font-size:13px;
}

.ticket-stub{
padding:18px;
}

.price-new{
font-size:28px;
}

.btn-view{
width:100%;
}
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px){
  .btn-solid{ display: none; }
.hero{
padding:45px 18px 30px;
}

.hero h1{
font-size:34px;
line-height:1.2;
}

.hero-sub{
font-size:15px;
}

.products-section{
padding:10px 16px 35px;
}

.ticket{
border-radius:18px;
}

.ticket-info{
padding:18px;
}

.ticket-info h3{
font-size:21px;
}

.ticket-info p{
font-size:14px;
}

.features{
gap:10px;
}

.features li{
font-size:13px;
}

.ticket-stub{
padding:16px;
}

.price-new{
font-size:26px;
}

.btn-view{
width:100%;
padding:12px;
}

.footer-grid{
grid-template-columns:1fr;
}

.footer-bottom{
flex-direction:column;
text-align:center;
align-items:center;
}
  .ticket-stub{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .price-row{ align-items: flex-start; }
  .btn-view{ width: 100%; text-align: center; }

  .footer-grid{ grid-template-columns: 1fr; gap: 8px 0; }
  .footer-col{ padding-top: 8px; }

  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    text-align: left;
  }
}

@media (max-width: 400px){
  .eyebrow{ letter-spacing: 2px; font-size: 11px; }
  .logo-mark{ width: 30px; height: 30px; font-size: 12px; }
  .ticket-info{ padding: 20px; }
  .price-new{ font-size: 26px; }
}

/* ===========================
   Desktop Only
=========================== */

@media (min-width:1200px){

    .products-section{
        max-width:1600px;
    }

    .grid{
        grid-template-columns:repeat(2,minmax(500px,1fr));
        gap:40px;
    }

    .ticket-info{
        padding:32px;
    }

    .ticket-info h3{
        font-size:32px;
        line-height:1.2;
    }

    .ticket-info p{
        font-size:16px;
    }

    .features li{
        font-size:15px;
    }

    .ticket-stub{
        width:230px;
    }

    .price-new{
        font-size:42px;
    }

}

@media(max-width:420px){

.logo{
font-size:17px;
}

.hero h1{
font-size:30px;
}

.hero-sub{
font-size:14px;
}

.ticket-info{
padding:16px;
}

.ticket-info h3{
font-size:20px;
}

.price-new{
font-size:24px;
}

}


/* Navigation CSS */


.top{
    position:sticky;
    top:0;
    z-index:999;
    background:rgba(11,11,13,.88);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--border-soft);
}

.top-inner{
    width:100%;
    padding:16px 40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.brand{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:20px;
    font-weight:700;
    color:#fff;
}

.brand .dot{
    width:10px;
    height:10px;
    background:var(--yellow);
    transform:rotate(45deg);
    border-radius:2px;
}

.primary{
    display:flex;
    align-items:center;
    gap:28px;
}

.primary a{
    color:var(--text-muted);
    font-size:14px;
    font-weight:500;
    transition:.25s;
}

.primary a:hover{
    color:#fff;
}

.top-actions{
    display:flex;
    align-items:center;
}

.top-actions .btn{
    background:var(--yellow);
    color:#111;
    border:none;
    border-radius:8px;
    padding:10px 20px;
    font-weight:600;
    cursor:pointer;
}

.menu-toggle{
    display:none;
    width:42px;
    height:42px;
    background:none;
    border:none;
    color:#fff;
    font-size:30px;
    cursor:pointer;
}

/* Mobile */

@media(max-width:880px){

.top-inner{
    flex-wrap:wrap;
    padding:15px 18px;
}

.menu-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
}

.primary{
    display:none;
    width:100%;
    flex-direction:column;
    margin-top:15px;
    background:#1a1a1c;
    border-radius:12px;
    overflow:hidden;
    gap:0;
}

.primary.active{
    display:flex;
}

.primary a{
    width:100%;
    padding:16px 20px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.primary a:last-child{
    border-bottom:none;
}

.top-actions{
    display:none;
    width:100%;
    margin-top:10px;
}

.top-actions.active{
    display:block;
}

.top-actions .btn{
    width:100%;
}

.site-header,
.header-inner,
.main-nav,
.header-actions,
.nav-toggle{
    display:none;
}

}

/* Desktop */

@media(min-width:881px){

.site-header{
    display:none;
}

}