/* =========================
   FREE STRATEGY CALL
   Page-specific styles. Tokens come from styles.css.
========================= */


/* =========================
   COMMON HELPERS
========================= */
.fsc-eyebrow,
.fsc-hero-eyebrow,
.fsc-agenda-eyebrow,
.fsc-products-eyebrow,
.fsc-booking-eyebrow,
.fsc-fit-eyebrow,
.fsc-founder-eyebrow,
.fsc-context-eyebrow,
.fsc-alt-eyebrow {
    display: inline-block;
    margin: 0 0 14px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(0, 113, 235, 0.08);
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}


/* =========================
   HERO
========================= */
.fsc-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 22px 72px;
    background:
        radial-gradient(1200px 480px at 80% -10%, rgba(107, 77, 230, 0.10), transparent 60%),
        radial-gradient(900px 420px at 5% 0%, rgba(0, 113, 235, 0.10), transparent 60%),
        linear-gradient(180deg, #f7f9fd 0%, #ffffff 100%);
    border-bottom: 1px solid var(--border-subtle);
}

.fsc-hero-inner {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.fsc-hero-title {
    font-size: clamp(36px, 5.4vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--text-main);
    margin: 0 auto 22px;
    max-width: 18ch;
    text-wrap: balance;
}

.fsc-hero-title-accent {
    background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.fsc-hero-deck {
    max-width: 64ch;
    margin: 0 auto 28px;
    font-size: var(--large);
    line-height: 1.65;
    color: var(--text-muted);
    text-wrap: pretty;
}

.fsc-hero-meta {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
}

.fsc-hero-meta li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border-default);
    box-shadow: var(--shadow-soft);
    font-size: var(--small);
    color: var(--text-main);
    font-weight: 500;
}

.fsc-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 0 0 36px;
}

.fsc-hero-byline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 18px 8px 8px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border-default);
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    transition: box-shadow 0.2s, transform 0.2s;
}

.fsc-hero-byline:hover {
    box-shadow: 0 14px 30px rgba(17, 24, 39, 0.10);
    transform: translateY(-1px);
}

.fsc-hero-byline-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.fsc-hero-byline-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    line-height: 1.25;
}

.fsc-hero-byline-name {
    font-size: var(--small);
    font-weight: 700;
    color: var(--text-main);
}

.fsc-hero-byline-role {
    font-size: 12px;
    color: var(--text-muted);
}

@media (max-width: 640px) {
    .fsc-hero {
        padding: 60px 18px 52px;
    }

    .fsc-hero-byline-role {
        display: none;
    }

    .fsc-hero-byline {
        padding: 6px 16px 6px 6px;
    }
}


/* =========================
   AGENDA
========================= */
.fsc-agenda {
    padding: 96px 22px;
    background: #fff;
}

.fsc-agenda-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.fsc-agenda-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.fsc-agenda-title {
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-main);
    margin: 0 0 14px;
    text-wrap: balance;
}

.fsc-agenda-deck {
    font-size: var(--large);
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
}

.fsc-agenda-track {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    position: relative;
}

.fsc-agenda-track::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 6%;
    right: 6%;
    height: 2px;
    background: linear-gradient(90deg,
            var(--blue) 0%,
            var(--green) 33%,
            var(--yellow) 66%,
            var(--purple) 100%);
    opacity: 0.18;
    z-index: 0;
}

.fsc-agenda-step {
    position: relative;
    padding: 28px 22px;
    background: #fff;
    border: 1px solid var(--border-default);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s, box-shadow 0.25s;
    z-index: 1;
}

.fsc-agenda-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
}

.fsc-agenda-step-time {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 18px;
    font-variant-numeric: tabular-nums;
}

.fsc-agenda-step-from,
.fsc-agenda-step-to {
    font-size: 18px;
}

.fsc-agenda-step-sep {
    margin: 0 2px;
    opacity: 0.6;
}

.fsc-agenda-step-unit {
    margin-left: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.8;
}

.fsc-agenda-step-blue .fsc-agenda-step-time {
    background: rgba(0, 113, 235, 0.10);
    color: var(--blue);
}

.fsc-agenda-step-green .fsc-agenda-step-time {
    background: rgba(0, 154, 68, 0.10);
    color: var(--green);
}

