/* =========================================================
   FUTURE CEMENT — GLOBAL DESIGN SYSTEM
   Engineered Authority / Technical Product UI
   ========================================================= */

:root {
    --fc-navy: #0B132B;
    --fc-navy-2: #101A35;
    --fc-navy-3: #151F3D;

    --fc-cream: #F4F0E6;
    --fc-cream-2: #E8E2D5;

    --fc-gold: #EEB902;
    --fc-gold-light: #F4CE55;
    --fc-gold-dark: #B88900;

    --fc-orange: #D96A16;

    --fc-white: #FFFFFF;
    --fc-text: #D8DCE5;
    --fc-muted: #8F99AB;
    --fc-dark-muted: #667085;

    --fc-border: rgba(255,255,255,.09);
    --fc-border-gold: rgba(238,185,2,.28);

    --fc-success: #38C98A;
    --fc-danger: #E76F51;
    --fc-info: #62A8E8;

    --fc-radius-sm: 7px;
    --fc-radius-md: 12px;
    --fc-radius-lg: 18px;

    --fc-shadow:
        0 20px 50px rgba(0,0,0,.24);

    --fc-shadow-gold:
        0 18px 50px rgba(238,185,2,.10);

    --fc-transition:
        180ms ease;
}


/* =========================================================
   BASE
   ========================================================= */

html {
    scroll-behavior: smooth;
}

body.fc-body {
    margin: 0;
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 80% 0%,
            rgba(238,185,2,.045),
            transparent 28%
        ),
        var(--fc-navy);

    color: var(--fc-text);

    font-family:
        "Plus Jakarta Sans",
        Arial,
        sans-serif;

    font-size: 16px;
    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.fc-body,
body.fc-body * {
    box-sizing: border-box;
}

body.fc-body a {
    color: inherit;
    text-decoration: none;
}

body.fc-body button,
body.fc-body input,
body.fc-body select,
body.fc-body textarea {
    font: inherit;
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.fc-body h1,
.fc-body h2,
.fc-body h3,
.fc-body h4,
.fc-body h5,
.fc-body h6 {
    font-family: "Space Grotesk", Arial, sans-serif;
    color: var(--fc-white);
    margin-top: 0;
}

.fc-display {
    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;
}

.fc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--fc-gold);

    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;

    letter-spacing: .16em;
    text-transform: uppercase;
}

.fc-eyebrow::before {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--fc-gold);
}

.fc-section-title {
    font-family: "Space Grotesk", Arial, sans-serif;

    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.05;

    letter-spacing: -.035em;

    margin-bottom: 14px;
}

.fc-section-subtitle {
    max-width: 720px;

    color: var(--fc-muted);

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   HEADER
   ========================================================= */

.fc-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background:
        rgba(7,12,28,.92);

    border-bottom: 1px solid var(--fc-border);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.fc-header-inner {
    width: min(1240px, calc(100% - 36px));

    min-height: 76px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;
}

.fc-brand {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    min-width: 0;
}

.fc-brand-mark {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--fc-border-gold);

    border-radius: 9px;

    background:
        linear-gradient(
            145deg,
            rgba(238,185,2,.16),
            rgba(238,185,2,.03)
        );

    color: var(--fc-gold);

    box-shadow:
        inset 0 0 20px rgba(238,185,2,.03);
}

.fc-brand-text {
    min-width: 0;
}

.fc-brand-name {
    display: block;

    color: var(--fc-white);

    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;

    letter-spacing: .075em;
    line-height: 1.1;
}

.fc-brand-tagline {
    display: block;

    margin-top: 4px;

    color: var(--fc-muted);

    font-family: "Space Grotesk", Arial, sans-serif;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: .11em;
    line-height: 1.2;

    white-space: nowrap;
}

.fc-desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 22px;

    margin-left: auto;
}

.fc-desktop-nav a {
    position: relative;

    padding: 28px 0 26px;

    color: #AEB6C6;

    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;

    white-space: nowrap;

    transition:
        color var(--fc-transition);
}

.fc-desktop-nav a:hover,
.fc-desktop-nav a.fc-nav-active {
    color: var(--fc-gold);
}

.fc-desktop-nav a.fc-nav-active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 2px;

    background: var(--fc-gold);
}

.fc-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fc-header-tool-button,
.fc-header-audit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 38px;

    padding: 0 13px;

    border-radius: var(--fc-radius-sm);

    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;

    transition:
        background var(--fc-transition),
        color var(--fc-transition),
        border-color var(--fc-transition),
        transform var(--fc-transition);
}

