@font-face {
    font-family: Alexandria;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/alexandria-400.ttf') format('truetype')
}

@font-face {
    font-family: Alexandria;
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/alexandria-500.ttf') format('truetype')
}

@font-face {
    font-family: Alexandria;
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/alexandria-600.ttf') format('truetype')
}

@font-face {
    font-family: Alexandria;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/alexandria-700.ttf') format('truetype')
}

@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/nunito-sans-400.ttf') format('truetype')
}

@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/nunito-sans-600.ttf') format('truetype')
}

@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/nunito-sans-700.ttf') format('truetype')
}

:root {
    --forest: #213f36;
    --forest-dark: #17342d;
    --sage: #5f7d70;
    --sage-light: #94aa9e;
    --cream: #fbf8f3;
    --cream-2: #f5f1ea;
    --sand: #ece4d8;
    --mint: #34ae5c;
    --ink: #1e2724;
    --muted: #65736d;
    --line: rgba(33, 63, 54, .13);
    --shadow: 0 22px 60px rgba(28, 54, 47, .12);
    --r-xl: 32px;
    --r-lg: 24px;
    --r-md: 18px
}

* {
    box-sizing: border-box
}

:focus-visible {
    outline: 3px solid var(--mint);
    outline-offset: 3px
}

.ih-body,
.ih-admin {
    font-family: Alexandria, "Nunito Sans", sans-serif;
    color: var(--ink)
}

.ih-body {
    margin: 0;
    background: var(--cream);
    min-height: 100vh
}

.ih-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px clamp(20px, 5vw, 72px);
    background: rgba(251, 248, 243, .94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px)
}

.ih-brand {
    font: 700 22px "Nunito Sans";
    color: var(--forest);
    text-decoration: none
}

.ih-brand span {
    display: block;
    font: 500 11px Alexandria
}

.ih-header nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.ih-header nav a,
.ih-section-head a,
.ih-auth>a {
    color: var(--forest);
    text-decoration: none;
    font-size: 14px
}

.ih-header nav a,
.ih-section-head a,
.ih-card-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center
}

.ih-shell {
    max-width: 1180px;
    margin: auto;
    padding: 48px 24px 90px
}

.ih-hero {
    min-height: 520px;
    padding: clamp(35px, 7vw, 80px);
    background: var(--forest-dark);
    color: white;
    border-radius: var(--r-xl);
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    align-items: center;
    gap: 50px;
    box-shadow: var(--shadow);
    margin-bottom: 72px
}

.ih-hero h1,
.ih-page-head h1 {
    font-size: clamp(34px, 6vw, 68px);
    line-height: 1.15;
    margin: 15px 0
}

.ih-hero p {
    font-size: 18px;
    line-height: 2;
    color: #e8f0ec;
    max-width: 700px
}

.ih-kicker {
    color: var(--mint);
    font-weight: 700
}

.ih-hero-card {
    background: #fff;
    color: var(--forest);
    border-radius: var(--r-lg);
    padding: 34px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.ih-hero-card strong {
    font-size: 64px
}

.ih-hero-card small {
    color: var(--muted);
    line-height: 1.8
}

.ih-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px
}

.ih-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 14px;
    background: var(--mint);
    color: white !important;
    padding: 13px 20px;
    font: 600 14px Alexandria;
    text-decoration: none;
    cursor: pointer
}

.ih-btn-light {
    background: white;
    color: var(--forest) !important
}

.ih-section-head,
.ih-page-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 15px;
    margin: 30px 0
}

.ih-page-head {
    display: block
}

.ih-page-head h1 {
    font-size: clamp(30px, 4vw, 52px);
    color: var(--forest)
}

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

.ih-card,
.ih-panel,
.ih-auth,
.ih-metric {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 24px;
    box-shadow: 0 10px 28px rgba(28, 54, 47, .06)
}

.ih-card {
    display: flex;
    flex-direction: column;
    gap: 9px
}

.ih-card h3 {
    font-size: 21px;
    margin: 7px 0
}

.ih-card p {
    margin: 0;
    line-height: 1.7
}

.ih-card-link {
    color: var(--forest);
    font-weight: 700;
    text-decoration: none;
    margin-top: auto;
    padding-top: 14px
}

.ih-avatar {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: var(--cream-2);
    color: var(--forest);
    display: grid;
    place-items: center;
    font-size: 23px;
    font-weight: 700
}

.ih-avatar-xl {
    width: 100px;
    height: 100px;
    border-radius: 30px;
    font-size: 42px
}

