@font-face {
    font-family: 'ShohidShafkatSamir';
    src: url('assets/ShohidShafkatSamir/normal.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'ShohidShafkatSamir';
    src: url('assets/ShohidShafkatSamir/italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: block;
}

@font-face {
    font-family: 'LiArshiNagar';
    src: url('LiArshiNagar/normal.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'LiArshiNagar';
    src: url('LiArshiNagar/italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: block;
}

/* =========================================================
   Base tokens + theme system
   Default theme = dark. Apply .theme-light on :root (html).
   ========================================================= */

:root {
    --brand: #f56e00;
    --brand-dark: #d85f00;

    /* Typography */
    --font: "ShohidShafkatSamir", system-ui;
    --lh: 1.55;

    /* Dark surfaces (default) */
    --bg: #0b0b0c;
    --fg: rgba(255, 255, 255, .92);
    --muted: rgba(255, 255, 255, .72);
    --muted-2: rgba(255, 255, 255, .80);
    --muted-3: rgba(255, 255, 255, .78);

    --surface: rgba(255, 255, 255, .04);
    --surface-2: rgba(0, 0, 0, .18);
    --surface-3: rgba(255, 255, 255, .05);

    /* Borders */
    --border: rgba(255, 255, 255, .10);
    --border-2: rgba(255, 255, 255, .12);
    --border-3: rgba(255, 255, 255, .14);

    /* Shadows */
    --shadow: 0 12px 40px rgba(0, 0, 0, .30);
    --shadow-card: 0 12px 34px rgba(0, 0, 0, .22);
    --shadow-inset: 0 16px 40px rgba(0, 0, 0, .28) inset, 0 16px 40px rgba(0, 0, 0, .22);

    /* Radius */
    --radius: 18px;
}

/* Light theme overrides */
:root.theme-light {
    --bg: #eef3f4;
    --fg: #0b111e;
    --muted: #212730;
    --muted-2: #323843;
    --muted-3: #1a212b;

    --surface: #fff;
    --surface-2: #fff;
    --surface-3: rgba(255, 255, 255, .90);

    --border: rgba(0, 0, 0, .10);
    --border-2: rgba(0, 0, 0, .10);
    --border-3: rgba(0, 0, 0, .14);

    --shadow: 0 10px 30px rgba(0, 0, 0, .08);
    --shadow-card: var(--shadow);
    --shadow-inset: 0 12px 24px rgba(0, 0, 0, .08) inset, 0 12px 24px rgba(0, 0, 0, .08);
}

/* =========================================================
   Reset + base elements
   ========================================================= */

* {
    box-sizing: border-box
}

html, body {
    margin: 0;
    padding: 0
}

body {
    font-family: var(--font);
    line-height: var(--lh);
    color: var(--fg);
    background: radial-gradient(1200px 600px at 20% -10%, rgba(245, 110, 0, .25), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(245, 110, 0, .18), transparent 55%),
    var(--bg);
}

:root.theme-light body {
    background: radial-gradient(1200px 600px at 20% -10%, rgba(245, 110, 0, .15), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(245, 110, 0, .10), transparent 55%),
    var(--bg);

}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

/* Accessibility */
.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden
}

.skip-link:focus {
    left: 20px;
    top: 20px;
    width: auto;
    height: auto;
    z-index: 9999;
    padding: 10px 12px;
    border-radius: 10px;
    background: #000;
    border: 1px solid var(--border)
}

/* Layout */
.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto
}

.section {
    padding: 30px 0
}

.grid {
    display: grid;
    grid-template-columns:repeat(12, 1fr);
    gap: 14px
}

/* =========================================================
   Navigation
   ========================================================= */

.company-name {
    font-family: "LiArshiNagar", system-ui;
    color: var(--brand-dark);
}

.nav {
    --font: "LiArshiNagar", system-ui;
    font-family: "LiArshiNagar", system-ui;
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    background: rgba(11, 11, 12, .58);
    border-bottom: 1px solid var(--border);
}

:root.theme-light .nav {
    background: rgba(255, 255, 255, .72)
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 14px
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: .2px;
    color: var(--brand-dark);
}

.brand-badge {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(245, 110, 0, .22)
}

.brand-badge svg {
    width: 22px;
    height: 22px
}

.nav-links {
    display: flex;
    gap: 10px;
    align-items: center
}

.nav-links a {
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid transparent;
    color: rgba(255, 255, 255, .82)
}

:root.theme-light .nav-links a {
    color: var(--muted)
}

.nav-links a:hover {
    border-color: var(--border);
    background: rgba(255, 255, 255, .04)
}

:root.theme-light .nav-links a:hover {
    background: rgba(0, 0, 0, .04)
}

.nav-links a[aria-current="page"] {
    border-color: rgba(245, 110, 0, .45);
    background: rgba(245, 110, 0, .14)
}

:root.theme-light .nav-links a[aria-current="page"] {
    border-color: rgba(245, 110, 0, .35);
    background: rgba(245, 110, 0, .12)
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 14px
}

/* =========================================================
   Buttons + controls
   ========================================================= */

.btn,
.theme-toggle,
.icon-btn,
.play-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 14px;
    border: 1px solid var(--border-2);
    background: var(--surface-3);
    color: var(--fg);
    cursor: pointer;
    transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease
}

.btn {
    padding: 10px 14px
}

.btn:hover,
.theme-toggle:hover,
.icon-btn:hover,
.play-badge:hover {
    transform: translateY(-1px);
}

:root.theme-light .btn:hover,
:root.theme-light .theme-toggle:hover,
:root.theme-light .icon-btn:hover,
.btn:focus-visible,
.theme-toggle:focus-visible {
    outline: none;
    border-color: rgba(245, 110, 0, .65);
    box-shadow: 0 0 0 3px rgba(245, 110, 0, .24)
}

/* Primary button: keep readable in both themes */
.btn-primary {
    border-color: rgba(245, 110, 0, .55);
    background: linear-gradient(135deg, rgba(245, 110, 0, .95), rgba(245, 110, 0, .45));
    box-shadow: 0 16px 40px rgba(245, 110, 0, .22);
    color: #fff;
}

.btn-primary:hover {
    border-color: rgba(245, 110, 0, .75);
    background: linear-gradient(135deg, rgba(245, 110, 0, 1), rgba(245, 110, 0, .55))
}

.theme-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 12px
}