.fc-header-tool-button {
    border: 1px solid var(--fc-border);

    color: var(--fc-text);

    background: rgba(255,255,255,.025);
}

.fc-header-tool-button:hover {
    border-color: var(--fc-border-gold);
    color: var(--fc-gold);
}

.fc-header-audit-button {
    border: 1px solid var(--fc-gold);

    color: var(--fc-navy);

    background: var(--fc-gold);
}

.fc-header-audit-button:hover {
    background: var(--fc-gold-light);
    transform: translateY(-1px);
}

.fc-mobile-menu-button {
    display: none;

    width: 40px;
    height: 40px;

    border: 1px solid var(--fc-border);

    border-radius: var(--fc-radius-sm);

    background: rgba(255,255,255,.025);

    color: var(--fc-text);

    cursor: pointer;
}

.fc-mobile-menu {
    display: none;

    border-top: 1px solid var(--fc-border);

    background: #080E20;
}

.fc-mobile-menu.is-open {
    display: block;
}

.fc-mobile-menu nav {
    width: min(1240px, calc(100% - 36px));

    margin: 0 auto;

    padding: 10px 0 16px;

    display: flex;
    flex-direction: column;
}

.fc-mobile-menu nav a {
    display: flex;
    align-items: center;
    gap: 11px;

    padding: 13px 4px;

    border-bottom: 1px solid rgba(255,255,255,.045);

    color: var(--fc-text);

    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
}

.fc-mobile-menu nav a:hover,
.fc-mobile-menu nav a.fc-nav-active {
    color: var(--fc-gold);
}

.fc-mobile-menu .fc-mobile-audit {
    justify-content: center;

    margin-top: 12px;

    border: 1px solid var(--fc-gold);
    border-radius: var(--fc-radius-sm);

    background: var(--fc-gold);

    color: var(--fc-navy);
}


/* =========================================================
   MAIN PAGE CONTAINER
   ========================================================= */

.fc-page {
    width: min(1240px, calc(100% - 36px));

    margin: 0 auto;

    padding: 68px 0 90px;
}

.fc-page-narrow {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.fc-section {
    margin-bottom: 90px;
}


/* =========================================================
   HERO
   ========================================================= */

.fc-hero {
    position: relative;

    padding:
        clamp(50px, 8vw, 105px)
        0
        clamp(55px, 8vw, 100px);

    overflow: hidden;
}

.fc-hero::before {
    content: "";

    position: absolute;

    width: 560px;
    height: 560px;

    top: -250px;
    right: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(238,185,2,.09),
            transparent 68%
        );

    pointer-events: none;
}

.fc-hero-grid {
    position: relative;
    z-index: 1;

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(340px, .85fr);

    gap: 70px;

    align-items: center;
}

.fc-hero h1 {
    max-width: 850px;

    font-size:
        clamp(40px, 6vw, 76px);

    line-height: .98;

    letter-spacing: -.055em;

    margin:
        16px 0
        24px;
}

.fc-hero h1 .fc-highlight {
    color: var(--fc-gold);
}

.fc-hero-copy {
    max-width: 680px;

    color: #B8BFCD;

    font-size: 16px;
    line-height: 1.85;
}

.fc-hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 11px;

    margin-top: 30px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.fc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 44px;

    padding: 0 18px;

    border-radius: var(--fc-radius-sm);

    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform var(--fc-transition),
        background var(--fc-transition),
        border-color var(--fc-transition),
        color var(--fc-transition),
        box-shadow var(--fc-transition);
}

.fc-btn:hover {
    transform: translateY(-1px);
}

.fc-btn-primary {
    background: var(--fc-gold);
    color: var(--fc-navy);

    box-shadow:
        0 10px 30px rgba(238,185,2,.12);
}

.fc-btn-primary:hover {
    background: var(--fc-gold-light);
}

.fc-btn-secondary {
    border: 1px solid var(--fc-border);

    background: rgba(255,255,255,.025);

    color: var(--fc-text);
}

.fc-btn-secondary:hover {
    border-color: var(--fc-border-gold);
    color: var(--fc-white);
}

.fc-btn-outline-gold {
    border: 1px solid var(--fc-gold);

    background: transparent;

    color: var(--fc-gold);
}

.fc-btn-outline-gold:hover {
    background: var(--fc-gold);
    color: var(--fc-navy);
}


/* =========================================================
   TECHNICAL CARDS
   ========================================================= */

.fc-card {
    position: relative;

    border:
        1px solid var(--fc-border);

    border-radius: var(--fc-radius-md);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.012)
        );

    box-shadow:
        0 12px 35px rgba(0,0,0,.12);

    overflow: hidden;
}

