/* ============================================================
   LEND LOVE – Stylesheet
   ============================================================ */

:root {
    --gradient: linear-gradient(135deg, #00E676 0%, #FFEA00 50%, #FF3D00 100%);
    --dark:          #1c1d28;
    --red:           #d50000;
    --green:         #047857;
    --dark-green:    #064e3b;
    --white:         #ffffff;
    --text-dark:     rgba(28,29,40,0.9);
    --text-muted:    rgba(28,29,40,0.7);
    --text-light:    rgba(28,29,40,0.6);
    --border:        rgba(28,29,40,0.1);
    --border-faint:  rgba(28,29,40,0.05);
    --border-gold:   rgba(255,214,0,0.3);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* Container */
.container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 clamp(24px, 14.79%, 284px);
}

/* ============================================================
   SHARED: Section label
   ============================================================ */
.label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 16px;
}
.label.dk-green  { color: var(--dark-green); }
.label.muted     { color: rgba(255,255,255,0.6); }
.label.white     { color: rgba(255,255,255,0.6); }

/* ============================================================
   SHARED: Form components
   ============================================================ */
.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.form-input {
    width: 100%;
    height: 48px;
    padding: 0 12px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(28,29,40,0.2);
    border-radius: 6px;
    font-size: 16px;
    color: var(--dark);
    outline: none;
    transition: border-color .2s, background .2s;
    font-family: inherit;
}
.form-input::placeholder { color: rgba(28,29,40,0.5); }
.form-input:focus {
    border-color: rgba(28,29,40,0.5);
    background: #fff;
}
.form-card .form-input {
    background: #fff;
}
.btn-dark {
    width: 100%;
    height: 48px;
    background: var(--dark);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .2s;
    letter-spacing: .2px;
}
.btn-dark:hover { opacity: .85; }

.success-msg {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(4,120,87,0.1);
    border: 1px solid rgba(4,120,87,0.3);
    border-radius: 6px;
    color: var(--green);
    font-size: 15px;
    font-weight: 500;
}
.error-msg {
    padding: 12px 14px;
    background: rgba(213,0,0,0.08);
    border: 1px solid rgba(213,0,0,0.25);
    border-radius: 6px;
    color: var(--red);
    font-size: 14px;
}

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: 128px;
}
.nav-inner {
    display: flex;
    align-items: center;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}
.nav-logo img {
    height: 65px;
    width: auto;
}
.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nav-spacer { width: 132px; flex-shrink: 0; }
.nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    height: 50px;
    padding: 0 32px;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 9999px;
    box-shadow: 0 1px 2px rgba(0,0,0,.05);
}
.nav-pill a {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .4px;
    transition: opacity .2s;
}
.nav-pill a:hover { opacity: .75; }

/* ============================================================
   HERO WRAPPER (contains nav + hero so nav can sit on top)
   ============================================================ */
.hero-wrapper { position: relative; }

/* ============================================================
   SECTION 1 – HERO
   ============================================================ */