.fsc-agenda-step-yellow .fsc-agenda-step-time {
    background: rgba(235, 185, 0, 0.16);
    color: var(--yellow-hover);
}

.fsc-agenda-step-purple .fsc-agenda-step-time {
    background: rgba(107, 77, 230, 0.10);
    color: var(--purple);
}

.fsc-agenda-step-title {
    font-size: var(--large);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--text-main);
    margin: 0 0 8px;
}

.fsc-agenda-step-text {
    font-size: var(--small);
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 980px) {
    .fsc-agenda-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .fsc-agenda-track::before {
        display: none;
    }
}

@media (max-width: 560px) {
    .fsc-agenda {
        padding: 64px 18px;
    }

    .fsc-agenda-track {
        grid-template-columns: 1fr;
    }
}


/* =========================
   WALK-AWAYS / PRODUCTS
========================= */
.fsc-products {
    padding: 96px 22px;
    background: #f7f9fd;
}

.fsc-products-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.fsc-products-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.fsc-products-title {
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-main);
    margin: 0 0 14px;
    text-wrap: balance;
}

.fsc-products-deck {
    font-size: var(--large);
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
}

.fsc-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.fsc-product {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border-default);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
}

.fsc-product:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(17, 24, 39, 0.10);
}

.fsc-product-visual {
    position: relative;
    height: 220px;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fsc-product-blue .fsc-product-visual {
    background: linear-gradient(135deg, #eaf2ff 0%, #f5f9ff 100%);
}

.fsc-product-green .fsc-product-visual {
    background: linear-gradient(135deg, #e6f6ee 0%, #f1faf4 100%);
}

.fsc-product-purple .fsc-product-visual {
    background: linear-gradient(135deg, #efebff 0%, #f6f3ff 100%);
}

.fsc-product-mock {
    width: 100%;
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 10px 26px rgba(17, 24, 39, 0.08);
}

/* Mock 1: Timeline */
.fsc-product-mock-timeline .fsc-product-mock-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.fsc-product-mock-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fsc-product-mock-value {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-main);
    font-variant-numeric: tabular-nums;
}

.fsc-product-mock-bar {
    height: 8px;
    border-radius: 999px;
    background: #eaf0f7;
    overflow: hidden;
    margin-bottom: 14px;
}

.fsc-product-mock-bar-fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--blue) 0%, var(--green) 60%, var(--yellow) 100%);
    border-radius: 999px;
}

.fsc-product-mock-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    align-items: center;
    font-size: 11px;
    color: var(--text-muted);
}

.fsc-product-mock-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.fsc-product-mock-dot-blue {
    background: var(--blue);
}

.fsc-product-mock-dot-green {
    background: var(--green);
}

.fsc-product-mock-dot-yellow {
    background: var(--yellow);
}

/* Mock 2: Channels */
.fsc-product-mock-channels {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fsc-product-mock-channel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #f7f9fd;
    border-radius: 10px;
}

.fsc-product-mock-channel-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
}

.fsc-product-mock-channel-jp {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: 2px;
}

.fsc-product-mock-channel-tier {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 8px;
    border-radius: 999px;
}

.fsc-product-mock-channel-tier-1 {
    background: rgba(0, 154, 68, 0.12);
    color: var(--green);
}

.fsc-product-mock-channel-tier-2 {
    background: rgba(91, 100, 118, 0.12);
    color: var(--text-muted);
}

/* Mock 3: Budget */
.fsc-product-mock-budget {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fsc-product-mock-budget-row {
    display: grid;
    grid-template-columns: 70px 1fr 56px;
    align-items: center;
    gap: 10px;
}

.fsc-product-mock-budget-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-main);
}

.fsc-product-mock-budget-bar {
    height: 8px;
    border-radius: 999px;
    background: #eaf0f7;
    overflow: hidden;
}

.fsc-product-mock-budget-fill {
    display: block;
    height: 100%;
    background: var(--red);
    border-radius: 999px;
}

.fsc-product-mock-budget-fill-good {
    background: var(--green);
}

.fsc-product-mock-budget-fill-mid {
    background: var(--yellow);
}