.fc-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 2px;
    height: 100%;

    background: transparent;

    transition:
        background var(--fc-transition);
}

.fc-card:hover {
    border-color: var(--fc-border-gold);

    box-shadow: var(--fc-shadow-gold);
}

.fc-card:hover::before {
    background: var(--fc-gold);
}

.fc-card-inner {
    padding: 24px;
}

.fc-card-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border:
        1px solid var(--fc-border-gold);

    border-radius: 9px;

    background:
        rgba(238,185,2,.055);

    color: var(--fc-gold);
}

.fc-card-title {
    margin-bottom: 8px;

    color: var(--fc-white);

    font-family: "Space Grotesk", Arial, sans-serif;

    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
}

.fc-card-description {
    margin: 0;

    color: var(--fc-muted);

    font-size: 13px;
    line-height: 1.7;
}

.fc-card-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: 18px;

    color: var(--fc-gold);

    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}


/* =========================================================
   TOOL CARDS
   ========================================================= */

.fc-tool-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 14px;
}

.fc-tool-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 235px;

    padding: 22px;

    border:
        1px solid var(--fc-border);

    border-radius: var(--fc-radius-md);

    background:
        linear-gradient(
            150deg,
            rgba(16,26,53,.92),
            rgba(11,19,43,.78)
        );

    transition:
        transform var(--fc-transition),
        border-color var(--fc-transition),
        box-shadow var(--fc-transition);
}

.fc-tool-card:hover {
    transform: translateY(-3px);

    border-color: var(--fc-border-gold);

    box-shadow:
        0 18px 45px rgba(0,0,0,.25);
}

.fc-tool-card-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: rgba(238,185,2,.08);

    color: var(--fc-gold);

    margin-bottom: 18px;
}

.fc-tool-card-category {
    margin-bottom: 7px;

    color: var(--fc-gold);

    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;

    letter-spacing: .14em;
    text-transform: uppercase;
}

.fc-tool-card h3 {
    margin-bottom: 8px;

    font-size: 17px;
    line-height: 1.25;
}

.fc-tool-card p {
    margin: 0;

    color: var(--fc-muted);

    font-size: 12px;
    line-height: 1.7;
}

.fc-tool-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    margin-top: auto;
    padding-top: 20px;
}

.fc-tool-price {
    color: var(--fc-gold);

    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
}

.fc-tool-free {
    color: var(--fc-success);
}

.fc-tool-paid {
    color: var(--fc-gold);
}


/* =========================================================
   CATEGORY FILTERS
   ========================================================= */

.fc-category-bar {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin: 26px 0;
}

.fc-category-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    min-height: 35px;

    padding: 0 12px;

    border:
        1px solid var(--fc-border);

    border-radius: 999px;

    background: rgba(255,255,255,.02);

    color: var(--fc-muted);

    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;

    cursor: pointer;

    transition:
        color var(--fc-transition),
        background var(--fc-transition),
        border-color var(--fc-transition);
}

.fc-category-button:hover,
.fc-category-button.active {
    border-color: var(--fc-border-gold);

    background: rgba(238,185,2,.08);

    color: var(--fc-gold);
}


/* =========================================================
   SEARCH
   ========================================================= */

.fc-search {
    position: relative;

    width: 100%;
}

.fc-search input {
    width: 100%;

    min-height: 46px;

    padding:
        0
        15px
        0
        43px;

    border:
        1px solid var(--fc-border);

    border-radius: var(--fc-radius-sm);

    outline: none;

    background:
        rgba(255,255,255,.025);

    color: var(--fc-white);

    transition:
        border-color var(--fc-transition),
        box-shadow var(--fc-transition);
}

.fc-search input:focus {
    border-color: var(--fc-border-gold);

    box-shadow:
        0 0 0 3px rgba(238,185,2,.06);
}

.fc-search i {
    position: absolute;

    left: 15px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--fc-muted);
}


/* =========================================================
   MCQ / TRAINING
   ========================================================= */

.fc-training-card {
    padding: 26px;

    border:
        1px solid var(--fc-border);

    border-radius: var(--fc-radius-md);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.012)
        );
}

.fc-training-card h3 {
    margin-bottom: 9px;
}

.fc-training-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 14px;
}

.fc-badge {
    display: inline-flex;
    align-items: center;

    min-height: 26px;

    padding: 0 9px;

    border-radius: 999px;

    border:
        1px solid var(--fc-border);

    background: rgba(255,255,255,.025);

    color: var(--fc-muted);

    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;

    letter-spacing: .04em;
}