.ih-badge {
    display: inline-flex;
    width: max-content;
    padding: 6px 10px;
    border-radius: 99px;
    background: #e7f7ec;
    color: #20783d;
    font-size: 12px
}

.ih-muted {
    color: var(--muted)
}

.ih-empty,
.ih-notice,
.ih-error {
    padding: 18px;
    border-radius: var(--r-md);
    background: var(--cream-2);
    margin: 14px 0
}

.ih-error {
    background: #fff0ed;
    color: #982d21
}

.ih-notice {
    border-inline-start: 4px solid var(--mint)
}

.ih-filter {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 14px;
    align-items: end;
    background: white;
    padding: 20px;
    border-radius: var(--r-lg);
    border: 1px solid var(--line)
}

label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 600;
    font-size: 13px
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px;
    background: white;
    color: var(--ink);
    font: 400 14px Alexandria
}

textarea {
    min-height: 105px;
    resize: vertical
}

.ih-help {
    display: inline-grid;
    place-items: center;
    width: 21px;
    height: 21px;
    border: 1px solid var(--sage-light);
    border-radius: 50%;
    background: white;
    color: var(--forest);
    font-weight: 700;
    cursor: pointer;
    margin-inline-start: 5px
}

.ih-tip {
    position: fixed;
    z-index: 99;
    max-width: 340px;
    padding: 14px 17px;
    background: var(--forest-dark);
    color: white;
    border-radius: 13px;
    box-shadow: var(--shadow);
    font-size: 13px;
    line-height: 1.8
}

.ih-profile {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
    margin-bottom: 30px
}

.ih-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0
}

.ih-list {
    list-style: none;
    padding: 0
}

.ih-list li {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    padding: 13px 0
}

.ih-auth {
    max-width: 580px;
    margin: 45px auto
}

.ih-auth form,
.ih-panel form {
    display: grid;
    gap: 17px;
    margin: 20px 0
}

.ih-table {
    overflow: auto
}

table {
    width: 100%;
    border-collapse: collapse
}

th,
td {
    text-align: start;
    padding: 13px;
    border-bottom: 1px solid var(--line);
    vertical-align: middle
}

th {
    color: var(--forest);
    white-space: nowrap
}

.ih-footer {
    text-align: center;
    padding: 30px;
    color: var(--muted)
}

.ih-footer a {
    color: var(--forest)
}

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

.ih-metric {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ih-metric strong {
    font-size: 38px;
    color: var(--forest)
}

.ih-tabs {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    margin: 15px 0
}

.ih-tabs a {
    background: white;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 14px;
    color: var(--forest);
    text-decoration: none
}

.ih-home-section {
    margin: 76px 0
}

.ih-section-head h2 {
    margin: 0 0 8px;
    color: var(--forest);
    font-size: clamp(25px, 3vw, 38px)
}

.ih-section-head p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8
}

.ih-hero-rich {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 15% 15%, #315d4e, transparent 38%), var(--forest-dark)
}

.ih-hero-search {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 10px;
    padding: 10px;
    background: white;
    border-radius: 18px;
    max-width: 720px
}

.ih-hero-search select {
    border: 0;
    background: var(--cream)
}

.ih-trust-inline,
.ih-card-meta,
.ih-price-row,
.ih-results-head {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap
}

.ih-trust-inline {
    margin-top: 20px;
    color: #d7e9df;
    font-size: 13px
}

.ih-hero-visual {
    min-height: 280px;
    display: grid;
    place-items: center;
    align-content: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 120px 120px 36px 36px;
    background: rgba(255,255,255,.08)
}

.ih-hero-visual strong {
    font-size: 54px
}

.ih-pulse-orb {
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--mint);
    font-size: 40px;
    margin-bottom: 16px;
    box-shadow: 0 0 0 18px rgba(52,174,92,.14)
}

.ih-trust-grid,
.ih-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.ih-trust-grid article,
.ih-steps article,
.ih-ref-chip {
    padding: 22px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--r-md)
}

.ih-trust-grid article {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ih-trust-grid span,
.ih-steps p {
    color: var(--muted);
    line-height: 1.8
}

.ih-steps b {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #e7f7ec;
    color: #20783d
}

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

.ih-ref-chip {
    display: flex;
    justify-content: space-between;
    color: var(--forest);
    text-decoration: none;
    font-weight: 600;
    transition: transform .2s, box-shadow .2s
}

.ih-ref-chip:hover,
.ih-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow)
}