.section-hero {
    background: url('../Images/home-bang-bg.jpg') center top / cover no-repeat;
    min-height: 1124px;
    padding-top: 160px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

/* Decorative shapes */
.decor {
    position: absolute;
    pointer-events: none;
    user-select: none;
}
.decor-hero-tl {
    top: 108px;
    left: 5%;
    width: 44px;
    transform: rotate(-12deg);
    opacity: .9;
}
.decor-hero-br {
    bottom: 60px;
    right: 4%;
    width: 53px;
    transform: rotate(45deg);
    opacity: .9;
}

/* Hero two-column grid */
.hero-grid {
    display: flex;
    align-items: flex-start;
    gap: clamp(40px, 4vw, 120px);
}
.hero-left {
    flex: 1;
    max-width: 780px;
    min-width: 0;
}
.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(48px, 3.75vw, 72px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1.8px;
    color: var(--dark);
    margin-bottom: 28px;
}
.hero-desc {
    font-size: clamp(16px, 1.03vw, 19.8px);
    color: rgba(28,29,40,0.8);
    line-height: 1.55;
    margin-bottom: 20px;
}
.hero-bonus {
    font-size: clamp(14px, .94vw, 18px);
    color: rgba(28,29,40,0.9);
    line-height: 1.55;
    margin-bottom: 32px;
}
.form-note {
    font-size: 13.9px;
    color: var(--text-muted);
    line-height: 1.45;
    margin-top: 10px;
}

/* Hero right – app image */
.hero-right { flex-shrink: 0; }

.hero-app-img {
    width: 500px;
    height: auto;
    display: block;
}

/* ============================================================
   SECTION 2 – HOW IT WORKS
   ============================================================ */
.section-how {
    background: #fff;
    padding: 96px 0;
    overflow: hidden;
    position: relative;
}
.decor-how-tr {
    top: 44px;
    right: 7%;
    width: 47px;
    transform: rotate(12deg);
    opacity: .45;
}
.decor-how-bl {
    bottom: 74px;
    left: 4%;
    width: 54px;
    transform: rotate(-12deg);
    opacity: .45;
}
.section-header-center {
    text-align: center;
    max-width: 752px;
    margin: 0 auto 56px;
}
.section-header-center h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 2.5vw, 48px);
    font-weight: 700;
    letter-spacing: -1.2px;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 20px;
}
.section-header-center p {
    font-size: clamp(15px, .92vw, 17.7px);
    color: var(--text-muted);
    line-height: 1.6;
}
.how-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 32px;
}
.how-card {
    background: #fff;
    border: 1px solid var(--border-faint);
    border-radius: 12px;
    padding: 40px 32px;
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
    min-height: 214px;
}
.how-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 18px;
}
.how-card p {
    font-size: 15.8px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ============================================================
   SECTION 3 – WHY JOIN
   ============================================================ */
.section-why {
    background: url('../Images/join-bg.jpg') center / cover no-repeat;
    min-height: 424px;
    padding: 96px 0;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}
.decor-why-tr {
    top: 34px;
    right: 7%;
    width: 90px;
    transform: rotate(45deg);
    opacity: .85;
}
.decor-why-bl {
    bottom: 59px;
    left: 9%;
    width: 57px;
    transform: rotate(-12deg);
    opacity: .85;
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
    width: 100%;
}
.why-left .label { margin-bottom: 12px; }
.why-left h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(36px, 2.5vw, 48px);
    font-weight: 700;
    letter-spacing: -1.2px;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 24px;
}
.why-left p {
    font-size: 18px;
    color: rgba(28,29,40,0.8);
    line-height: 1.625;
}
.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: rgba(28,29,40,0.9);
    line-height: 1.55;
}
.benefit-list .check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================================
   SECTION 4 – LAUNCH DAY
   ============================================================ */
.section-launch {
    background: url('../Images/bg.jpg') center / cover no-repeat;
    min-height: 740px;
    padding: 96px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.launch-card {
    background: var(--dark);
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 64px;
    gap: 60px;
    width: 100%;
}
.launch-left .label { margin-bottom: 16px; }
.launch-left h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 2.5vw, 48px);
    font-weight: 600;
    color: #fff;
    letter-spacing: -1.2px;
    line-height: 1;
    margin-bottom: 24px;
}
.launch-left .launch-desc {
    font-size: 17.7px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 40px;
}
.launch-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
}
.launch-stat h4 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}
.launch-stat p {
    font-size: 15.9px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}
.fine-print {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}
.launch-img-wrap {
    width: 380px;
    height: 214px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
    background: rgba(255,255,255,0.05);
    flex-shrink: 0;
}
.launch-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   SECTION 5 – GET THE LINK
   ============================================================ */
.section-get-link {
    background: var(--gradient);
    min-height: 642px;
    padding: 96px 0;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}