.fc-badge-gold {
    border-color: var(--fc-border-gold);

    color: var(--fc-gold);

    background: rgba(238,185,2,.06);
}

.fc-badge-success {
    border-color: rgba(56,201,138,.22);

    color: var(--fc-success);

    background: rgba(56,201,138,.05);
}


/* =========================================================
   PRICING
   ========================================================= */

.fc-pricing-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 16px;
}

.fc-pricing-card {
    padding: 30px 26px;

    border:
        1px solid var(--fc-border);

    border-radius: var(--fc-radius-md);

    background:
        rgba(255,255,255,.02);
}

.fc-pricing-card.featured {
    border-color: var(--fc-border-gold);

    box-shadow:
        0 20px 60px rgba(238,185,2,.08);
}

.fc-price {
    margin: 14px 0;

    color: var(--fc-white);

    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -.045em;
}

.fc-price small {
    color: var(--fc-muted);

    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
}


/* =========================================================
   CALCULATOR UI
   ========================================================= */

.fc-calculator {
    border:
        1px solid var(--fc-border);

    border-radius: var(--fc-radius-lg);

    background:
        linear-gradient(
            145deg,
            rgba(16,26,53,.95),
            rgba(8,14,32,.95)
        );

    box-shadow: var(--fc-shadow);

    overflow: hidden;
}

.fc-calculator-header {
    padding: 26px;

    border-bottom:
        1px solid var(--fc-border);
}

.fc-calculator-body {
    padding: 26px;
}

.fc-calculator-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, .75fr);

    gap: 24px;
}

.fc-input-group {
    margin-bottom: 16px;
}

.fc-input-group label {
    display: block;

    margin-bottom: 7px;

    color: #B9C0CE;

    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
}

.fc-input,
.fc-select,
.fc-textarea {
    width: 100%;

    border:
        1px solid var(--fc-border);

    border-radius: var(--fc-radius-sm);

    outline: none;

    background:
        rgba(0,0,0,.18);

    color: var(--fc-white);

    transition:
        border-color var(--fc-transition),
        box-shadow var(--fc-transition);
}

.fc-input,
.fc-select {
    min-height: 43px;

    padding: 0 12px;
}

.fc-textarea {
    min-height: 120px;

    padding: 12px;
}

.fc-input:focus,
.fc-select:focus,
.fc-textarea:focus {
    border-color: var(--fc-gold);

    box-shadow:
        0 0 0 3px rgba(238,185,2,.055);
}

.fc-result {
    padding: 20px;

    border:
        1px solid var(--fc-border-gold);

    border-radius: var(--fc-radius-md);

    background:
        rgba(238,185,2,.035);
}

.fc-result-value {
    color: var(--fc-gold);

    font-family: "Space Grotesk", Arial, sans-serif;

    font-size: 30px;
    font-weight: 700;

    line-height: 1.1;
}

.fc-result-label {
    margin-bottom: 6px;

    color: var(--fc-muted);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .09em;
    text-transform: uppercase;
}


/* =========================================================
   LOCKED PREMIUM RESULT
   ========================================================= */

.fc-locked-result {
    position: relative;

    overflow: hidden;

    padding: 24px;

    border:
        1px solid rgba(238,185,2,.22);

    border-radius: var(--fc-radius-md);

    background:
        rgba(238,185,2,.025);
}

.fc-locked-content {
    filter: blur(4px);

    opacity: .45;

    user-select: none;
}

.fc-lock-overlay {
    position: absolute;

    inset: 0;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 20px;

    text-align: center;

    background:
        linear-gradient(
            to bottom,
            rgba(11,19,43,.45),
            rgba(11,19,43,.93)
        );
}

.fc-lock-overlay i {
    margin-bottom: 10px;

    color: var(--fc-gold);

    font-size: 22px;
}


/* =========================================================
   DATA TABLES
   ========================================================= */

.fc-table-wrap {
    width: 100%;

    overflow-x: auto;

    border:
        1px solid var(--fc-border);

    border-radius: var(--fc-radius-md);
}

.fc-table {
    width: 100%;

    border-collapse: collapse;

    min-width: 650px;
}

.fc-table th,
.fc-table td {
    padding: 12px 14px;

    border-bottom:
        1px solid var(--fc-border);

    text-align: left;

    font-size: 12px;
}

.fc-table th {
    color: var(--fc-gold);

    background:
        rgba(238,185,2,.045);

    font-family: "Space Grotesk", Arial, sans-serif;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .06em;
    text-transform: uppercase;
}

.fc-table td {
    color: var(--fc-text);
}