.fsc-product-mock-budget-value {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-main);
    text-align: right;
    font-variant-numeric: tabular-nums;
}

/* Product body */
.fsc-product-body {
    padding: 26px 28px 30px;
}

.fsc-product-step {
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 0.06em;
    margin: 0 0 8px;
    font-variant-numeric: tabular-nums;
}

.fsc-product-green .fsc-product-step {
    color: var(--green);
}

.fsc-product-purple .fsc-product-step {
    color: var(--purple);
}

.fsc-product-title {
    font-size: var(--extra-large);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--text-main);
    margin: 0 0 10px;
}

.fsc-product-text {
    font-size: var(--small);
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 980px) {
    .fsc-products-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
}

@media (max-width: 560px) {
    .fsc-products {
        padding: 64px 18px;
    }

    .fsc-product-visual {
        height: 180px;
        padding: 22px;
    }
}


/* =========================
   BOOKING WIDGET
========================= */
.fsc-booking {
    padding: 96px 22px;
    background: #fff;
}

.fsc-booking-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.fsc-booking-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.fsc-booking-title {
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-main);
    margin: 0 0 14px;
    text-wrap: balance;
}

.fsc-booking-deck {
    font-size: var(--large);
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
}

.fsc-booking-widget {
    background: #fff;
    border: 1px solid var(--border-default);
    border-radius: 24px;
    box-shadow: 0 24px 56px rgba(17, 24, 39, 0.07);
    overflow: hidden;
}

.fsc-booking-step[data-step="picker"] {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    min-height: 480px;
}

/* Calendar */
.fsc-booking-calendar {
    padding: 32px 36px;
    border-right: 1px solid var(--border-subtle);
}

.fsc-booking-calendar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.fsc-booking-calendar-month {
    font-size: var(--large);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

.fsc-booking-calendar-nav {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--border-default);
    background: #fff;
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.fsc-booking-calendar-nav:hover:not(:disabled) {
    background: #f7f9fd;
    border-color: #c9d1e0;
}

.fsc-booking-calendar-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.fsc-booking-calendar-dow {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin-bottom: 8px;
}

.fsc-booking-calendar-dow span {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    text-align: center;
    padding: 6px 0;
}

.fsc-booking-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.fsc-booking-day {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid transparent;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    font-variant-numeric: tabular-nums;
}

.fsc-booking-day:hover:not(:disabled):not(.fsc-booking-day-empty) {
    background: rgba(0, 113, 235, 0.08);
    border-color: rgba(0, 113, 235, 0.20);
    color: var(--blue);
}

.fsc-booking-day-disabled,
.fsc-booking-day:disabled {
    color: #c4cad6;
    cursor: not-allowed;
}

.fsc-booking-day-empty {
    cursor: default;
    pointer-events: none;
}

.fsc-booking-day-today {
    color: var(--blue);
    font-weight: 700;
}

.fsc-booking-day-available {
    background: #fff;
    border-color: var(--border-default);
}

.fsc-booking-day-selected {
    background: var(--blue) !important;
    border-color: var(--blue) !important;
    color: #fff !important;
    box-shadow: 0 6px 16px rgba(0, 113, 235, 0.30);
}

.fsc-booking-calendar-note {
    margin: 16px 0 0;
    font-size: 12px;
    color: var(--text-muted);
}

/* Slots */
.fsc-booking-slots {
    padding: 32px 36px;
    background: #f7f9fd;
    display: flex;
    flex-direction: column;
}

.fsc-booking-slots-head {
    margin-bottom: 16px;
}

.fsc-booking-slots-eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin: 0 0 6px;
}

.fsc-booking-slots-date {
    font-size: var(--large);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main);
    margin: 0;
}

.fsc-booking-slots-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    max-height: 360px;
    padding-right: 4px;
}

.fsc-booking-slots-empty {
    margin: 0;
    padding: 24px 0;
    text-align: center;
    font-size: var(--small);
    color: var(--text-muted);
}

.fsc-booking-slot {
    width: 100%;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid var(--border-default);
    border-radius: 12px;
    color: var(--text-main);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.18s, box-shadow 0.18s;
    text-align: left;
    font-variant-numeric: tabular-nums;
    box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04), 0 4px 10px rgba(17, 24, 39, 0.05);
}