.ih-band,
.ih-final-cta {
    margin: 76px 0;
    padding: clamp(30px, 5vw, 58px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    border-radius: var(--r-xl);
    background: var(--forest);
    color: white
}

.ih-band-provider {
    background: var(--sand);
    color: var(--forest)
}

.ih-final-cta {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #e7f7ec, var(--sand));
    color: var(--forest)
}

.ih-faq details {
    padding: 20px 0;
    border-bottom: 1px solid var(--line)
}

.ih-faq summary {
    font-weight: 700;
    cursor: pointer
}

.ih-filter-rich {
    grid-template-columns: repeat(5, minmax(130px, 1fr)) auto
}

.ih-results-head {
    justify-content: space-between;
    margin: 25px 0;
    color: var(--muted)
}

.ih-card-top {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px
}

.ih-card-meta {
    color: var(--sage);
    font-size: 12px
}

.ih-price-row {
    justify-content: space-between;
    margin-top: 6px
}

.ih-price-row em {
    color: #a74c22;
    background: #fff1e9;
    border-radius: 99px;
    padding: 5px 9px;
    font-style: normal;
    font-size: 11px
}

.avatar-1 { background: #dcefe7 }
.avatar-2 { background: #f0e3d0 }
.avatar-3 { background: #e2e7f4 }
.avatar-4 { background: #f3dfe2 }
.avatar-5 { background: #dfeeea }
.avatar-6 { background: #efe9d7 }
.avatar-7 { background: #e4def0 }
.avatar-8 { background: #dce8ee }

.ih-profile-rich {
    grid-template-columns: auto 1fr minmax(230px, .45fr);
    padding: 30px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--r-xl)
}

.ih-profile-main .ih-lead {
    color: var(--sage);
    font-size: 17px
}

.ih-book-card {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 13px;
    border-radius: var(--r-lg);
    background: var(--cream-2)
}

.ih-book-card strong {
    font-size: 24px;
    color: var(--forest)
}

.ih-profile-tabs {
    position: sticky;
    top: 82px;
    z-index: 5;
    display: flex;
    gap: 8px;
    padding: 9px;
    margin: 20px 0;
    background: rgba(251,248,243,.96);
    border: 1px solid var(--line);
    border-radius: 16px
}

.ih-profile-tabs a {
    padding: 10px 14px;
    color: var(--forest);
    text-decoration: none
}

blockquote {
    margin: 12px 0;
    padding: 17px;
    background: var(--cream-2);
    border-radius: var(--r-md)
}

.ih-mobile-book {
    display: none
}

.ih-demo-batch {
    padding: 18px 0;
    border-bottom: 1px solid var(--line)
}

@media(max-width:900px) {
    .ih-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .ih-hero {
        grid-template-columns: 1fr;
        min-height: auto
    }

    .ih-filter {
        grid-template-columns: 1fr 1fr
    }

    .ih-chip-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .ih-profile-rich {
        grid-template-columns: auto 1fr
    }

    .ih-book-card {
        grid-column: 1 / -1
    }

    .ih-metrics {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:620px) {
    .ih-header {
        align-items: flex-start;
        gap: 14px;
        flex-wrap: wrap;
        padding: 14px
    }

    .ih-header nav {
        gap: 6px 12px;
        width: 100%
    }

    .ih-header nav a {
        font-size: 11px
    }

    .ih-shell {
        padding: 25px 14px 60px
    }

    .ih-hero {
        padding: 30px 22px;
        border-radius: 24px
    }

    .ih-grid,
    .ih-two,
    .ih-filter,
    .ih-profile,
    .ih-trust-grid,
    .ih-steps,
    .ih-hero-search {
        grid-template-columns: 1fr
    }

    .ih-chip-grid {
        grid-template-columns: 1fr 1fr
    }

    .ih-band {
        align-items: stretch;
        flex-direction: column
    }

    .ih-profile-rich {
        text-align: center
    }

    .ih-profile-rich .ih-avatar {
        margin: auto
    }

    .ih-profile-rich .ih-card-meta {
        justify-content: center
    }

    .ih-mobile-book {
        position: fixed;
        display: flex;
        z-index: 30;
        inset-inline: 14px;
        bottom: 14px;
        box-shadow: var(--shadow)
    }

    .ih-card,
    .ih-panel,
    .ih-auth {
        padding: 18px
    }

    .ih-metrics {
        grid-template-columns: 1fr 1fr
    }

    th,
    td {
        padding: 10px;
        font-size: 12px
    }

    button,
    .ih-btn {
        min-height: 44px
    }
}