.decor-link-tr {
    top: 42px;
    right: 7.7%;
    width: 75px;
    transform: rotate(12deg);
    opacity: .85;
}
.get-link-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: clamp(40px, 5vw, 80px);
    align-items: start;
    width: 100%;
}
.get-link-left { padding-top: 40px; }
.get-link-left .label { margin-bottom: 16px; }
.get-link-left h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(36px, 2.5vw, 48px);
    font-weight: 800;
    letter-spacing: -1.2px;
    color: var(--red);
    line-height: 1.05;
    margin-bottom: 24px;
}
.get-link-left .intro {
    font-size: 18px;
    color: rgba(28,29,40,0.8);
    line-height: 1.6;
    margin-bottom: 16px;
}
.get-link-list li {
    font-size: 17.7px;
    color: rgba(28,29,40,0.9);
    line-height: 1.7;
}

/* Form card */
.form-card {
    width: 624px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 56px 40px 40px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,.10), 0 8px 10px -6px rgba(0,0,0,.10);
    flex-shrink: 0;
}
.form-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}
.form-card .card-sub {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 32px;
}
.form-disclaimer {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    line-height: 1.4;
    margin-top: 16px;
}

/* ============================================================
   SECTION 6 – FAQ
   ============================================================ */
.section-faq {
    background: #fff;
    padding: 96px 0;
}
.faq-grid {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: start;
}
.faq-left .label { margin-bottom: 16px; }
.faq-left h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 1.875vw, 36px);
    font-weight: 700;
    letter-spacing: -.9px;
    color: var(--red);
    line-height: 1.1;
    margin-bottom: 20px;
}
.faq-left p {
    font-size: 17.6px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Accordion */
.accordion { display: flex; flex-direction: column; gap: 8px; }
.accordion-item {
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    overflow: hidden;
}
.accordion-btn {
    width: 100%;
    background: #fff;
    border: none;
    padding: 0 24px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
}
.accordion-btn-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
}
.accordion-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.accordion-icon svg path {
    transition: transform .3s ease;
    transform-origin: center;
    transform-box: fill-box;
}
.accordion-item.open .accordion-icon svg .icon-h {
    transform: rotate(90deg);
    opacity: 0;
}
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.accordion-item.open .accordion-body { max-height: 300px; }
.accordion-body-inner {
    padding: 0 24px 20px;
    font-size: 15.5px;
    color: var(--text-muted);
    line-height: 1.7;
    border-top: 1px solid rgba(255,214,0,0.2);
    padding-top: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--dark);
    padding: 48px 0 0;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
}
.footer-brand { max-width: 380px; }
.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
    mix-blend-mode: screen;
}
.footer-tagline {
    font-size: 13.8px;
    color: rgba(255,255,255,0.7);
    line-height: 1.45;
}
.footer-nav-links {
    display: flex;
    align-items: center;
    gap: 52px;
    padding-top: 10px;
}
.footer-nav-links a {
    font-size: 14px;
    color: #fff;
    letter-spacing: .35px;
    transition: opacity .2s;
}
.footer-nav-links a:hover { opacity: .65; }
.footer-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 0;
}
.footer-copy {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 20px 0;
}