.fsc-booking-slot:hover {
    border-color: rgba(0, 113, 235, 0.55);
    color: var(--blue);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 113, 235, 0.16), 0 2px 4px rgba(17, 24, 39, 0.06);
}

.fsc-booking-slot:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 113, 235, 0.14);
}

.fsc-booking-slot-selected,
.fsc-booking-slot-selected:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 113, 235, 0.32), 0 2px 6px rgba(0, 113, 235, 0.18);
}

/* Form */
.fsc-booking-form {
    padding: 32px 44px 36px;
    background: linear-gradient(180deg, #fbfcfe 0%, #ffffff 100%);
}

.fsc-booking-form-summary {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px 12px 18px;
    background: rgba(0, 113, 235, 0.05);
    border-radius: 14px;
    margin-bottom: 32px;
}

.fsc-booking-form-summary-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: var(--blue);
    opacity: 0.85;
}

.fsc-booking-form-summary-value {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-main);
    flex: 1;
}

.fsc-booking-form-summary-edit {
    background: #fff;
    border: 0;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    cursor: pointer;
    border-radius: 999px;
    box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
    transition: background 0.15s, transform 0.15s;
}

.fsc-booking-form-summary-edit:hover {
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(17, 24, 39, 0.08);
}

.fsc-booking-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 16px;
}

.fsc-booking-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fsc-booking-form-field-full {
    grid-column: 1 / -1;
}

.fsc-booking-form-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--text-muted);
    padding-left: 2px;
}

.fsc-booking-form-req {
    color: #c4cad6;
    font-weight: 500;
    margin-left: 2px;
}

.fsc-booking-form-input,
.fsc-booking-form-textarea {
    width: 100%;
    padding: 14px 16px;
    background: #f3f5f9;
    border: 1px solid transparent;
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    color: var(--text-main);
    transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
    -webkit-appearance: none;
    appearance: none;
}

.fsc-booking-form-input::placeholder,
.fsc-booking-form-textarea::placeholder {
    color: #9aa3b3;
}

.fsc-booking-form-input:hover,
.fsc-booking-form-textarea:hover {
    background: #eef1f6;
}

.fsc-booking-form-input:focus,
.fsc-booking-form-textarea:focus {
    outline: none;
    background: #fff;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(0, 113, 235, 0.14);
}

.fsc-booking-form-textarea {
    resize: vertical;
    min-height: 96px;
    line-height: 1.5;
}

.fsc-booking-form-actions {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.fsc-booking-form-actions .btn {
    width: 100%;
    max-width: 420px;
    padding: 18px 28px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
    box-shadow: none;
    transition: background 0.18s, transform 0.12s;
}

.fsc-booking-form-actions .btn:hover {
    background: var(--blue-hover);
    box-shadow: none;
}

.fsc-booking-form-actions .btn:active {
    transform: translateY(1px);
}

.fsc-booking-form-actions .btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

.fsc-booking-form-fineprint {
    margin: 0;
    font-size: 12px;
    line-height: 1.55;
    color: var(--text-muted);
    text-align: center;
    max-width: 52ch;
}

.fsc-booking-form-fineprint a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
}

.fsc-booking-form-fineprint a:hover {
    text-decoration: underline;
}

/* Success */
.fsc-booking-success {
    padding: 64px 32px;
    text-align: center;
}

.fsc-booking-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(0, 154, 68, 0.12);
    color: var(--green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.fsc-booking-success-title {
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--text-main);
    margin: 0 0 12px;
}

.fsc-booking-success-text {
    font-size: var(--default);
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0 0 4px;
    max-width: 56ch;
    margin-left: auto;
    margin-right: auto;
}

.fsc-booking-success-meta {
    margin: 14px auto 0;
    font-size: var(--small);
    font-weight: 600;
    color: var(--text-main);
}