.theme-toggle svg {
    width: 18px;
    height: 18px
}

.theme-toggle-light {
    display: inline-flex
}

:root.theme-light .theme-toggle-dark {
    display: inline-flex
}

:root.theme-light .theme-toggle-light {
    display: none
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    padding: 10px
}

.icon-btn svg {
    width: 20px;
    height: 20px
}

.play-badge {
    display: flex;
    padding: 0;
    border: 0;
    background: unset;
    cursor: pointer
}

.play-badge img {
    max-height: 80px
}

/* Fix inline SVGs with white fills for light theme */
:root.theme-light svg path[fill="white"],
:root.theme-light svg rect[fill="white"],
:root.theme-light svg circle[fill="white"] {
    fill: #0f172a !important
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
    padding: 44px 0 18px
}

.hero-grid {
    display: grid;
    grid-template-columns:1.2fr .8fr;
    gap: 22px;
    align-items: stretch
}

.hero-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow)
}

.hero-card:before {
    content: "";
    position: absolute;
    inset: -2px;
    pointer-events: none;
    background: radial-gradient(800px 200px at 20% 0%, rgba(245, 110, 0, .30), transparent 60%)
}

.hero h1 {
    margin: 0 0 10px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.12;
    position: relative
}

.hero p {
    margin: 0 0 18px;
    max-width: 62ch;
    color: var(--muted-2);
    position: relative;
    font-size: 18px;
}

:root.theme-light .hero p {
    color: var(--muted)
}

.hero-bullets {
    display: grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
    position: relative
}

.pill {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 14px;
    background: var(--surface-2);
    border: 1px solid var(--border);
}

:root.theme-light .pill {
    background: #fff
}

.pill svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    color: var(--brand);
    margin-top: 1px
}

.pill span {
    font-size: 16px;
    color: rgba(255, 255, 255, .84)
}

:root.theme-light .pill span {
    color: var(--fg)
}

.hero-side {
    display: grid;
    gap: 14px;
    align-content: start;
    grid-template-rows:repeat(3, 1fr)
}

.stat {
    padding: 18px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--surface)
}

.stat .label, .stat .hint {
    color: var(--muted);
    font-size: 16px
}

.stat .label {
    font-weight: bold;
    color: var(--brand);
}

.stat .value {
    font-size: 24px;
    font-weight: 800;
    margin-top: 2px
}

:root.theme-light .stat .value {
    color: var(--fg)
}

/* =========================================================
   Sections + cards
   ========================================================= */

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px
}

