@import url('https://unpkg.com/aos@next/dist/aos.css');

/* Base Styles & Custom Properties */
:root {
    --color-bg: #050505;
    --color-secondary-bg: #101010;
    --color-cards: #151515;
    --color-borders: #262626;
    --color-primary: #00FF66;
    --color-text: #FFFFFF;
    --color-secondary-text: #B8B8B8;
}
html,
body {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: 'Inter', sans-serif;
}
.bg-background { background-color: var(--color-bg) !important; }
.bg-secondary-bg { background-color: var(--color-secondary-bg) !important; }
.bg-cards { background-color: var(--color-cards) !important; }
.bg-primary { background-color: var(--color-primary) !important; }
.text-background { color: var(--color-bg) !important; }
.text-primary { color: var(--color-primary) !important; }
.text-primary-text { color: var(--color-text) !important; }
.text-secondary-text { color: var(--color-secondary-text) !important; }
.border-borders { border-color: var(--color-borders) !important; }
.font-body { font-family: 'Inter', sans-serif !important; }
.font-heading { font-family: 'Space Grotesk', sans-serif !important; }

/* Custom Cursor */
#cursor-glow {
    background: radial-gradient(circle, var(--color-primary) 0%, rgba(0, 255, 102, 0) 60%);
    opacity: 0.1;
    transition: transform 0.2s ease-out;
    transform: translate(-50%, -50%);
}

/* Navbar Styles */
#navbar.scrolled {
    background-color: rgba(16, 16, 16, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-borders);
}
.nav-link {
    position: relative;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: var(--color-secondary-text);
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: var(--color-text);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}
.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
    outline: none;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    color: var(--color-bg);
    background: var(--color-primary);
}
.btn-primary:hover {
    box-shadow: 0 0 20px var(--color-primary);
}
.btn-secondary {
    color: var(--color-text);
    background: var(--color-cards);
    border: 1px solid var(--color-borders);
}
.btn-secondary:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn::after { /* Ripple Effect */
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
    background-repeat: no-repeat;
    background-position: 50%;
    transform: scale(10, 10);
    opacity: 0;
    transition: transform .5s, opacity 1s;
}
.btn:active::after {
    transform: scale(0, 0);
    opacity: .3;
    transition: 0s;
}

/* Tag Styles */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}
.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 44px;
    padding: 0.62rem 1rem;
    color: var(--color-text);
    font-size: 0.92rem;
    font-weight: 700;
    border: 1px solid rgba(0, 255, 102, 0.28);
    border-radius: 999px;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 255, 102, 0.2), transparent 38%),
        rgba(21, 21, 21, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 22px rgba(0, 255, 102, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.tag svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    color: var(--color-primary);
    filter: drop-shadow(0 0 8px rgba(0, 255, 102, 0.45));
}
.tag:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 255, 102, 0.7);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 28px rgba(0, 255, 102, 0.2);
}
@media (min-width: 768px) {
    .hero-tags {
        justify-content: flex-start;
    }
}

/* Hero Section Text Reveal */
.hero-text-reveal {
    opacity: 0;
    transform: translateY(20px);
}

/* Section Heading */
.section-heading {
    color: var(--color-text);
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
}
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.section-kicker::before,
.section-kicker::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--color-primary);
    opacity: 0.65;
}

/* Cinematic Story Text */
.cinematic-text {
    opacity: 0.3;
    transition: opacity 0.5s ease-in-out;
}
.cinematic-text.is-in-view {
    opacity: 1;
}
.story-section {
    position: relative;
    overflow: hidden;
}
.story-section::before {
    content: '';
    position: absolute;
    inset: 10% auto auto 50%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(0, 255, 102, 0.11), transparent 62%);
    transform: translateX(-50%);
    pointer-events: none;
}
.story-strip {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}
.story-strip::before {
    content: '';
    position: absolute;
    left: 12%;
    right: 12%;
    top: 38px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 102, 0.6), transparent);
}
.story-card {
    position: relative;
    min-height: 245px;
    padding: 2rem;
    border: 1px solid var(--color-borders);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
        var(--color-cards);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}
