﻿:root {
    --hp-navy:        #0E1B35;
    --hp-navy-hover:  #162342;
    --hp-saffron:     #E89020;
    --hp-cream:       #FAF6EF;
    --hp-cream2:      #F2EDE4;
    --hp-cream3:      #E8E0D4;
    --hp-fg:          #0E1B35;
    --hp-muted:       #6B5E50;
    --hp-muted-light: #9A8E80;
    --hp-white:       #ffffff;
    --hp-success:     #16a34a;
    --hp-radius:      12px;

    /* legacy aliases kept for any stray references */
    --hp-primary:      var(--hp-navy);
    --hp-primary-text: #ffffff;
    --hp-border:       var(--hp-cream3);
    --hp-bg:           var(--hp-cream);
    --hp-tertiary:     var(--hp-navy);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Inter', 'Noto Sans', system-ui, -apple-system, sans-serif;
    color: var(--hp-fg);
    background: var(--hp-cream);
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', 'Noto Sans', sans-serif;
}

a { color: inherit; text-decoration: none; }

/* ── Container ── */
.hp-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Header ── */
.hp-header {
    background: var(--hp-navy);
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 12px rgba(14,27,53,.18);
}

.hp-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px 60px at 20% 50%, rgba(232,144,32,.10), transparent 70%);
    pointer-events: none;
}

.hp-header-inner {
    display: flex;
    align-items: center;
    height: 64px;
    position: relative;
    z-index: 1;
}

.hp-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .06em;
}

.hp-brand img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(232,144,32,.3);
}

/* ── Hero ── */
.hp-hero {
    background:
        radial-gradient(900px 500px at 15% 40%, rgba(232,144,32,.07), transparent 65%),
        radial-gradient(700px 400px at 85% 20%, rgba(14,27,53,.04), transparent 65%),
        var(--hp-cream);
    color: var(--hp-fg);
    padding: 32px 0 48px;
    position: relative;
    overflow: hidden;
}

/* Fabric texture overlay */
.hp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg,  rgba(232,144,32,.025) 0px, rgba(232,144,32,.025) 1px, transparent 1px, transparent 18px),
        repeating-linear-gradient(-45deg, rgba(14,27,53,.015)   0px, rgba(14,27,53,.015)   1px, transparent 1px, transparent 18px);
    pointer-events: none;
}

.hp-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 56px 0 40px;
    position: relative;
    z-index: 1;
}

.hp-headline {
    font-family: 'Plus Jakarta Sans', 'Noto Sans', sans-serif;
    font-size: clamp(1.9rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin: 0 0 18px;
    color: var(--hp-fg);
}

.hp-headline strong { color: var(--hp-saffron); }

.hp-subhead {
    color: var(--hp-muted);
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.65;
}

.hp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* ── Buttons ── */
.hp-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 24px;
    border-radius: var(--hp-radius);
    font-family: 'Plus Jakarta Sans', 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: -.01em;
    cursor: pointer;
    transition: background .18s ease, transform .18s ease, opacity .18s ease;
    text-decoration: none;
    border: none;
}

.hp-btn:hover { transform: translateY(-1px); }
.hp-btn:active { transform: translateY(0); }

.hp-btn-lg { padding: 12px 30px; font-size: 1rem; }

.hp-btn-primary {
    background: var(--hp-navy);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(14,27,53,.22);
}
.hp-btn-primary:hover { background: var(--hp-navy-hover); }

.hp-btn-outline {
    background: transparent;
    color: var(--hp-navy);
    border: 1.5px solid var(--hp-cream3);
}
.hp-btn-outline:hover { background: rgba(14,27,53,.05); border-color: rgba(14,27,53,.25); }

.hp-btn .material-symbols-rounded { font-size: 18px; }
.hp-btn-lg .material-symbols-rounded { font-size: 20px; }

/* ── Explore ── */
.hp-explore {
    background: var(--hp-white);
    padding: 52px 0;
    border-top: 1px solid var(--hp-cream2);
    border-bottom: 1px solid var(--hp-cream2);
}

.hp-explore-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.hp-explore-heading {
    font-family: 'Plus Jakarta Sans', 'Noto Sans', sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: -.02em;
    margin: 0 0 8px;
    color: var(--hp-fg);
}

.hp-explore-sub {
    color: var(--hp-muted);
    margin: 0 0 22px;
    font-size: 0.9rem;
}

.hp-explore-form {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--hp-white);
    border: 1.5px solid var(--hp-cream3);
    border-radius: var(--hp-radius);
    padding: 5px;
    box-shadow: 0 2px 12px rgba(14,27,53,.07);
    transition: border-color .18s ease, box-shadow .18s ease;
}

.hp-explore-form:focus-within {
    border-color: rgba(14,27,53,.3);
    box-shadow: 0 4px 20px rgba(14,27,53,.1);
}

.hp-explore-icon {
    font-size: 20px;
    color: var(--hp-muted-light);
    padding-left: 8px;
    flex-shrink: 0;
}

.hp-explore-input {
    flex: 1;
    min-height: 44px;
    padding: 8px;
    border: none;
    font-size: .95rem;
    outline: none;
    background: transparent;
    font-family: inherit;
    color: var(--hp-fg);
}

.hp-explore-input::placeholder { color: var(--hp-muted-light); }

.hp-explore-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--hp-navy);
    color: #ffffff;
    border: none;
    border-radius: 9px;
    font-family: 'Plus Jakarta Sans', 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: background .18s ease;
}

.hp-explore-btn .material-symbols-rounded { font-size: 16px; }
.hp-explore-btn:hover { background: var(--hp-navy-hover); }
.hp-explore-btn:disabled { opacity: 0.65; cursor: not-allowed; }