.section-head h2 {
    margin: 0;
    font-size: 22px;
}

.section-head p {
    margin: 0;
    max-width: 70ch;
    font-size: 16px;
    color: var(--brand)
}

.card {
    padding: 18px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow-card)
}

/* Screenshots */
.shot {
    grid-column: span 3;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden
}

.shot-img {
    height: 240px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: radial-gradient(600px 300px at 20% -10%, rgba(245, 110, 0, .22), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
    box-shadow: var(--shadow-inset)
}

:root.theme-light .shot-img {
    background: radial-gradient(600px 300px at 20% -10%, rgba(245, 110, 0, .12), transparent 60%),
    linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .01))
}

.shot-caption {
    font-size: 14px;
    color: var(--muted)
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 14px
}

.testimonial {
    position: relative;
    margin: 0
}

.testimonial blockquote {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .86)
}

:root.theme-light .testimonial blockquote {
    color: var(--fg)
}

.testimonial figcaption {
    margin-top: 10px;
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: var(--muted)
}

.testimonial .name {
    font-weight: 700;
    color: rgba(255, 255, 255, .90)
}

:root.theme-light .testimonial .name {
    color: var(--fg);
    font-size: 15px
}

.testimonial .role {
    color: var(--muted);
    font-size: 14px
}

/* Jobs */
.jobs {
    grid-column: span 12
}

.job-list {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 14px
}

.job {
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--surface-2)
}

:root.theme-light .job {
    background: #fff
}

.job .title {
    margin: 0 0 6px;
    font-weight: 800
}

.job .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--muted)
}

.tag {
    display: inline-flex;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 14px;
    background: rgba(245, 110, 0, .14);
    border: 1px solid rgba(245, 110, 0, .28);
    color: rgba(255, 255, 255, .88);
    line-height: 1;
}

:root.theme-light .tag {
    color: var(--fg);
    background: rgba(245, 110, 0, .12);
    border-color: rgba(245, 110, 0, .24)
}

.job .desc {
    margin: 0;
    font-size: 16px;
    color: var(--muted-3)
}

:root.theme-light .job .desc {
    color: var(--muted-3)
}

/* About / Get app columns */
.about {
    grid-column: span 7
}

.getapp {
    grid-column: span 5
}

/* Feature list */
.feature-list {
    display: grid;
    gap: 10px;
    margin-top: 12px
}

.feature {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--surface-2)
}

:root.theme-light .feature {
    background: #fff
}

.feature svg {
    width: 18px;
    height: 18px;
    color: var(--brand);
    margin-top: 2px;
    flex: 0 0 auto
}

.feature div {
    font-size: 15px;
    color: var(--muted-2)
}

:root.theme-light .feature div {
    color: var(--muted)
}

.feature strong {
    color: var(--fg)
}

/* Trust */
.trust {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px
}

.trust-item {
    display: grid;
    gap: 4px;
    align-content: start;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--surface-2)
}

:root.theme-light .trust-item {
    background: #fff
}

.trust-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--brand);
}

.trust-label {
    font-size: 16px;
    color: var(--muted)
}

/* FAQ */
.faq {
    padding: 16px
}

.faq-list {
    display: grid;
    gap: 10px
}

.faq-list details {
    padding: 12px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--surface-2)
}

:root.theme-light .faq-list details {
    background: #fff
}

.faq-list summary {
    cursor: pointer;
    font-weight: 500;
    font-size: 20px
}

.faq-list p {
    margin: 10px 0 0;
    color: var(--muted-3)
}

/* =========================================================
   Contact + forms
   ========================================================= */

.contact.contact-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 22px;
    box-shadow: none;
}

.contact-info {
    border-right: 1px solid var(--border);
    padding-right: 20px
}

.info-list {
    display: grid;
    gap: 10px;
    margin-top: 10px
}

.info-item {
    display: grid;
    grid-template-columns:120px 1fr;
    gap: 8px;
    align-items: start
}

.info-label {
    font-size: 16px;
    color: var(--muted)
}

.info-value {
    color: var(--fg)
}

.info-value a:hover {
    text-decoration: underline
}

.form {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 12px;
    margin-top: 10px
}

.field {
    display: grid;
    gap: 6px
}

label {
    font-size: 18px;
    color: var(--muted-3)
}

:root.theme-light label {
    color: var(--fg)
}

input, textarea {
    width: 100%;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid var(--border-3);
    background: var(--surface-2);
    color: var(--fg);
    outline: none
}