.story-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(0, 255, 102, 0.16), transparent 44%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.story-card:hover::after,
.story-card.is-in-view::after {
    opacity: 1;
}
.story-marker {
    position: relative;
    z-index: 1;
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-primary);
    border: 1px solid rgba(0, 255, 102, 0.28);
    border-radius: 20px;
    background: #0d0d0d;
    box-shadow: 0 0 0 8px rgba(0, 255, 102, 0.04);
}
.story-marker svg {
    width: 30px;
    height: 30px;
}
.story-label {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 0.8rem;
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.story-card p {
    position: relative;
    z-index: 1;
    color: var(--color-text);
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    font-weight: 600;
    line-height: 1.25;
}
@media (max-width: 767px) {
    .story-strip {
        grid-template-columns: 1fr;
    }
    .story-strip::before {
        left: 38px;
        right: auto;
        top: 48px;
        bottom: 48px;
        width: 1px;
        height: auto;
        background: linear-gradient(180deg, transparent, rgba(0, 255, 102, 0.6), transparent);
    }
    .story-card {
        min-height: auto;
        padding: 1.5rem;
        text-align: left;
    }
    .story-marker {
        margin: 0 0 1.25rem;
    }
}

/* Vision Card */
.vision-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color-borders);
    border-radius: 1rem;
    background: var(--color-secondary-bg);
    transition: all 0.3s ease;
}
.vision-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px -10px rgba(0, 255, 102, 0.1);
}
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--x) var(--y), rgba(0, 255, 102, 0.15), transparent 20%);
    opacity: 0;
    transition: opacity 0.3s;
}
.vision-card:hover::before {
    opacity: 1;
}
.card-icon,
.feature-icon,
.investor-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(0, 255, 102, 0.22);
    border-radius: 12px;
    color: var(--color-primary);
    background: linear-gradient(135deg, rgba(0, 255, 102, 0.14), rgba(255, 255, 255, 0.04));
}
.card-icon svg,
.feature-icon svg,
.investor-icon svg {
    width: 24px;
    height: 24px;
}

/* Feature Card */
.flinq-logo-frame {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: 92vw;
    padding: 0.875rem 1.125rem;
    border: 1px solid rgba(245, 194, 66, 0.22);
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.36);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 20px 50px rgba(0, 0, 0, 0.28),
        0 0 34px rgba(245, 194, 66, 0.08);
}
.flinq-logo {
    display: block;
    width: min(300px, 68vw);
    height: auto;
}
.feature-card {
    padding: 1.5rem;
    border: 1px solid transparent;
    border-radius: 0.75rem;
    background: var(--color-cards);
    transition: border-color 0.3s ease;
}
.feature-card:hover {
    border-color: var(--color-borders);
}

/* Bento Grid */
.bento-grid {
    align-items: stretch;
}
.bento-card {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(0, 255, 102, 0.18);
    background:
        linear-gradient(145deg, rgba(0, 255, 102, 0.11), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
        #121212;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 20px 60px rgba(0, 0, 0, 0.24);
}
.bento-card h3,
.bento-card p {
    position: relative;
    z-index: 1;
}
.bento-card h3 {
    max-width: 14ch;
}
.bento-card p {
    max-width: 54ch;
    line-height: 1.65;
}
.bento-visual {
    position: relative;
    z-index: 1;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: auto;
    color: var(--color-primary);
    border: 1px solid rgba(0, 255, 102, 0.32);
    border-radius: 16px;
    background: rgba(0, 255, 102, 0.08);
    box-shadow: 0 0 28px rgba(0, 255, 102, 0.12);
}
.bento-visual svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.8;
}
.bento-card::after {
    content: '';
    position: absolute;
    inset: auto -18% -36% 28%;
    height: 180px;
    background: radial-gradient(circle, rgba(0, 255, 102, 0.18), transparent 62%);
    opacity: 0.72;
    pointer-events: none;
}
.bento-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 102, 0.45);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 24px 70px rgba(0, 0, 0, 0.32),
        0 0 36px rgba(0, 255, 102, 0.09);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--color-borders);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}
.timeline-item:nth-child(odd) {
    left: 0;
}
.timeline-item:nth-child(even) {
    left: 50%;
}
.timeline-item::after { /* Circle on timeline */
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: var(--color-background);
    border: 3px solid var(--color-borders);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s;
}
.timeline-item:nth-child(even)::after {
    left: -8px;
}
.timeline-item.is-in-view::after {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
}
.timeline-content {
    padding: 20px 30px;
    background-color: var(--color-cards);
    position: relative;
    border-radius: 12px;
    border: 1px solid var(--color-borders);
}