.fc-table tr:last-child td {
    border-bottom: 0;
}


/* =========================================================
   TECHNICAL DIVIDER
   ========================================================= */

.fc-rule {
    width: 100%;
    height: 1px;

    margin: 28px 0;

    background:
        linear-gradient(
            90deg,
            var(--fc-gold),
            rgba(238,185,2,.15),
            transparent
        );
}


/* =========================================================
   EMPTY / COMING SOON
   ========================================================= */

.fc-empty {
    padding: 48px 24px;

    border:
        1px dashed var(--fc-border);

    border-radius: var(--fc-radius-md);

    text-align: center;

    background:
        rgba(255,255,255,.012);
}

.fc-empty i {
    margin-bottom: 13px;

    color: var(--fc-dark-muted);

    font-size: 26px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.fc-footer {
    margin-top: auto;

    border-top:
        1px solid var(--fc-border);

    background:
        #070C1B;
}

.fc-footer-inner {
    width: min(1240px, calc(100% - 36px));

    margin: 0 auto;

    padding: 50px 0 28px;
}

.fc-footer-grid {
    display: grid;

    grid-template-columns:
        1.4fr
        repeat(3, 1fr);

    gap: 35px;
}

.fc-footer-title {
    margin-bottom: 13px;

    color: var(--fc-white);

    font-family: "Space Grotesk", Arial, sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .08em;
    text-transform: uppercase;
}

.fc-footer a,
.fc-footer p {
    color: var(--fc-muted);

    font-size: 12px;
}

.fc-footer a:hover {
    color: var(--fc-gold);
}

.fc-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 40px;
    padding-top: 20px;

    border-top:
        1px solid var(--fc-border);

    color: var(--fc-dark-muted);

    font-size: 10px;
}


/* =========================================================
   SHARING
   ========================================================= */

.fc-share {
    display: flex;
    flex-wrap: wrap;

    align-items: center;

    gap: 7px;
}

.fc-share-label {
    margin-right: 5px;

    color: var(--fc-muted);

    font-family: "Space Grotesk", Arial, sans-serif;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .08em;
}

.fc-share-button {
    width: 34px;
    height: 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid var(--fc-border);

    border-radius: 50%;

    background:
        rgba(255,255,255,.02);

    color: var(--fc-muted);

    cursor: pointer;

    transition:
        color var(--fc-transition),
        border-color var(--fc-transition),
        background var(--fc-transition);
}

.fc-share-button:hover {
    color: var(--fc-gold);

    border-color: var(--fc-border-gold);

    background:
        rgba(238,185,2,.05);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1120px) {

    .fc-desktop-nav {
        gap: 15px;
    }

    .fc-desktop-nav a {
        font-size: 11px;
    }

    .fc-header-audit-button {
        display: none;
    }

    .fc-tool-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 900px) {

    .fc-desktop-nav {
        display: none;
    }

    .fc-mobile-menu-button {
        display: flex;
    }

    .fc-header-tool-button {
        display: none;
    }

    .fc-hero-grid {
        grid-template-columns: 1fr;

        gap: 38px;
    }

    .fc-calculator-grid {
        grid-template-columns: 1fr;
    }

    .fc-pricing-grid {
        grid-template-columns: 1fr;
    }

    .fc-footer-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 620px) {

    .fc-header-inner,
    .fc-mobile-menu nav,
    .fc-page,
    .fc-footer-inner {
        width: min(100% - 24px, 1240px);
    }

    .fc-header-inner {
        min-height: 68px;
    }

    .fc-brand-mark {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .fc-brand-name {
        font-size: 14px;
    }

    .fc-brand-tagline {
        display: none;
    }

    .fc-page {
        padding-top: 42px;
        padding-bottom: 60px;
    }

    .fc-section {
        margin-bottom: 60px;
    }

    .fc-hero {
        padding-top: 45px;
        padding-bottom: 55px;
    }

    .fc-hero h1 {
        font-size: clamp(38px, 13vw, 56px);
    }

    .fc-hero-copy {
        font-size: 14px;
    }

    .fc-tool-grid {
        grid-template-columns: 1fr;
    }

    .fc-footer-grid {
        grid-template-columns: 1fr;
    }

    .fc-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

}


/* =========================================================
   UTILITY CLASSES
   ========================================================= */

.fc-gold {
    color: var(--fc-gold) !important;
}

.fc-muted {
    color: var(--fc-muted) !important;
}

.fc-white {
    color: var(--fc-white) !important;
}

.fc-hidden {
    display: none !important;
}

.fc-text-center {
    text-align: center !important;
}