:root.theme-light input,
:root.theme-light textarea {
    background: #fff;
    color: var(--fg)
}

input:focus, textarea:focus {
    border-color: rgba(245, 110, 0, .55);
    box-shadow: 0 0 0 3px rgba(245, 110, 0, .18)
}

textarea {
    min-height: 120px;
    resize: vertical;
    grid-column: 1 / -1
}

.note {
    margin-top: 10px;
    font-size: 13px;
    color: var(--muted)
}

/* Utilities */
.muted {
    color: var(--muted)
}

/* =========================================================
   Footer + pages
   ========================================================= */

footer {
    background: var(--surface);
    font-family: "LiArshiNagar", system-ui
}

.footer-inner {
    display: grid;
    grid-template-columns:1.2fr 1fr auto;
    gap: 24px;
    align-items: start;
    padding: 24px 0
}

.footer-brand small {
    display: block;
    margin-top: 6px;
    color: var(--muted)
}

.footer-brand .muted {
    margin: 6px 0 10px
}

.footer-links {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px
}

.link-group {
    display: grid;
    gap: 8px
}

.group-title {
    margin-bottom: 4px;
    font-weight: 700;
    color: var(--brand);
}

:root.theme-light .group-title {
    color: var(--fg)
}

.footer-links a {
    color: rgba(255, 255, 255, .82)
}

:root.theme-light .footer-links a {
    color: var(--muted)
}

.footer-links a:hover {
    color: #fff
}

:root.theme-light .footer-links a:hover {
    color: var(--fg)
}

.social {
    display: inline-flex;
    gap: 10px;
    justify-content: center;
}

.social .icon-btn {
    padding: 0
}

/* Docs page */
.page {
    padding: 28px 0 40px
}

.page .doc {
    padding: 22px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow)
}

.page h1 {
    margin: 0 0 8px;
    font-size: 30px
}

.page h2 {
    margin: 18px 0 8px;
    font-size: 18px
}

.page p, .page li {
    color: var(--muted-3)
}

.page .muted {
    font-size: 13px;
    color: var(--muted)
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 920px) {
    .hero {
        padding: 12px 0 18px
    }

    .container {
        width: min(1120px, calc(100% - 22px));
    }

    .page {
        padding-top: 12px;
    }

    .page .doc {
        padding: 12px;
    }

    .hero-card {
        padding: 14px;
    }

    .hero-grid {
        grid-template-columns:1fr
    }

    .about, .getapp {
        grid-column: span 12
    }

    .job-list {
        grid-template-columns:1fr
    }

    .form {
        grid-template-columns:1fr
    }

    .testimonial-grid {
        grid-template-columns:1fr
    }

    .shot {
        grid-column: span 6
    }

    .shot-img {
        height: 220px
    }

    .trust {
        grid-template-columns:1fr 1fr
    }
}

@media (max-width: 800px) {
    .pill {
        padding: 6px;
        gap: 6px;
    }

    .job {
        padding: 12px;
    }

    .stat {
        padding: 14px;
    }

    .about {
        padding: 0 12px 12px;
    }

    .faq {
        padding: 12px;
    }

    .feature {
        padding: 8px;
        gap: 8px;
    }

    .getapp {
        padding: 12px;
    }

    .shot {
        padding: 12px;
    }

    .contact.contact-grid {
        grid-template-columns:1fr;
        padding: 12px;
    }

    .info-item {
        grid-template-columns: none;
    }

    .info-label {
        font-weight: bold;
    }

    .footer-brand {
        order: 3;
    }

    .contact-info {
        border-right: 0;
        padding-right: 0;
        border-bottom: 1px solid var(--border);
        padding-bottom: 18px
    }

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

@media (max-width: 720px) {
    .nav-links {
        display: none;
        position: absolute;
        left: 20px;
        right: 20px;
        top: 66px;
        padding: 12px;
        border-radius: 18px;
        border: 1px solid var(--border-2);
        background: rgba(11, 11, 12, .92);
        flex-direction: column;
        align-items: stretch
    }

    :root.theme-light .nav-links {
        background: rgba(255, 255, 255, .96)
    }

    .nav-links.open {
        display: flex
    }

    .mobile-toggle {
        display: inline-flex
    }

    .shot {
        grid-column: span 12
    }

    .shot-img {
        height: 200px
    }

    .trust {
        grid-template-columns:1fr
    }

    .faq-list details {
        padding: 12px
    }
}