@media (max-width: 880px) {
    .fsc-booking-step[data-step="picker"] {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .fsc-booking-calendar {
        border-right: 0;
        border-bottom: 1px solid var(--border-subtle);
        padding: 24px 22px;
    }

    .fsc-booking-slots {
        padding: 24px 22px;
    }

    .fsc-booking-form {
        padding: 28px 22px 32px;
    }

    .fsc-booking-form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .fsc-booking-form-summary {
        padding: 10px 12px 10px 16px;
        gap: 10px;
    }

    .fsc-booking-form-summary-value {
        font-size: 14px;
    }
}

@media (max-width: 560px) {
    .fsc-booking {
        padding: 64px 16px;
    }

    .fsc-booking-form-actions {
        align-items: stretch;
    }
}


/* =========================
   FIT (who this is for)
========================= */
.fsc-fit {
    padding: 96px 22px;
    background: #f7f9fd;
}

.fsc-fit-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.fsc-fit-header {
    text-align: center;
    margin-bottom: 48px;
}

.fsc-fit-title {
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-main);
    margin: 0;
    text-wrap: balance;
}

.fsc-fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.fsc-fit-card {
    background: #fff;
    border: 1px solid var(--border-default);
    border-radius: 20px;
    padding: 32px 32px 28px;
    box-shadow: var(--shadow-soft);
}

.fsc-fit-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.fsc-fit-card-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.fsc-fit-card-yes .fsc-fit-card-badge {
    background: rgba(0, 154, 68, 0.12);
}

.fsc-fit-card-no .fsc-fit-card-badge {
    background: rgba(235, 0, 58, 0.10);
}

.fsc-fit-card-title {
    font-size: var(--large);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main);
    margin: 0;
}

.fsc-fit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fsc-fit-list li {
    position: relative;
    padding-left: 26px;
    font-size: var(--small);
    line-height: 1.6;
    color: var(--text-main);
}

.fsc-fit-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.fsc-fit-card-yes .fsc-fit-list li::before {
    background: rgba(0, 154, 68, 0.22);
    box-shadow: inset 0 0 0 4px var(--green);
}

.fsc-fit-card-no .fsc-fit-list li::before {
    background: rgba(91, 100, 118, 0.18);
    box-shadow: inset 0 0 0 4px var(--text-muted);
}

.fsc-fit-list a {
    color: var(--blue);
    text-decoration: none;
}

.fsc-fit-list a:hover {
    text-decoration: underline;
}

@media (max-width: 760px) {
    .fsc-fit {
        padding: 64px 18px;
    }

    .fsc-fit-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================
   FOUNDER
========================= */
.fsc-founder {
    padding: 96px 22px;
    background: #fff;
}

.fsc-founder-inner {
    max-width: 920px;
    margin: 0 auto;
}

.fsc-founder-eyebrow {
    text-align: center;
    margin: 0 auto 28px;
}

.fsc-founder-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 36px;
    align-items: center;
    padding: 36px 40px;
    background: #f7f9fd;
    border-radius: 24px;
}

.fsc-founder-portrait {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
    justify-self: center;
}

.fsc-founder-name {
    font-size: var(--extra-extra-large);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

.fsc-founder-role {
    font-size: var(--small);
    color: var(--text-muted);
    margin: 4px 0 16px;
}

.fsc-founder-bio {
    font-size: var(--default);
    line-height: 1.65;
    color: var(--text-main);
    margin: 0 0 14px;
}

.fsc-founder-bio strong {
    font-weight: 700;
}

.fsc-founder-disclaimer {
    font-size: var(--small);
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0 0 18px;
}

.fsc-founder-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fsc-founder-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border-default);
    color: var(--text-main);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.fsc-founder-link:hover {
    border-color: var(--blue);
    color: var(--blue);
}

@media (max-width: 720px) {
    .fsc-founder {
        padding: 64px 18px;
    }

    .fsc-founder-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px 22px;
        gap: 20px;
    }

    .fsc-founder-portrait {
        width: 120px;
        height: 120px;
    }

    .fsc-founder-links {
        justify-content: center;
    }
}


/* =========================
   PROOF
========================= */
.fsc-proof {
    padding: 96px 22px;
    background: #f7f9fd;
}

.fsc-proof-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.fsc-proof-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 56px;
}

.fsc-proof-number {
    text-align: center;
    padding: 28px 22px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--border-default);
    box-shadow: var(--shadow-soft);
}