@keyframes tu-spin { to { transform: rotate(360deg); } }
.hp-explore-btn .tu-spinner {
    display: inline-block;
    width: 14px; height: 14px;
    border: 2px solid rgba(255,255,255,.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: tu-spin 0.7s linear infinite;
    vertical-align: middle;
}

/* ── Features ── */
.hp-features {
    background: var(--hp-cream);
    padding: 48px 0 56px;
    position: relative;
}

.hp-features::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg,  rgba(232,144,32,.02) 0px, rgba(232,144,32,.02) 1px, transparent 1px, transparent 20px),
        repeating-linear-gradient(-45deg, rgba(14,27,53,.012)  0px, rgba(14,27,53,.012)  1px, transparent 1px, transparent 20px);
    pointer-events: none;
}

.hp-tagline {
    text-align: center;
    font-family: 'Plus Jakarta Sans', 'Noto Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--hp-navy);
    margin: 0 0 40px;
    position: relative;
    z-index: 1;
}

.hp-tagline-sep {
    color: var(--hp-saffron);
    margin: 0 14px;
    font-weight: 400;
    font-size: 1.1rem;
}

.hp-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    position: relative;
    z-index: 1;
}

.hp-feature-card {
    background: var(--hp-white);
    border: 1.5px solid var(--hp-cream3);
    border-radius: var(--hp-radius);
    padding: 22px 20px;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.hp-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(14,27,53,.09);
    border-color: rgba(232,144,32,.4);
}

.hp-feature-card .material-symbols-rounded {
    font-size: 32px;
    color: var(--hp-saffron);
    display: block;
    margin-bottom: 12px;
}

.hp-feature-card h3 {
    font-family: 'Plus Jakarta Sans', 'Noto Sans', sans-serif;
    margin: 0 0 7px;
    font-size: .97rem;
    font-weight: 700;
    color: var(--hp-fg);
    letter-spacing: -.01em;
}

.hp-feature-card p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--hp-muted);
    line-height: 1.55;
}

/* ── CTA ── */
.hp-cta {
    background: var(--hp-navy);
    padding: 72px 24px 88px;
    position: relative;
    overflow: hidden;
}

.hp-cta::before {
    content: '';
    position: absolute;
    top: -60px; left: 50%; transform: translateX(-50%);
    width: 600px; height: 200px;
    background: radial-gradient(ellipse, rgba(232,144,32,.18), transparent 70%);
    pointer-events: none;
}

.hp-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg,  rgba(255,255,255,.02) 0px, rgba(255,255,255,.02) 1px, transparent 1px, transparent 18px),
        repeating-linear-gradient(-45deg, rgba(255,255,255,.015) 0px, rgba(255,255,255,.015) 1px, transparent 1px, transparent 18px);
    pointer-events: none;
}

.hp-cta-card {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hp-cta-card h2 {
    font-family: 'Plus Jakarta Sans', 'Noto Sans', sans-serif;
    margin: 0 0 14px;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 800;
    letter-spacing: -.02em;
    color: #ffffff;
}

.hp-cta-card > p {
    margin: 0 0 28px;
    color: rgba(255,255,255,.7);
    font-size: .97rem;
}

.hp-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 14px;
}

/* Amber primary button inside CTA (on dark bg) */
.hp-cta .hp-btn-primary {
    background: var(--hp-saffron);
    color: var(--hp-navy);
    box-shadow: 0 4px 20px rgba(232,144,32,.35);
}
.hp-cta .hp-btn-primary:hover { background: #d07c18; }

/* Outlined button on dark bg */
.hp-cta .hp-btn-outline {
    color: rgba(255,255,255,.85);
    border-color: rgba(255,255,255,.25);
    background: transparent;
}
.hp-cta .hp-btn-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); }

/* ── Footer ── */
.hp-footer {
    background: var(--hp-navy);
    color: #ffffff;
    border-top: 1px solid rgba(232,144,32,.15);
}

.hp-footer hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,.1);
    margin: 0;
}

.hp-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 28px 0 16px;
}

.hp-footer-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-family: 'Plus Jakarta Sans', 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: .04em;
    color: rgba(255,255,255,.9);
}

.hp-footer-logo-row img {
    width: 36px; height: 36px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(232,144,32,.3);
}

.hp-footer-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 48px;
    margin-bottom: 7px;
    font-size: 0.85rem;
    color: rgba(255,255,255,.7);
}

.hp-footer-contact a { color: rgba(255,255,255,.8); }
.hp-footer-contact a:hover { color: var(--hp-saffron); }
.hp-footer-contact .material-symbols-rounded { font-size: 16px; color: var(--hp-muted-light); }

.hp-footer-social {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 4px;
    padding-top: 10px;
}

.hp-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 8px;
    color: rgba(255,255,255,.7);
    border: 1px solid rgba(255,255,255,.1);
    transition: background .15s, color .15s, border-color .15s;
}

.hp-footer-social a:hover {
    background: rgba(232,144,32,.15);
    color: var(--hp-saffron);
    border-color: rgba(232,144,32,.3);
}

.hp-footer-meta {
    padding: 8px 0 24px;
    font-size: 0.75rem;
    color: rgba(255,255,255,.45);
}

.hp-footer-meta p { margin: 2px 0; }

/* ── Responsive ── */
@media (max-width: 960px) {
    .hp-hero { padding-top: 8px; }
    .hp-feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .hp-container { padding: 0 16px; }
    .hp-hero-content { padding: 36px 0 28px; }
.hp-feature-grid { grid-template-columns: 1fr; }
    .hp-footer-grid { grid-template-columns: 1fr; }
    .hp-footer-social { justify-content: flex-start; }
    .hp-header-inner { height: 56px; }
}