/* Founder Card */
.founder-card {
    position: relative;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--color-borders);
    border-radius: 1rem;
    background: var(--color-secondary-bg);
    transition: all 0.3s ease;
}
.founder-img {
    width: 8rem;
    height: 8rem;
    margin-left: auto;
    margin-right: auto;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid var(--color-borders);
    transition: all 0.3s ease;
}
.founder-linkedin {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--color-secondary-text);
    opacity: 0;
    transform: translateY(-0.5rem);
    transition: all 0.3s ease;
}
.founder-linkedin:hover {
    color: var(--color-primary);
}
.founder-card:hover .founder-linkedin {
    opacity: 1;
    transform: translateY(0);
}
.founder-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-borders);
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.5);
}
.founder-card:hover .founder-img {
    border-color: var(--color-primary);
    transform: scale(1.05);
}

/* Investor Card */
.investor-metrics {
    align-items: stretch;
}
.investor-card {
    position: relative;
    min-height: 190px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(0, 255, 102, 0.16);
    border-radius: 1rem;
    background:
        linear-gradient(135deg, rgba(0, 255, 102, 0.09), transparent 36%),
        var(--color-cards);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.investor-card.md\:col-span-2 {
    min-height: 170px;
}
.investor-card h4 {
    margin-top: 0.1rem;
}
.investor-card p {
    margin-top: 0.55rem;
    line-height: 1.16;
}
.investor-note {
    display: inline-flex;
    width: fit-content;
    margin-top: 0.8rem;
    padding: 0.35rem 0.65rem;
    color: var(--color-primary);
    font-size: 0.82rem;
    font-weight: 700;
    border: 1px solid rgba(0, 255, 102, 0.24);
    border-radius: 999px;
    background: rgba(0, 255, 102, 0.08);
}
.investor-people-card {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    border: 1px solid rgba(0, 255, 102, 0.18);
    border-radius: 18px;
    background:
        radial-gradient(circle at 85% 20%, rgba(0, 255, 102, 0.14), transparent 36%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
        var(--color-cards);
}
.investor-people {
    display: grid;
    gap: 1rem;
}
.investor-person {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--color-borders);
    border-radius: 14px;
    background: rgba(5, 5, 5, 0.46);
}
.investor-person-img {
    width: 68px;
    height: 68px;
    flex: 0 0 auto;
    border-radius: 999px;
    border: 2px solid rgba(0, 255, 102, 0.25);
    object-fit: cover;
}
.investor-person h4 {
    color: var(--color-text);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
}
.investor-person p {
    color: var(--color-secondary-text);
}
@media (max-width: 767px) {
    .investor-people-card {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
}

/* Legal Card (Glassmorphism) */
.legal-card {
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Form Input */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    color: var(--color-text);
    border: 1px solid var(--color-borders);
    border-radius: 0.5rem;
    background: var(--color-cards);
    transition: all 0.3s ease;
    outline: none;
}
.form-input::placeholder {
    color: var(--color-secondary-text);
}
.form-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(0, 255, 102, 0.24);
}

/* Social Icons */
.social-icon {
    color: var(--color-secondary-text);
    transition: all 0.3s ease;
}
.social-icon:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

/* India Map SVG */
.hero-map-panel {
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 255, 102, 0.12);
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% 45%, rgba(0, 255, 102, 0.13), transparent 48%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 30px 90px rgba(0, 0, 0, 0.28);
}
.hero-commerce-core {
    position: absolute;
    inset: 10%;
    z-index: 1;
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 50%, rgba(0, 255, 102, 0.18), rgba(0, 255, 102, 0.04) 34%, transparent 64%);
}
.hero-orbit {
    position: absolute;
    inset: 14%;
    border: 1px solid rgba(0, 255, 102, 0.18);
    border-radius: 48% 52% 44% 56%;
    transform: rotate(-18deg);
}
.hero-orbit-two {
    inset: 24%;
    border-color: rgba(0, 255, 102, 0.28);
    transform: rotate(28deg);
}
.hero-core-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-bg);
    border-radius: 28px;
    background: var(--color-primary);
    box-shadow: 0 0 60px rgba(0, 255, 102, 0.34);
    transform: translate(-50%, -50%) rotate(-8deg);
}
.hero-core-icon svg {
    width: 44px;
    height: 44px;
}
.hero-node {
    position: absolute;
    z-index: 2;
    padding: 0.4rem 0.7rem;
    color: var(--color-text);
    font-size: 0.78rem;
    font-weight: 800;
    border: 1px solid rgba(0, 255, 102, 0.28);
    border-radius: 999px;
    background: rgba(7, 7, 7, 0.78);
}
.hero-node::before {
    content: '';
    width: 8px;
    height: 8px;
    display: inline-block;
    margin-right: 0.45rem;
    border-radius: 999px;
    background: var(--color-primary);
    box-shadow: 0 0 18px rgba(0, 255, 102, 0.8);
}
.hero-node-gkp {
    left: 13%;
    top: 47%;
}
.hero-node-metro {
    right: 16%;
    top: 35%;
}
.hero-node-tier {
    left: 30%;
    bottom: 18%;
}
.hero-route {
    position: absolute;
    z-index: 1;
    height: 2px;
    transform-origin: left center;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 102, 0.75), transparent);
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.22);
}
.hero-route-one {
    left: 28%;
    top: 50%;
    width: 240px;
    transform: rotate(-18deg);
}
.hero-route-two {
    left: 43%;
    top: 55%;
    width: 160px;
    transform: rotate(54deg);
}
.hero-route-three {
    left: 28%;
    top: 66%;
    width: 180px;
    transform: rotate(-42deg);
}
#india-map-container svg {
    position: relative;
    z-index: 0;
    opacity: 0.34;
    width: 100%;
    height: auto;
    max-height: 520px;
}
#india-map-container .city-node {
    fill: var(--color-primary);
    animation: pulse 2s infinite;
}
#india-map-container .connection-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw-line 5s ease-in-out forwards;
}
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.45; }
    100% { opacity: 1; }
}
@keyframes draw-line {
    to { stroke-dashoffset: 0; }
}
.hero-metric-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1rem;
    min-width: 210px;
    border: 1px solid rgba(0, 255, 102, 0.22);
    border-radius: 16px;
    background: rgba(12, 12, 12, 0.78);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32), 0 0 28px rgba(0, 255, 102, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.hero-metric-card i,
.hero-metric-card svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}
.hero-metric-card strong,
.hero-metric-card span {
    display: block;
}
.hero-metric-card strong {
    color: var(--color-text);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.98rem;
}
.hero-metric-card span {
    color: var(--color-secondary-text);
    font-size: 0.78rem;
}
.hero-metric-card-top {
    top: 14%;
    right: 2%;
}
.hero-metric-card-bottom {
    left: 0;
    bottom: 14%;
}