.fsc-proof-number-value {
    font-size: clamp(36px, 4.4vw, 56px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
}

.fsc-proof-number-blue {
    color: var(--blue);
}

.fsc-proof-number-green {
    color: var(--green);
}

.fsc-proof-number-yellow {
    color: var(--yellow-hover);
}

.fsc-proof-number-label {
    font-size: var(--small);
    font-weight: 600;
    color: var(--text-muted);
}

.fsc-proof-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.fsc-testimonial {
    margin: 0;
    padding: 30px 28px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--border-default);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}

.fsc-testimonial-quote {
    margin: 0 0 22px;
    font-size: var(--small);
    line-height: 1.7;
    color: var(--text-main);
    font-style: normal;
    quotes: "\201C" "\201D";
}

.fsc-testimonial-quote::before {
    content: open-quote;
    margin-right: 1px;
}

.fsc-testimonial-quote::after {
    content: close-quote;
    margin-left: 1px;
}

.fsc-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.fsc-testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.fsc-testimonial-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
}

.fsc-testimonial-role {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.3;
}

@media (max-width: 980px) {

    .fsc-proof-numbers,
    .fsc-proof-testimonials {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .fsc-proof-numbers {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 560px) {
    .fsc-proof {
        padding: 64px 18px;
    }

    .fsc-proof-numbers {
        grid-template-columns: 1fr;
    }
}


/* =========================
   CONTEXT (bilingual hiring SEO)
========================= */
.fsc-context {
    padding: 96px 22px;
    background: #fff;
}

.fsc-context-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.fsc-context-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}

.fsc-context-title {
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-main);
    margin: 0 0 14px;
    text-wrap: balance;
}

.fsc-context-deck {
    font-size: var(--large);
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
}

.fsc-context-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.fsc-context-card {
    background: #fff;
    border: 1px solid var(--border-default);
    border-radius: 18px;
    padding: 30px 28px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.fsc-context-card:hover {
    border-color: rgba(0, 113, 235, 0.30);
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.07);
    transform: translateY(-2px);
}

.fsc-context-card-num {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    font-variant-numeric: tabular-nums;
}

.fsc-context-card-title {
    font-size: var(--large);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--text-main);
    margin: 0 0 10px;
}

.fsc-context-card-text {
    font-size: var(--small);
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
}

.fsc-context-footnote {
    margin: 36px auto 0;
    text-align: center;
    font-size: var(--small);
    color: var(--text-muted);
    max-width: 64ch;
}

.fsc-context-footnote a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
}

.fsc-context-footnote a:hover {
    text-decoration: underline;
}

@media (max-width: 760px) {
    .fsc-context {
        padding: 64px 18px;
    }

    .fsc-context-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================
   FAQ override on this page
========================= */
.fsc-faq {
    background: #f7f9fd;
}


/* =========================
   ALTERNATIVE PATHS
========================= */
.fsc-alt {
    padding: 80px 22px;
    background: #fff;
}

.fsc-alt-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.fsc-alt-header {
    text-align: center;
    margin-bottom: 36px;
}

.fsc-alt-title {
    font-size: clamp(24px, 2.8vw, 32px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--text-main);
    margin: 0;
}

.fsc-alt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.fsc-alt-card {
    display: block;
    background: #fff;
    border: 1px solid var(--border-default);
    border-radius: 18px;
    padding: 28px 28px;
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.fsc-alt-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 113, 235, 0.30);
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.08);
}

.fsc-alt-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 113, 235, 0.08);
    margin-bottom: 16px;
}

.fsc-alt-card-title {
    font-size: var(--large);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main);
    margin: 0 0 8px;
}

.fsc-alt-card-text {
    font-size: var(--small);
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0 0 14px;
}

.fsc-alt-card-cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
}