/* ============================================================
   NAV – hamburger (hidden on desktop, shown on mobile)
   ============================================================ */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 10px 12px;
    cursor: pointer;
    margin-left: auto;
    flex-shrink: 0;
}
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(28,29,40,0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 99;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: background .2s;
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a:hover { background: rgba(255,255,255,0.06); }

/* ============================================================
   BREAKPOINT: 1200px – shrink fixed-width elements
   ============================================================ */
@media (max-width: 1200px) {
    .hero-app-img  { width: 380px; }
    .form-card     { width: 480px; }
}

/* ============================================================
   BREAKPOINT: 1024px – tablets / small laptops
   ============================================================ */
@media (max-width: 1024px) {
    /* Nav */
    .site-nav      { height: 88px; }
    .nav-logo img  { height: 50px; }
    .nav-pill      { gap: 24px; height: 44px; padding: 0 22px; }
    .nav-pill a    { font-size: 14px; }
    .nav-spacer    { width: 80px; }

    /* Hero */
    .section-hero  { min-height: auto; padding-top: 116px; padding-bottom: 60px; }
    .hero-grid     { flex-direction: column; gap: 48px; }
    .hero-left     { max-width: 100%; }
    .hero-right    { width: 100%; display: flex; justify-content: center; }
    .hero-app-img  { width: min(420px, 100%); }

    /* How it works: 2 cols */
    .how-cards     { grid-template-columns: repeat(2, 1fr); }

    /* Why join: stack */
    .why-grid      { grid-template-columns: 1fr; gap: 40px; }
    .section-why   { min-height: auto; }

    /* Launch day: stack */
    .launch-card   { grid-template-columns: 1fr; padding: 48px; gap: 40px; }
    .launch-img-wrap { width: 100%; height: auto; aspect-ratio: 588 / 331; }

    /* Get the link: stack */
    .get-link-grid { grid-template-columns: 1fr; }
    .get-link-left { padding-top: 0; }
    .form-card     { width: 100%; }

    /* FAQ: stack */
    .faq-grid      { grid-template-columns: 1fr; }
}

/* ============================================================
   BREAKPOINT: 768px – tablets portrait / large phones
   ============================================================ */
@media (max-width: 768px) {
    /* Nav: swap pill for hamburger */
    .site-nav      { height: 80px; }
    .nav-inner     { padding: 0 20px; }
    .nav-logo img  { height: 46px; }
    .nav-center    { display: none; }
    .nav-spacer    { display: none; }
    .nav-hamburger { display: flex; }

    /* Hero */
    .section-hero  { padding-top: 100px; }
    .hero-title    { font-size: clamp(32px, 8vw, 48px); letter-spacing: -1px; }
    .hero-desc     { font-size: 16px; }
    .hero-bonus    { font-size: 15px; }

    /* How it works: 1 col */
    .how-cards     { grid-template-columns: 1fr; }
    .section-how   { padding: 64px 0; }

    /* Why join */
    .section-why   { padding: 64px 0; }
    .why-left h2   { font-size: clamp(30px, 6vw, 40px); }
    .why-left p    { font-size: 16px; }
    .benefit-list li { font-size: 16px; }

    /* Launch day */
    .section-launch  { padding: 64px 0; min-height: auto; }
    .launch-card     { padding: 36px 28px; gap: 32px; }
    .launch-stats    { grid-template-columns: 1fr; gap: 24px; }
    .launch-stat h4  { font-size: 20px; }
    .launch-left h2  { font-size: clamp(26px, 5vw, 36px); }

    /* Get the link */
    .section-get-link { padding: 64px 0; min-height: auto; }
    .get-link-left h2 { font-size: clamp(28px, 6vw, 40px); }
    .form-card        { padding: 36px 24px 28px; }

    /* FAQ */
    .section-faq      { padding: 64px 0; }
    .accordion-btn    { height: auto; min-height: 56px; padding: 14px 18px; }
    .accordion-btn-text { font-size: 15px; }
    .accordion-body-inner { padding: 0 18px 18px; padding-top: 14px; font-size: 14.5px; }

    /* Footer */
    .footer-inner      { flex-direction: column; gap: 28px; margin-bottom: 28px; }
    .footer-brand      { max-width: 100%; }
    .footer-nav-links  { gap: 24px; flex-wrap: wrap; }
}

/* ============================================================
   BREAKPOINT: 480px – small phones
   ============================================================ */
@media (max-width: 480px) {
    /* Form: stack first/last name */
    .form-row              { grid-template-columns: 1fr; }

    /* Typography */
    .hero-title            { font-size: 32px; }
    .section-header-center h2 { font-size: 26px; }
    .why-left h2           { font-size: 28px; }
    .get-link-left h2      { font-size: 28px; }
    .launch-left h2        { font-size: 26px; }
    .faq-left h2           { font-size: 24px; }

    /* Section padding */
    .section-how,
    .section-why,
    .section-launch,
    .section-get-link,
    .section-faq { padding: 52px 0; }

    /* Cards */
    .how-card              { padding: 28px 22px; }
    .launch-card           { padding: 28px 20px; }
    .form-card             { padding: 28px 20px 24px; }

    /* Nav */
    .nav-logo img          { height: 40px; }

    /* Footer */
    .footer-logo           { height: 54px; }
    .footer-nav-links      { gap: 16px; }
}