/* Mobile polish */
@media (max-width: 767px) {
    #navbar nav {
        height: 72px;
    }
    #navbar img {
        height: 28px;
        max-width: 136px;
    }
    #home {
        min-height: auto;
        padding-top: 7rem;
        padding-bottom: 3.5rem;
    }
    #home .grid {
        gap: 2.5rem;
    }
    #home h1 {
        font-size: clamp(2.55rem, 12vw, 3.55rem);
        line-height: 0.98;
        max-width: 10ch;
        margin-inline: auto;
    }
    #home p {
        margin-top: 1.25rem;
        font-size: 1rem;
        line-height: 1.7;
    }
    .hero-actions {
        margin-top: 1.6rem;
    }
    .hero-actions .btn {
        width: 100%;
        min-height: 48px;
    }
    #home .hero-tags {
        margin-top: 1.6rem;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }
    .tag {
        width: 100%;
        justify-content: center;
        min-height: 46px;
        font-size: 0.9rem;
    }
    .hero-map-panel {
        min-height: 360px;
        height: 360px;
        margin-inline: auto;
        max-width: 360px;
        opacity: 0.9;
        border-radius: 22px;
    }
    #india-map-container svg {
        max-height: 330px;
    }
    .hero-metric-card {
        min-width: 170px;
        padding: 0.7rem 0.8rem;
        gap: 0.6rem;
    }
    .hero-metric-card-top {
        top: 1rem;
        right: 0.75rem;
    }
    .hero-metric-card-bottom {
        left: 0.75rem;
        bottom: 1rem;
    }
    .hero-commerce-core {
        inset: 7%;
    }
    .hero-core-icon {
        width: 76px;
        height: 76px;
        border-radius: 22px;
    }
    .hero-core-icon svg {
        width: 34px;
        height: 34px;
    }
    .hero-node {
        font-size: 0.68rem;
        padding: 0.32rem 0.55rem;
    }
    .hero-node-gkp {
        left: 8%;
        top: 44%;
    }
    .hero-node-metro {
        right: 9%;
        top: 31%;
    }
    .hero-node-tier {
        left: 22%;
        bottom: 21%;
    }
    .hero-route-one {
        left: 27%;
        top: 49%;
        width: 145px;
    }
    .hero-route-two {
        left: 44%;
        top: 54%;
        width: 105px;
    }
    .hero-route-three {
        left: 28%;
        top: 65%;
        width: 115px;
    }
    .section-heading {
        font-size: clamp(2rem, 9vw, 2.65rem);
        line-height: 1.05;
    }
    section.py-20,
    section.md\:py-32 {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }
    #story .story-strip {
        margin-top: 2.25rem;
    }
    .story-card p {
        font-size: 1.25rem;
    }
    #story .story-stats {
        margin-top: 3rem;
        gap: 1rem;
    }
    .story-stats > div:nth-child(2) {
        transform: rotate(90deg);
        font-size: 2.2rem;
        line-height: 1;
    }
    .vision-card .p-8,
    .bento-card {
        padding: 1.35rem;
    }
    .card-icon,
    .feature-icon,
    .investor-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 1rem;
    }
    .product-mockup-stage {
        margin-top: 2.5rem;
        padding-bottom: 1rem;
    }
    .product-mockup-stage > img:first-child {
        width: 112%;
        max-width: none;
        margin-left: -6%;
    }
    .product-mockup-stage .phone-mockup {
        position: relative;
        display: block;
        width: min(48vw, 180px);
        right: auto;
        bottom: auto;
        margin: -3.2rem auto 0;
    }
    #product .mt-32 {
        margin-top: 3rem;
    }
    .bento-card {
        min-height: 205px;
    }
    .bento-visual {
        opacity: 1;
        width: 48px;
        height: 48px;
    }
    .bento-visual svg {
        width: 24px;
        height: 24px;
    }
    .timeline {
        max-width: none;
        margin-top: 2.5rem;
        padding-left: 1.35rem;
    }
    .timeline::after {
        left: 0.5rem;
        margin-left: 0;
    }
    .timeline-item,
    .timeline-item:nth-child(even),
    .timeline-item:nth-child(odd) {
        left: 0;
        width: 100%;
        padding: 0 0 1.2rem 1.4rem;
    }
    .timeline-item::after,
    .timeline-item:nth-child(even)::after {
        left: -0.33rem;
        right: auto;
        top: 18px;
    }
    .timeline-content {
        padding: 1rem;
    }
    .founder-img {
        width: 7rem;
        height: 7rem;
    }
    .founder-linkedin {
        opacity: 1;
        transform: none;
    }
    .investor-card p,
    .investor-people-card h3 {
        font-size: 1.45rem;
        line-height: 1.15;
    }
    .investor-person {
        padding: 0.85rem;
    }
    .legal-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .legal-card {
        padding: 1rem;
    }
    .legal-card p,
    .contact-info a,
    .contact-info p {
        overflow-wrap: anywhere;
    }
    #contact .contact-grid {
        margin-top: 2.5rem;
        gap: 2.5rem;
    }
    .contact-info {
        padding: 1.25rem;
        border: 1px solid var(--color-borders);
        border-radius: 18px;
        background: var(--color-cards);
    }
    footer img {
        max-width: 160px;
    }
}

@media (max-width: 420px) {
    .container {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }
    #home h1 {
        font-size: clamp(2.35rem, 12vw, 3rem);
    }
    .btn {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .story-card,
    .investor-people-card {
        border-radius: 14px;
    }
    .investor-person-img {
        width: 58px;
        height: 58px;
    }
}