@media (max-width: 720px) {
    .fsc-alt {
        padding: 56px 18px;
    }

    .fsc-alt-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================
   BOTTOM CTA (page-specific)
   Custom layout - does not use the shared .bottom-cta-* classes.
========================= */
.fsc-bottom-cta {
    padding: 80px 22px 96px;
    background: #f7f9fd;
}

.fsc-bottom-cta-inner {
    max-width: 880px;
    margin: 0 auto;
}

.fsc-bottom-cta-card {
    position: relative;
    overflow: hidden;
    padding: 56px 56px 44px;
    background: #fff;
    background-image:
        radial-gradient(720px 280px at 85% -20%, rgba(107, 77, 230, 0.10), transparent 60%),
        radial-gradient(700px 320px at 0% 0%, rgba(0, 113, 235, 0.08), transparent 60%);
    border: 1px solid var(--border-default);
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 24px 56px rgba(17, 24, 39, 0.06);
}

.fsc-bottom-cta-title {
    font-size: clamp(28px, 3.6vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-main);
    margin: 0 0 14px;
    text-wrap: balance;
}

.fsc-bottom-cta-deck {
    font-size: var(--large);
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0 auto 32px;
    max-width: 56ch;
    text-wrap: pretty;
}

.fsc-bottom-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 36px;
}

.fsc-bottom-cta-btn {
    min-width: 260px;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 14px;
    box-shadow: none;
    transition: background 0.18s, transform 0.12s;
}

.fsc-bottom-cta-btn:hover {
    background: var(--blue-hover);
    box-shadow: none;
}

.fsc-bottom-cta-btn:active {
    transform: translateY(1px);
}

.fsc-bottom-cta-link {
    color: var(--blue);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: opacity 0.15s;
}

.fsc-bottom-cta-link:hover {
    opacity: 0.65;
}

.fsc-bottom-cta-signoff {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 18px 8px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border-subtle);
    text-decoration: none;
    transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
    backdrop-filter: blur(6px);
}

.fsc-bottom-cta-signoff:hover {
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(17, 24, 39, 0.07);
}

.fsc-bottom-cta-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.fsc-bottom-cta-signoff-text {
    font-size: 13px;
    line-height: 1.4;
    color: var(--text-muted);
    text-align: left;
}

.fsc-bottom-cta-signoff-text strong {
    display: block;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1px;
}

.fsc-bottom-cta-cert {
    margin: 28px auto 0;
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    opacity: 0.8;
}

@media (max-width: 720px) {
    .fsc-bottom-cta {
        padding: 56px 18px 72px;
    }

    .fsc-bottom-cta-card {
        padding: 40px 24px 32px;
        border-radius: 20px;
    }

    .fsc-bottom-cta-btn {
        width: 100%;
        max-width: 360px;
        min-width: 0;
    }

    .fsc-bottom-cta-signoff-text {
        font-size: 12px;
    }
}


/* =========================
   JAPANESE LOCALE OVERRIDES
   CJK text needs different sizing, no letter-spacing tightening,
   and wider max-widths because each glyph is full-width.
========================= */
html[lang="ja"] .fsc-hero-title {
    font-size: clamp(30px, 4.4vw, 52px);
    max-width: none;
    letter-spacing: 0;
    line-height: 1.25;
    text-wrap: pretty;
}

html[lang="ja"] .fsc-hero-deck {
    text-wrap: pretty;
    letter-spacing: 0;
}

html[lang="ja"] .fsc-agenda-title,
html[lang="ja"] .fsc-products-title,
html[lang="ja"] .fsc-booking-title,
html[lang="ja"] .fsc-context-title,
html[lang="ja"] .fsc-fit-title,
html[lang="ja"] .fsc-alt-title,
html[lang="ja"] .faq-title,
html[lang="ja"] .bottom-cta-title,
html[lang="ja"] .fsc-booking-success-title {
    letter-spacing: 0;
    text-wrap: pretty;
    line-height: 1.3;
}

html[lang="ja"] .fsc-agenda-deck,
html[lang="ja"] .fsc-products-deck,
html[lang="ja"] .fsc-booking-deck,
html[lang="ja"] .fsc-context-deck {
    text-wrap: pretty;
    letter-spacing: 0;
}

html[lang="ja"] .fsc-product-title,
html[lang="ja"] .fsc-context-card-title,
html[lang="ja"] .fsc-fit-card-title,
html[lang="ja"] .fsc-agenda-step-title,
html[lang="ja"] .fsc-alt-card-title {
    letter-spacing: 0;
    line-height: 1.4;
}

/* JP H1 line-break helper. The <br> after the first sentence is honored,
   each line then keeps its native break behavior at 、 punctuation. */
html[lang="ja"] .fsc-hero-title-accent {
    display: inline-block;
}
