@import url('https://fonts.googleapis.com/css2?family=Inter:slnt,wght@-10..0,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,400..700&display=swap');

:root {
    /* Figma — designwithchip.com website (home 134:734) */
    --color-page: #f5f7fb;
    --color-surface-off-white: #fcfcfc;
    --color-surface-white: #ffffff;
    --color-text-figma: #061b31;
    --color-text-secondary-figma: #64748d;

    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --bg-tertiary: #f8f8f8;
    --bg-card: #f5f5f5;
    --bg-card-hover: #e8e8e8;
    --bg-navbar: #fcfcfc;
    --bg-promo: #f8f8f8;
    --bg-phone: #000;
    --bg-status-bar: #FFFFFF;
    --bg-bottom-nav: #f8f8f8;
    
    /* Text Colors */
    --text-primary: #061b31;
    --text-secondary: #666666;
    --text-on-dark: #FFFFFF;
    --text-on-light: #000000;
    --text-on-yellow: #000000;
    
    /* Border Colors */
    --border-primary: #e0e0e0;
    --border-secondary: #f0f0f0;
    --border-input: #ddd;
    
    /* Button & Chip Colors */
    --chip-green: #4CB221;
    --chip-purple: #4F32D9;
    --chip-purple-hover: #3d26a8;
    --chip-blue: #2184B2;
    --chip-gray: #616161;
    --chip-yellow: #F5C139;
    --chip-yellow-hover: #E5B132;
    --chip-orange: #FF8C00;
    --button-blue: #007AFF;
    
    /* Gradient Colors */
    --gradient-start: #3C1F7B;
    --gradient-end: #E06716;
    
    /* Font Family */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-nunito: 'Nunito Sans', var(--font-family);
    
    /* Hero (Figma 127:743) */
    --hero-primary: #393bb4;
    --hero-border: #b8cadb;
    
    /* Font Sizes */
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-md: 18px;
    --font-size-lg: 20px;
    --font-size-xl: 22px;
    --font-size-2xl: 24px;
    --font-size-3xl: 28px;
    --font-size-4xl: 48px;
    
    /* Font Weights */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Line Heights */
    --line-height-tight: 16px;
    --line-height-normal: 20px;
    --line-height-relaxed: 22px;
    --line-height-loose: 24px;
    --line-height-body: 1.6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: var(--text-primary);
    font-family: var(--font-family);
    line-height: var(--line-height-body);
    background: var(--color-page);
}

/* index.html — Figma White/Off-White (#fcfcfc) */
body.page-home {
    background: var(--color-surface-off-white);
}

.hidden {
    display: none;
}

/* Navbar — Figma node 166:901 */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--bg-navbar);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 68px;
    padding: 0;
    border-bottom: 0.5px solid var(--hero-border);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1024px;
    width: 100%;
    padding: 0 24px;
    gap: 16px;
}

.navbar-brand {
    flex: 1 1 0;
    min-width: 0;
    font-size: 14px;
    line-height: 1.45;
    font-weight: var(--font-weight-semibold);
    letter-spacing: -0.28px;
    color: #061b31;
    text-decoration: none;
    text-transform: lowercase;
}

.navbar-brand:hover {
    opacity: 0.85;
}

.navbar-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-nav-item--hidden {
    display: none !important;
}

.navbar-link {
    display: inline-block;
    font-size: 14px;
    line-height: 1.45;
    font-weight: var(--font-weight-medium);
    letter-spacing: -0.07px;
    color: #061b31;
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}

.navbar-link:hover {
    opacity: 0.8;
}

.navbar-link--active {
    color: var(--hero-primary);
    border-bottom-color: var(--hero-primary);
}

.navbar-link--external {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border-bottom-color: transparent;
}

.navbar-link--external:hover {
    border-bottom-color: transparent;
}

.navbar-link-icon {
    flex-shrink: 0;
    display: block;
}

.navbar-cta-wrap {
    flex: 1 1 0;
    display: flex;
    justify-content: flex-end;
    min-width: 0;
}

.navbar-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 8px;
    border: 0.5px solid var(--hero-primary);
    background: transparent;
    color: var(--hero-primary);
    font-size: 14px;
    line-height: 1.45;
    font-weight: var(--font-weight-medium);
    letter-spacing: -0.07px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.15s ease, background-color 0.15s ease;
}

.navbar-book-btn:hover {
    opacity: 0.9;
    background-color: rgba(57, 59, 180, 0.06);
}

@media (max-width: 799px) {
    .navbar-container {
        flex-wrap: wrap;
        row-gap: 12px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .navbar-brand {
        flex: 1 1 auto;
    }

    .navbar-nav {
        order: 3;
        flex: 1 1 100%;
        justify-content: flex-start;
        gap: 16px;
    }

    .navbar-cta-wrap {
        flex: 0 0 auto;
    }

    .navbar-book-btn {
        font-size: 13px;
        padding: 6px 10px;
    }
}

/* Legacy class names (older pages / components) */
.logo {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-normal);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: var(--font-size-sm);
    line-height: var(--line-height-normal);
    font-weight: var(--font-weight-normal);
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.7;
}

.nav-icon {
    width: 16px;
    height: 16px;
    margin-left: 4px;
    vertical-align: middle;
}

main {
    font-size: var(--font-size-base);
    line-height: var(--line-height-loose);
    font-weight: var(--font-weight-normal);
}

.intro-section {
    margin: 0;
    padding: 24px;
    max-width: 1024px;
    /* max-height: 600px;
    height: 100vh; */
    display: flex;
    flex-direction: column;
    /* align-items: center;
    justify-content: center;
    text-align: center; */
    /* border-right: 1px solid var(--border-primary);
    border-left: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary); */
}

.intro-title {
    font-size: var(--font-size-4xl);
    line-height: 56px;
    font-weight: var(--font-weight-medium);
}

.intro-section p {
    font-size: var(--font-size-2xl);
    line-height: var(--line-height-body);
    font-weight: var(--font-weight-normal);
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.intro-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: nowrap;
    margin: 0 auto;
    width: 100%;
    justify-content: center;
}

.intro-button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.intro-button-primary a {
    color: var(--bg-primary) !important; 
}

.intro-button-primary a:visited {
    color: var(--bg-primary) !important;
}

.intro-button-primary {
    background-color: var(--text-primary);
    color: var(--bg-primary);
}

.intro-button-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.intro-button-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-primary);
}

.intro-button-secondary:hover {
    background-color: var(--bg-card);
    border-color: var(--text-primary);
}

.work-section {
    width: 100%;
    padding: 32px 24px;
    /* border-right: 1px solid var(--border-primary);
    border-left: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary); */
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.work-section h2 {
    font-size: 32px;
    line-height: 40px;
    font-weight: var(--font-weight-normal);
    color: var(--text-primary);
    margin-bottom: 8px;
}

.work-section p {
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    font-weight: var(--font-weight-normal);
    color: var(--text-primary);
    margin-bottom: 32px;
}

.work-section-cards-2-1 {
    display: flex;
    gap: 24px;
}

.work-section-cards-2-1 > :first-child {
    flex: 2.3;
}

.work-section-cards-2-1 > :last-child {
    flex: 1;
}

.work-section-card {
    border-radius: 16px;
    padding: 24px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
    height: 536px;
}

.work-section-card-description {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 72px;
    margin-bottom: 32px;
}

.work-section-card h3 {
    color: var(--text-on-dark);
    font-size: 20px;
    list-style: 24px;
    font-weight: var(--font-weight-semibold);

}

.work-section-card p {
    color: var(--text-on-dark);
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0px;
}

.ai-saas-website-review {
    background: linear-gradient(180deg, #d92b2b 0%, #891236 100%);
    color: var(--text-on-dark);
}

.ai-saas-website-review img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.wordjam {
    background: linear-gradient(180deg, #34344F 0%, #181826 100%);
    color: var(--text-on-dark);
}

.wordjam img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* box-shadow: 0 4px 36px 0 rgba(0, 0, 0, 0.25); */
}

.work-section-cards-1-1-1 {
    display: flex;
    gap: 24px;
}

.vigor {
    background: linear-gradient(180deg, #168203 0%, #050805 100%);
    color: var(--text-on-dark);
}

.vigor img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* box-shadow: 0 4px 36px 0 rgba(0, 0, 0, 0.25); */
}

.acting-coach {
    background: linear-gradient(180deg, #3C47BB 0%, #270890 100%);
    color: var(--text-on-dark);
}

.acting-coach img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* box-shadow: 0 4px 36px 0 rgba(0, 0, 0, 0.25); */
}

.warm {
    background: linear-gradient(180deg, #FFDA00 0%, #F27E00 100%);
    color: var(--text-primary);
}

.warm h3, .warm p {
    color: var(--text-primary);
}

.warm img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* box-shadow: 0 4px 36px 0 rgba(0, 0, 0, 0.25); */
}





.content-container {
    max-width: 1024px;
    margin: 32px auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 0 24px;
}

.cards-section {
    display: flex;
    gap: 8px;
    margin-top: 48px;
}

.card {
    background-color: var(--bg-card);
    border-radius: 16px;
    padding: 20px;
    text-align: left;
    flex: 1;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 16px;
}

.card:hover {
    background-color: var(--bg-card-hover);
}

.card h3 {
    color: var(--text-primary);
}

.card p {
    color: var(--text-primary);
}

.card-image {
    width: 88px;
    height: 88px;
    margin-bottom: 0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-decoration: none;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    align-items: flex-start;
}

.card-initials {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
}

.acting-coach-card {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-title {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-loose);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
}

.card-title-link {
    text-decoration: none;
    display: block;
}

.card-title-link .card-title {
    margin: 0;
}

.card-description {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-normal);
    font-weight: var(--font-weight-normal);
    color: var(--text-primary);
    margin-bottom: 0;
}

.card-chip {
    display: inline-block;
    background-color: var(--chip-green);
    color: var(--text-on-dark);
    font-size: var(--font-size-xs);
    line-height: var(--line-height-tight);
    font-weight: var(--font-weight-normal);
    padding: 4px 12px;
    border-radius: 12px;
    text-decoration: none;
}

.card-link {
    text-decoration: none;
    color: inherit;
    flex: 1;
    display: block;
}

.card-link .card {
    height: 100%;
}

/* Promo section styles */
.promo-section {
    margin-top: 40px;
    background-color: var(--bg-promo);
    border-radius: 16px;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-card {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    text-align: center;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.promo-card:hover {
    opacity: 0.9;
}

.promo-image {
    width: 180px;
    height: auto;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.promo-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.promo-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    align-items: center;
}

.promo-title {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-loose);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin: 0;
}

.promo-description {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-normal);
    font-weight: var(--font-weight-normal);
    color: var(--text-primary);
    margin: 0;
}

.promo-chip {
    display: inline-block;
    padding: 12px 48px;
    background-color: var(--chip-yellow);
    color: var(--text-on-yellow);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
    margin-top: 16px;
}

.promo-chip:hover {
    background-color: var(--chip-yellow-hover);
}

/* Warm page specific styles */
.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.beta-button {
    background-color: var(--chip-purple);
    color: var(--text-on-dark);
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: auto;
    display: inline-block;
    text-decoration: none;
}

.beta-button:hover {
    background-color: var(--chip-purple-hover);
}

.appstore-link {
    padding: 0;
    background: none;
}

.store-badge {
    height: 40px;
    width: auto;
    display: block;
}

.app-intro {
    margin: 40px 0 40px 0;
}

.app-header {
    display: flex;
    align-items: center;
}

.app-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    overflow: hidden;
    margin-right: 16px;
}

.app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-icon.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: var(--text-on-dark);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
}

.app-icon.coaching-profile {
    width: 160px;
    height: 160px;
    border-radius: 16px;
}

.app-title {
    font-size: var(--font-size-4xl);
    line-height: 56px;
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
    margin-bottom: 8px;
}

.app-tagline {
    font-size: var(--font-size-2xl);
    line-height: var(--line-height-body);
    font-weight: var(--font-weight-normal);
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.app-description p {
    font-size: var(--font-size-base);
    line-height: var(--line-height-loose);
    color: var(--text-primary);
}

.app-chip {
    display: inline-block;
    background-color: var(--chip-green);
    color: var(--text-on-dark);
    font-size: var(--font-size-xs);
    line-height: var(--line-height-tight);
    font-weight: var(--font-weight-normal);
    padding: 4px 12px;
    border-radius: 12px;
}

.beta {
    background-color: var(--chip-blue);
}

.development {
    background-color: var(--chip-gray);
}

.released {
    background-color: var(--chip-green);
}

.try-beta {
    background-color: var(--chip-purple);
}

.app-description {
    margin: 40px 0;
}

.app-description p {
    font-size: var(--font-size-base);
    line-height: var(--line-height-loose);
    color: var(--text-primary);
}

.mockups-section {
    margin: 40px 0;
    width: 100%;
    text-align: center;
}

.phone-mockup {
    display: inline-block;
    width: 280px;
    height: 560px;
    background-color: var(--bg-phone);
    border-radius: 40px;
    padding: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin: 0 16px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.screen-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background-color: var(--bg-status-bar);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
}

.status-icons {
    display: flex;
    gap: 4px;
}

.screen-content {
    flex: 1;
    padding: 20px;
    color: var(--text-on-light);
    overflow-y: auto;
}

.screen-content h2 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: 20px;
    color: var(--text-on-light);
}

.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.screen-header h2 {
    margin: 0;
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-semibold);
}

.header-icons {
    display: flex;
    gap: 12px;
}

.contact-list {
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-secondary);
}

.connect-btn {
    background-color: var(--chip-orange);
    color: var(--text-on-dark);
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
}

.important-dates {
    margin-top: 24px;
}

.important-dates h3 {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--text-on-light);
}

.date-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px 0;
}

.date {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    color: var(--text-secondary);
}

.event {
    font-size: var(--font-size-sm);
    color: var(--text-on-light);
}

.friends-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.friend-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-secondary);
    font-size: var(--font-size-sm);
    color: var(--text-on-light);
}

.profile-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.field label {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    color: var(--text-secondary);
    text-transform: uppercase;
}

.field input {
    border: 1px solid var(--border-input);
    border-radius: 6px;
    padding: 8px 12px;
    font-size: var(--font-size-sm);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.section-header h3 {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    color: var(--text-secondary);
    text-transform: uppercase;
    margin: 0;
}

.section-header button {
    background-color: var(--button-blue);
    color: var(--text-on-dark);
    border: none;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: var(--font-size-xs);
}

.bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 0;
    background-color: var(--bg-bottom-nav);
    border-top: 1px solid var(--border-primary);
    font-size: var(--font-size-md);
}

.why-section {
    margin: 80px 0;
}

.why-section h2 {
    font-size: 32px;
    line-height: 40px;
    font-weight: var(--font-weight-normal);
    color: var(--text-primary);
    margin-bottom: 24px;
}

.why-section p {
    font-size: var(--font-size-base);
    line-height: var(--line-height-loose);
    color: var(--text-primary);
    margin-bottom: 16px;
}

.feature-list {
    margin: 12px 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--text-primary);
}

.feature-list li {
    line-height: var(--line-height-relaxed);
}

/* Home – Figma node 134:734 (home) */
/* Home hero – Figma node 134:744 (Hero 1) */
.coaching-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 48px;
    border: 0.5px solid var(--hero-border);
    border-radius: 32px;
    overflow: hidden;
    background: radial-gradient(100% 100% at 100% 100%, #4444D2 0%, #3444C5 34.13%, #30329F 71%, #21227D 100%), radial-gradient(203.33% 100% at 100% 46.25%, #393BB4 0%, #191A4E 100%);
}

.coaching-hero-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.coaching-eyebrow {
    font-family: var(--font-nunito);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    line-height: 24px;
    color: #ffffff;
    margin: 0;
}

.coaching-title {
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: var(--font-weight-medium);
    line-height: 36px;
    letter-spacing: -0.12px;
    color: #ffffff;
    margin: 0;
}

.coaching-hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.coaching-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 9px;
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: var(--font-weight-medium);
    letter-spacing: -0.09px;
    line-height: 1.45;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s ease;
}

.coaching-hero-btn:hover {
    opacity: 0.92;
}

.coaching-hero-btn-primary {
    background-color: #ffffff;
    color: var(--hero-primary);
}

.coaching-hero-btn-primary:hover {
    background-color: #f2f3ff;
    opacity: 1;
}

.coaching-hero-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.coaching-hero-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
    opacity: 1;
}

.coaching-hero-subtext {
    font-family: var(--font-nunito);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    line-height: 24px;
    color: var(--text-primary);
    margin: 0;
}

.coaching-hero-photo {
    flex-shrink: 0;
    width: 320px;
    height: 320px;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid #ffffff;
    box-sizing: border-box;
}

.coaching-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.coaching-hero-cta {
    margin-top: 32px;
    padding: 24px;
    background-color: var(--bg-card);
    border-radius: 16px;
}

.coaching-hero-cta .coaching-cta-title {
    margin-bottom: 12px;
}

.coaching-hero-cta .coaching-cta-text {
    padding-bottom: 20px;
}

.coaching-hero-details-link {
    margin-top: 16px;
    margin-bottom: 0;
    font-size: var(--font-size-sm);
}

.coaching-hero-details-link a {
    color: var(--text-secondary);
    text-decoration: underline;
}

.coaching-info {
    flex: 1;
}

.coaching-tagline {
    font-size: var(--font-size-lg);
    line-height: 28px;
    font-weight: var(--font-weight-normal);
    color: var(--text-secondary);
    margin-bottom: 8px;
}

/* Same bordered, padded block as .work-section on main index */
.coaching-section {
    width: 100%;
    padding: 72px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.coaching-section.hidden {
    display: none;
}

.coaching-section h2 {
    font-size: 32px;
    line-height: 40px;
    font-weight: var(--font-weight-normal);
    color: var(--text-primary);
    margin-bottom: 8px;
}

.coaching-section > p {
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    font-weight: var(--font-weight-normal);
    color: var(--text-primary);
    margin-bottom: 0;
}

/* The problem — Figma 134:756 (White/Light grey) */
.problem-section {
    background-color: var(--color-page);
    border: 0.5px solid var(--hero-border);
    border-radius: 32px;
    padding: 48px;
    overflow: hidden;
}

.problem-section-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 100%;
}

.problem-heading {
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: var(--font-weight-medium);
    line-height: 36px;
    letter-spacing: -0.12px;
    color: var(--text-primary);
    margin: 0;
}

.problem-body {
    font-family: var(--font-nunito);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    line-height: 24px;
    color: var(--text-primary);
}

.problem-body p {
    margin: 0 0 8px 0;
}

.problem-body p:last-of-type {
    margin-bottom: 0;
}

.problem-body ul {
    margin: 0 0 8px 0;
    padding-left: 24px;
    list-style: disc;
}

.problem-body ul li {
    margin-bottom: 4px;
    font-family: var(--font-nunito);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    line-height: 24px;
    color: var(--text-primary);
}

.problem-body ul li:last-child {
    margin-bottom: 0;
}

.coaching-section p {
    font-size: var(--font-size-base);
    line-height: var(--line-height-loose);
    color: var(--text-primary);
    margin-bottom: 16px;
}

.coaching-section p:last-of-type {
    margin-bottom: 0;
}

.coaching-note {
    margin-top: 24px;
}

/* About page (about/index.html) */
.about-article .about-article-inner {
    max-width: 720px;
    margin: 0 auto;
}

.about-article-title {
    font-family: var(--font-family);
    font-size: 32px;
    font-weight: var(--font-weight-medium);
    line-height: 40px;
    letter-spacing: -0.16px;
    color: var(--text-primary);
    margin: 0 0 20px 0;
}

.about-lead {
    font-family: var(--font-nunito);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    line-height: 24px;
    color: var(--text-primary);
    margin: 0;
}

.about-block {
    margin-top: 40px;
}

.about-block h2 {
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: var(--font-weight-medium);
    line-height: 36px;
    letter-spacing: -0.12px;
    color: var(--text-primary);
    margin: 0 0 16px 0;
}

.about-block p,
.about-block li {
    font-family: var(--font-nunito);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    line-height: 24px;
    color: var(--text-primary);
    margin: 0 0 12px 0;
}

.about-block p:last-child {
    margin-bottom: 0;
}

.about-block ul {
    margin: 12px 0 0 0;
    padding-left: 24px;
    list-style: disc;
}

.about-block li {
    margin-bottom: 8px;
}

.about-block li:last-child {
    margin-bottom: 0;
}

.about-block strong {
    font-weight: var(--font-weight-semibold);
}

.about-hobbies {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-hobby h3 {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: var(--font-weight-medium);
    line-height: 28px;
    letter-spacing: -0.09px;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.about-hobby p {
    font-family: var(--font-nunito);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    line-height: 24px;
    color: var(--text-primary);
    margin: 0;
}

.about-outro {
    margin-top: 32px;
}

.about-outro a {
    color: var(--hero-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.about-outro a:hover {
    opacity: 0.88;
}

/* Why you're not getting calls — Figma 134:794 */
.calls-section {
    background-color: var(--color-page);
    border: 0.5px solid var(--hero-border);
    border-radius: 32px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    overflow: hidden;
}

.calls-section-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calls-heading {
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: var(--font-weight-medium);
    line-height: 36px;
    letter-spacing: -0.12px;
    color: var(--text-primary);
    margin: 0;
}

.calls-intro {
    font-family: var(--font-nunito);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    line-height: 24px;
    color: var(--text-primary);
    margin: 0;
}

.calls-cards {
    display: flex;
    gap: 24px;
    width: 100%;
}

.calls-card {
    flex: 1 1 0;
    min-width: 0;
    background-color: var(--color-surface-white);
    border: 0.5px solid var(--hero-border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.calls-card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--hero-primary);
    border: none;
}

.calls-card-icon-img {
    width: 24px;
    height: 24px;
    display: block;
    flex-shrink: 0;
}

.calls-card-title {
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: var(--font-weight-medium);
    line-height: 32px;
    letter-spacing: -0.3px;
    color: var(--text-primary);
    margin: 0;
}

.calls-card-body {
    font-family: var(--font-nunito);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    line-height: 24px;
    color: var(--text-primary);
}

.calls-card-body p {
    margin: 0 0 8px 0;
}

.calls-card-body p:last-of-type {
    margin-bottom: 0;
}

.calls-card-body ul {
    margin: 0 0 8px 0;
    padding-left: 24px;
    list-style: disc;
}

.calls-card-body ul li {
    margin-bottom: 4px;
    font-family: var(--font-nunito);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    line-height: 24px;
    color: var(--text-primary);
}

.calls-card-body ul li:last-child {
    margin-bottom: 0;
}

/* What we do to fix it — Figma 134:825 (White/White) */
.fix-it-section {
    background-color: var(--color-surface-white);
    border: 0.5px solid var(--hero-border);
    border-radius: 32px;
    padding: 48px;
    overflow: hidden;
}

.fix-it-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.fix-it-heading {
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: var(--font-weight-medium);
    line-height: 36px;
    letter-spacing: -0.12px;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.fix-it-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fix-it-intro {
    font-family: var(--font-nunito);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    line-height: 24px;
    color: var(--text-primary);
    margin: 0;
}

.fix-it-subhead {
    font-family: var(--font-nunito);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    line-height: 24px;
    color: var(--text-primary);
    margin: 0;
}

.fix-it-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.fix-it-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: var(--color-page);
    border-radius: 12px;
}

.fix-it-arrow {
    flex-shrink: 0;
    color: var(--hero-primary);
}

.fix-it-item span {
    font-family: var(--font-nunito);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    line-height: 24px;
    color: var(--text-primary);
}

.fix-it-outro {
    font-family: var(--font-nunito);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    line-height: 24px;
    color: var(--text-primary);
    margin: 0;
}

/* What changes after working together — Figma 134:1838 (White/White) */
.changes-section {
    background-color: var(--color-surface-white);
    border: 0.5px solid var(--hero-border);
    border-radius: 32px;
    padding: 48px;
    overflow: hidden;
}

.changes-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.changes-heading {
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: var(--font-weight-medium);
    line-height: 36px;
    letter-spacing: -0.12px;
    color: var(--text-primary);
    margin: 0;
}

.changes-row {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.changes-list-wrap {
    flex: 1 1 0;
    min-width: 0;
}

.changes-intro {
    font-family: var(--font-nunito);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    line-height: 24px;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.changes-list {
    margin: 0;
    padding-left: 24px;
    list-style: disc;
    font-family: var(--font-nunito);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    line-height: 24px;
    color: var(--text-primary);
}

.changes-list li {
    margin-bottom: 4px;
}

.changes-list li:last-child {
    margin-bottom: 0;
}

.changes-cta-box {
    flex: 1 1 0;
    min-width: 0;
    background-color: var(--hero-primary);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.changes-cta-label {
    font-family: var(--font-nunito);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    line-height: 24px;
    color: var(--text-on-dark);
    margin: 0;
}

.changes-cta-line {
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: var(--font-weight-medium);
    line-height: 32px;
    letter-spacing: -0.4px;
    color: var(--text-on-dark);
    margin: 0;
}

/* Book your first session — Figma 134:1850 (White/Light grey) */
.book-cta-section {
    background-color: var(--color-page);
    border: 0.5px solid var(--hero-border);
    border-radius: 32px;
    padding: 48px;
    display: flex;
    gap: 48px;
    align-items: center;
    overflow: hidden;
}

.book-cta-content {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.book-cta-heading {
    font-family: var(--font-family);
    font-size: 32px;
    font-weight: var(--font-weight-medium);
    line-height: 40px;
    letter-spacing: -0.16px;
    color: var(--text-primary);
    margin: 0;
}

.book-cta-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 9px;
    background-color: var(--hero-primary);
    color: var(--text-on-dark);
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: var(--font-weight-medium);
    letter-spacing: -0.09px;
    line-height: 1.45;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s ease;
}

.book-cta-btn:hover {
    opacity: 0.9;
}

.coaching-feature-list {
    margin: 12px 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--text-primary);
}

.coaching-feature-list li {
    line-height: var(--line-height-relaxed);
}

.coaching-cta-box {
    margin: 0;
    padding: 24px;
    background-color: var(--bg-card);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.coaching-cta-content {
    flex: 1;
    min-width: 300px;
}

.coaching-cta-title {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-loose);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: 12px;
}

.coaching-cta-text {
    font-size: var(--font-size-base);
    line-height: var(--line-height-loose);
    color: var(--text-primary);
    margin: 0;
    padding-bottom: 24px;
}

/* Testimonials — Figma 134:764 (White/White) */
.testimonials-section {
    background-color: var(--color-surface-white);
    border: 0.5px solid var(--hero-border);
    border-radius: 32px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    overflow: hidden;
}

.testimonials-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    width: 100%;
}

.testimonials-heading {
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: var(--font-weight-medium);
    line-height: 36px;
    letter-spacing: -0.12px;
    color: var(--text-primary);
    margin: 0;
}

.testimonials-carousel-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.testimonials-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--hero-border);
    background-color: var(--color-page);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, border-color 0.2s;
}

.testimonials-nav-btn:hover {
    background-color: var(--color-surface-off-white);
    border-color: var(--hero-border);
}

.testimonials-cards-wrap {
    width: 100%;
    min-height: 0;
}

.coaching-testimonials-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}

.coaching-testimonials-track::-webkit-scrollbar {
    display: none;
}

.coaching-testimonial {
    flex: 0 0 auto;
    width: min(380px, 85vw);
    min-height: 200px;
    padding: 24px;
    background-color: var(--color-page);
    border: 0.5px solid var(--hero-border);
    border-radius: 16px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}

.coaching-testimonial-quote {
    font-family: var(--font-nunito);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--text-primary);
    margin: 0 0 16px 0;
    flex: 1;
}

.coaching-testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: auto;
}

.coaching-testimonial-name {
    font-family: var(--font-nunito);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    line-height: 24px;
    color: var(--text-primary);
    margin: 0;
}

.coaching-testimonial-role {
    font-family: var(--font-nunito);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--color-text-secondary-figma);
    margin: 4px 0 0 0;
}

.testimonials-nav-btn svg {
    flex-shrink: 0;
}

.coaching-community-block {
    text-align: center;
}

.coaching-community-label {
    font-size: var(--font-size-base);
    line-height: var(--line-height-loose);
    color: var(--text-primary);
    margin-bottom: 16px;
}

.coaching-community-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.coaching-community-link-wrap {
    margin-top: 16px;
}

.coaching-community-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-size-sm);
}

.coaching-community-link-icon {
    width: 14px;
    height: 14px;
    margin-left: 4px;
    vertical-align: middle;
}

.coaching-community-caption {
    margin-top: 12px;
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

/* Mobile responsive styles for homepage/coaching layout */
@media (max-width: 799px) {
    .intro-buttons {
        flex-direction: column;
    }
    
    .work-section-cards-2-1 {
        flex-direction: column;
    }
    
    .work-section-cards-1-1-1 {
        flex-direction: column;
    }
    
    .cards-section {
        flex-direction: column;
    }
    
    .promo-card {
        align-items: center;
    }
    
    .promo-image {
        width: 180px;
    }

    .work-section-cards-2-1 > :first-child {
        flex: auto;
    }
    
    .work-section-cards-2-1 > :last-child {
        flex: auto;
    }

    .ai-saas-website-review {
        height: auto;
    }

    :root {
        /* Background Colors */
        --bg-primary: #FFFFFF;
        --bg-secondary: #f5f5f5;
        --bg-tertiary: #f8f8f8;
        --bg-card: #f5f5f5;
        --bg-card-hover: #e8e8e8;
        --bg-navbar: #FFFFFF;
        --bg-promo: #f8f8f8;
        --bg-phone: #000;
        --bg-status-bar: #FFFFFF;
        --bg-bottom-nav: #f8f8f8;
        
        /* Text Colors */
        --text-primary: #061b31;
        --text-secondary: #666666;
        --text-on-dark: #FFFFFF;
        --text-on-light: #000000;
        --text-on-yellow: #000000;
        
        /* Border Colors */
        --border-primary: #e0e0e0;
        --border-secondary: #f0f0f0;
        --border-input: #ddd;
        
        /* Button & Chip Colors */
        --chip-green: #4CB221;
        --chip-purple: #4F32D9;
        --chip-purple-hover: #3d26a8;
        --chip-blue: #2184B2;
        --chip-gray: #616161;
        --chip-yellow: #F5C139;
        --chip-yellow-hover: #E5B132;
        --chip-orange: #FF8C00;
        --button-blue: #007AFF;
        
        /* Gradient Colors */
        --gradient-start: #3C1F7B;
        --gradient-end: #E06716;
        
        /* Font Family */
        --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        
        /* Font Sizes */
        --font-size-xs: 12px;
        --font-size-sm: 14px;
        --font-size-base: 16px;
        --font-size-md: 16px;
        --font-size-lg: 16px;
        --font-size-xl: 18px;
        --font-size-2xl: 20px;
        --font-size-3xl: 22px;
        --font-size-4xl: 24px;
        
        /* Font Weights */
        --font-weight-normal: 400;
        --font-weight-medium: 500;
        --font-weight-semibold: 600;
        --font-weight-bold: 700;
        
        /* Line Heights */
        --line-height-tight: 16px;
        --line-height-normal: 20px;
        --line-height-relaxed: 22px;
        --line-height-loose: 24px;
        --line-height-body: 1.6;
    }

    .intro-title {
        line-height: 36px;
    }
    
    .app-title {
        line-height: 36px;
    }
    
    .why-section h2 {
        font-size: 24px;
        line-height: 32px;
    }
    
    .coaching-title {
        line-height: 36px;
    }
    
    .coaching-section h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .problem-section {
        padding: 48px 24px;
    }

    .problem-heading {
        font-size: 24px;
        line-height: 32px;
    }

    .testimonials-section {
        padding: 48px 24px;
    }

    .testimonials-section-header {
        flex-wrap: wrap;
        gap: 24px;
    }

    .testimonials-heading {
        font-size: 24px;
        line-height: 32px;
    }
    
    .coaching-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        padding: 48px 24px;
    }

    .coaching-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .coaching-hero-btn {
        width: 100%;
    }

    .coaching-hero-photo {
        width: 280px;
        height: 280px;
        order: -1;
    }

    .calls-section {
        padding: 48px 24px;
    }

    .calls-cards {
        flex-direction: column;
    }

    .fix-it-section {
        padding: 48px 24px;
    }

    .fix-it-heading {
        font-size: 24px;
        line-height: 32px;
    }

    .fix-it-grid {
        grid-template-columns: 1fr;
    }

    .changes-section {
        padding: 48px 24px;
    }

    .changes-heading {
        font-size: 24px;
        line-height: 32px;
    }

    .changes-row {
        flex-direction: column;
    }

    .book-cta-section {
        flex-direction: column;
        padding: 48px 24px;
        gap: 24px;
    }

    .book-cta-content {
        align-items: center;
        text-align: center;
    }

    .book-cta-heading {
        font-size: 24px;
        line-height: 32px;
    }

    .book-cta-btn {
        width: 100%;
    }

    .coaching-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .coaching-icon {
        margin-right: 0;
        margin-bottom: 16px;
    }

    .coaching-hero, .problem-section, .calls-section, .fix-it-section, .changes-section, .book-cta-section, .testimonials-section, .about-article {
        border-radius: 0px;
    }
}

/* SaaS Reviewer Page Styles */
.saas-reviewer-container {
    width: 100%;
    height: calc(100vh - 73px); /* Full height minus navbar */
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.saas-reviewer-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

body.portfolio-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin-bottom: 0;
}

body.portfolio-page .portfolio-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 0;
    align-items: center;
}

/* Portfolio landing layout */
.portfolio-hero {
    margin-top: 32px;
    margin-bottom: 16px;
}

.portfolio-eyebrow {
    font-family: var(--font-nunito);
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin: 0 0 8px 0;
}

.portfolio-title {
    font-family: var(--font-family);
    font-size: 32px;
    font-weight: var(--font-weight-medium);
    line-height: 40px;
    letter-spacing: -0.16px;
    color: var(--text-primary);
    margin: 0 0 12px 0;
}

.portfolio-intro {
    font-family: var(--font-nunito);
    font-size: 16px;
    line-height: 24px;
    color: var(--text-primary);
    max-width: 640px;
    margin: 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.make-personal-grid {
    width: 100%;
    margin-bottom: 24px;
}

.make-personal-grid-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.make-project-card {
    border-radius: 16px;
    border: 0.5px solid var(--hero-border);
    overflow: clip;
    height: 536px;
    padding: 24px 24px 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.make-project-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.make-project-card-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 72px;
}

.make-project-card-title-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.make-project-card-title {
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: var(--font-weight-medium);
    line-height: 1.2;
    letter-spacing: -0.4px;
    color: #ffffff;
    margin: 0;
    white-space: nowrap;
}

.make-project-card-frame-icon {
    width: 13px;
    height: 16px;
    display: block;
}

.make-project-card-subtitle {
    font-family: var(--font-nunito);
    font-size: 16px;
    line-height: 24px;
    font-weight: var(--font-weight-medium);
    color: #ffffff;
    margin: 0;
    min-height: 80px;
}

.make-project-card-image-wrap {
    width: 261.333px;
    max-width: 100%;
    margin-top: 0;
    display: block;
}

.make-project-card-image {
    width: 100%;
    height: 100%;
    /* Figma's <img> is sized to fill the wrapper; we mirror that by stretching. */
    object-fit: fill;
    display: block;
}

.make-project-card--vigor {
    background: radial-gradient(40% 55% at 50% 55%, rgba(22,130,3,1) 0%, rgba(18,99,4,1) 25%, rgba(14,69,4,1) 50%, rgba(9,38,5,1) 75%, rgba(7,23,5,1) 87.5%, rgba(5,8,5,1) 100%);
}

.make-project-card--vigor .make-project-card-image-wrap {
    height: 400px;
}

.make-project-card--acting-coach {
    background: linear-gradient(180deg, #3c47bb 0%, #270890 100%);
}

.make-project-card--acting-coach .make-project-card-image-wrap {
    height: 400px;
}

.make-project-card--wordjam {
    background: radial-gradient(50% 60% at 50% 78%, rgba(52,52,79,1) 0%, rgba(38,38,59,1) 50%, rgba(24,24,38,1) 100%);
}

.make-project-card--wordjam .make-project-card-image-wrap {
    height: 400px;
}

@media (max-width: 900px) {
    .make-personal-grid-inner {
        grid-template-columns: 1fr;
    }

    .make-project-card {
        height: auto;
        gap: 24px;
        padding: 24px;
    }

    .make-project-card-image-wrap {
        width: 100%;
        height: 320px !important;
    }
}

.portfolio-card-link {
    text-decoration: none;
    color: inherit;
}

.acting-coach-screens {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.acting-coach-screens img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    border: 0.5px solid var(--hero-border);
    background-color: var(--bg-primary);
}

@media (max-width: 799px) {
    .acting-coach-screens {
        grid-template-columns: 1fr;
    }
}

/* Acting Coach page – Figma node 134:723 */
body.acting-coach-page {
    background: #f8fafb;
}

.acting-coach-landing {
    max-width: 1024px;
    margin: 0 auto;
    padding: 24px 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.acting-coach-hero,
.acting-coach-story {
    display: flex;
    justify-content: center;
}

.acting-coach-hero-inner {
    width: 100%;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.acting-coach-hero {
    width: 100%;
    border-radius: 32px;
    border: 0.5px solid var(--hero-border);
    background: linear-gradient(180deg, #c60037 0%, #b80062 100%);
    padding: 48px 48px 0;
    box-sizing: border-box;
}

.acting-coach-hero.is-books {
    background: linear-gradient(180deg, #3C47BB 0%, #270890 100%);
}

.acting-coach-hero.is-games {
    background: linear-gradient(180deg, #009226 0%, #00693C 100%);
}

.acting-coach-hero.is-your-own {
    background: linear-gradient(180deg, #EE7D0F 0%, #BF6D16 100%);
}

.acting-coach-hero-title {
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: var(--font-weight-semibold);
    line-height: 32px;
    letter-spacing: -0.12px;
    color: #ffffff;
    text-align: center;
    margin: 0;
}

.acting-coach-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.acting-coach-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 9px;
    border: 0.5px solid #FFFFFF;
    color: #FFFFFF;
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: var(--font-weight-medium);
    letter-spacing: -0.09px;
    line-height: 1.45;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.acting-coach-primary-btn:hover {
    opacity: 0.92;
}

.acting-coach-btn-icon {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 18px;
    line-height: 1;
    --fill-0: #c5013e;
}

.acting-coach-btn-icon img {
    width: 16px;
    height: 26px;
    display: block;
}

.acting-coach-phone-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 0;
}

.acting-coach-phone-stack {
    width: 100%;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.acting-coach-phone-wrap {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 8px;
    background: transparent;
}

.acting-coach-phone {
    width: 300px;
    height: 435px;
    overflow: hidden;
    margin: 0;
    background: transparent;
}

.acting-coach-phone img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.acting-coach-callout {
    position: absolute;
    top: 150px;
    font-family: var(--font-nunito);
    font-size: 15px;
    font-weight: var(--font-weight-medium);
    letter-spacing: -0.075px;
    line-height: 18px;
    color: #828b94;
    white-space: nowrap;
}

.acting-coach-callout-left {
    left: 0;
    transform: translateX(-40%);
    text-align: right;
}

.acting-coach-callout-right {
    right: 0;
    transform: translateX(40%);
    text-align: left;
}

.acting-coach-divider {
    width: 100%;
    max-width: 650px;
    height: 1px;
    background: #ffffff;
}

.acting-coach-categories {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    width: 100%;
}

.acting-coach-category-pill {
    width: 555px;
    max-width: 100%;
    display: flex;
    align-items: center;
    padding: 4px;
    border-radius: 80px;
    background-color: #700000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition-property: background-color;
    transition-duration: 0.2s;
    transition-timing-function: ease;
    transition-delay: 0s;
    will-change: background-color;
}

.acting-coach-category-pill.is-books {
    background-color: #2229a1;
}

.acting-coach-category-pill.is-games {
    background-color: #005340;
}

.acting-coach-category-pill.is-your-own {
    background-color: #b27300;
}

.acting-coach-category {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 72px;
    transition: color 0.2s ease;
}

.acting-coach-category-active {
    /* active styling (bg + text color) is theme-specific via .acting-coach-category-pill.is-* */
    transition: background-color 0.2s ease, color 0.2s ease;
}

.acting-coach-category-pill.is-movies .acting-coach-category-active {
    background-color: #b61e3f;
    color: #ffbbc6;
}

.acting-coach-category-pill.is-books .acting-coach-category-active {
    background-color: #4c4ac7;
    color: #b3deff;
}

.acting-coach-category-pill.is-games .acting-coach-category-active {
    background-color: #027368;
    color: #8affc1;
}

.acting-coach-category-pill.is-your-own .acting-coach-category-active {
    background-color: #e0950c;
    color: #fff0d4;
}

.acting-coach-category-icon {
    display: inline-flex;
    width: 40px;
    height: 40px;
}

.acting-coach-category-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.acting-coach-category-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.acting-coach-category-icon svg path {
    transition: fill 0.2s ease;
}

/* Tab icon colors (SVGs use `fill="var(--fill-0, ...)"`) */
.acting-coach-category[data-category="movies"]:not(.acting-coach-category-active) .acting-coach-category-icon {
    --fill-0: rgba(255, 255, 255, 0.9);
}

.acting-coach-category[data-category="movies"].acting-coach-category-active .acting-coach-category-icon {
    --fill-0: #FFBBC6;
}

/* svg icons for these tabs have fill-opacity=0.9, so use solid hex without alpha */
.acting-coach-category[data-category="books"].acting-coach-category-active .acting-coach-category-icon {
    --fill-0: #b3deff;
}
.acting-coach-category[data-category="books"]:not(.acting-coach-category-active) .acting-coach-category-icon {
    --fill-0: #ffffff;
}

.acting-coach-category[data-category="games"].acting-coach-category-active .acting-coach-category-icon {
    --fill-0: #8affc1;
}
.acting-coach-category[data-category="games"]:not(.acting-coach-category-active) .acting-coach-category-icon {
    --fill-0: #ffffff;
}

.acting-coach-category[data-category="your-own"].acting-coach-category-active .acting-coach-category-icon {
    --fill-0: #fff0d4;
}
.acting-coach-category[data-category="your-own"]:not(.acting-coach-category-active) .acting-coach-category-icon {
    --fill-0: #ffffff;
}

.acting-coach-category-label {
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: var(--font-weight-medium);
    letter-spacing: -0.065px;
    line-height: 16px;
}

.acting-coach-categories-hint {
    font-family: var(--font-nunito);
    font-size: 15px;
    font-weight: var(--font-weight-medium);
    letter-spacing: -0.075px;
    line-height: 36px;
    color: #828b94;
    text-align: center;
    margin: 0;
}

.acting-coach-testimonials {
    width: 100%;
    padding-bottom: 40px;
}

.acting-coach-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.acting-coach-testimonial {
    background: #f5f7fb;
    border: 0.5px solid var(--border, #b8cadb);
    border-radius: 32px;
    padding: 24px;
    box-sizing: border-box;
    overflow: clip;
    height: 272px;
}

.acting-coach-testimonial--big {
    grid-column: 1 / span 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.acting-coach-testimonial-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.acting-coach-testimonial-badge {
    background: #c4013e;
    width: 48px;
    height: 48px;
    border-radius: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.acting-coach-testimonial-badge img {
    width: 24px;
    height: 24px;
    display: block;
}

.acting-coach-testimonial-title {
    margin: 0;
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: var(--font-weight-medium);
    line-height: 32px;
    letter-spacing: -0.3px;
    color: var(--text-primary, #061b31);
    text-align: left;
}

.acting-coach-testimonial-body {
    font-family: var(--font-nunito);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    line-height: 24px;
    letter-spacing: -0.075px;
    color: var(--text-primary, #061b31);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.acting-coach-testimonial-body p {
    margin: 0;
}

.acting-coach-testimonial--logo {
    grid-column: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.acting-coach-testimonial-logo-wrap {
    width: 160px;
    height: 160px;
    display: block;
}

.acting-coach-testimonial-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .acting-coach-landing {
        padding-top: 64px;
    }

    .acting-coach-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .acting-coach-testimonial--big,
    .acting-coach-testimonial--logo {
        grid-column: auto;
    }
}

.acting-coach-story {
    margin-top: 120px;
    padding-bottom: 40px;
}

.acting-coach-story-inner {
    width: 100%;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.acting-coach-story-title {
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: var(--font-weight-semibold);
    line-height: 32px;
    letter-spacing: -0.12px;
    color: #061b31;
    margin: 0;
}

.acting-coach-logo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    display: block;
}

.acting-coach-story-body {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: var(--font-weight-normal);
    line-height: 24px;
    letter-spacing: -0.1px;
    color: #061b31;
    margin: 0;
}

@media (max-width: 900px) {
    .acting-coach-landing {
        padding-top: 64px;
    }

    .acting-coach-callout-left,
    .acting-coach-callout-right {
        display: none;
    }
}

.portfolio-card {
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: pointer;
    overflow: hidden;
}

.portfolio-card-image {
    width: 100%;
    height: auto;
    margin-bottom: 12px;
    display: block;
}

.portfolio-card-title {
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: var(--font-weight-medium);
    line-height: 28px;
    letter-spacing: -0.4px;
    color: var(--text-primary);
    margin: 0;
}

.portfolio-card-meta {
    font-family: var(--font-nunito);
    font-size: 14px;
    line-height: 20px;
    color: var(--text-secondary);
    margin: 0;
}

.portfolio-card-body {
    font-family: var(--font-nunito);
    font-size: 15px;
    line-height: 24px;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.portfolio-card-button {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 9px;
    background-color: var(--hero-primary);
    color: var(--text-on-dark);
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    letter-spacing: -0.08px;
    line-height: 1.45;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.portfolio-card-button:hover {
    opacity: 0.9;
}

.portfolio-note {
    margin-top: 8px;
    margin-bottom: 32px;
}

.portfolio-note p {
    font-family: var(--font-nunito);
    font-size: 14px;
    line-height: 20px;
    color: var(--text-secondary);
    margin: 0;
}

.portfolio-note a {
    color: var(--hero-primary);
    text-decoration: underline;
}

/* Password panel */
.portfolio-password-panel {
    display: none;
    margin-bottom: 40px;
}

.portfolio-password-panel.is-visible {
    display: block;
}

.portfolio-password-inner {
    max-width: 360px;
    margin: 40px auto 0 auto;
    text-align: center;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.portfolio-password-icon {
    font-size: 28px;
}

.portfolio-password-title {
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: var(--font-weight-medium);
    line-height: 28px;
    letter-spacing: -0.4px;
    color: var(--text-primary);
    margin: 8px 0 0 0;
}

.portfolio-password-text {
    font-family: var(--font-nunito);
    font-size: 14px;
    line-height: 20px;
    color: var(--text-secondary);
    margin: 0;
}

.portfolio-password-form {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.portfolio-password-label {
    font-family: var(--font-nunito);
    font-size: 14px;
    line-height: 20px;
    color: var(--text-primary);
}

.portfolio-password-input {
    width: 312px;
    max-width: 100%;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid var(--border-input);
    font-family: var(--font-family);
    font-size: 14px;
    text-align: center;
    background-color: #ffffff;
}

.portfolio-password-error {
    min-height: 18px;
    font-family: var(--font-nunito);
    font-size: 13px;
    line-height: 18px;
    color: #b3261e;
    margin: 0;
}

.portfolio-password-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.portfolio-password-submit {
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    background-color: var(--hero-primary);
    color: var(--text-on-dark);
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    width: 100%;
}

.portfolio-password-cancel {
    padding: 8px 16px;
    border-radius: 9px;
    border: 1px solid var(--border-primary);
    background-color: transparent;
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.portfolio-password-cancel {
    padding: 8px 16px;
    border-radius: 9px;
    border: 1px solid var(--border-primary);
    background-color: transparent;
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
}

/* Case study iframe wrapper */
.portfolio-case-iframe {
    margin-top: 0;
    width: 100%;
    min-height: calc(100vh - 60px);
    height: 100%;
    border: none;
}

@media (max-width: 799px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.portfolio-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    gap: 0;
    padding: 0;
}

.portfolio-back-button-container {
    width: 100%;
    background-color: var(--bg-primary);
}

.portfolio-back-button {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
    padding: 24px;
}

.portfolio-back-button-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    line-height: 20px;
    letter-spacing: -0.07px;
}

/* Vigor page – Figma node 161:1094 */
body.vigor-page {
    background: #ffffff;
    margin-bottom: 0;
}

.vigor-main {
    width: 100%;
}

.vigor-landing {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 24px 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vigor-hero {
    width: 100%;
    border: 0.5px solid #b8cadb;
    border-radius: 32px;
    padding: 48px 48px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    /* Match Figma node 161:1098 radial falloff (centered low-mid). */
    background: radial-gradient(35% 53% at 50.5% 78.5%, #168203 0%, #126304 25%, #0e4504 50%, #092605 75%, #071705 87.5%, #050805 100%);
}

.vigor-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    color: #ffffff;
}

.vigor-hero-content h1 {
    font-family: var(--font-family);
    font-size: 24px;
    line-height: 32px;
    font-weight: var(--font-weight-semibold);
    letter-spacing: -0.12px;
    margin: 0;
}

.vigor-hero-content p {
    font-family: var(--font-family);
    font-size: 18px;
    line-height: 24px;
    font-weight: var(--font-weight-normal);
    letter-spacing: -0.09px;
    margin: 0;
}

.vigor-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 9px;
    border: 0.5px solid #53f01a;
    background: #050805;
    color: #53f01a;
    text-decoration: none;
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: var(--font-weight-medium);
    line-height: 1.45;
    letter-spacing: -0.09px;
    transition: opacity 0.2s ease;
}

.vigor-download-btn:hover {
    opacity: 0.92;
}

.vigor-download-btn img {
    width: 16px;
    height: 26px;
    display: block;
}

.vigor-hero-phone-wrap {
    display: flex;
    justify-content: center;
}

.vigor-hero-phone {
    width: 300px;
    height: 358px;
    object-fit: cover;
    display: block;
}

.vigor-features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: 272px 406px;
    gap: 24px;
}

.vigor-card,
.vigor-watch-card {
    background: #f5f7fb;
    border: 0.5px solid #b8cadb;
    border-radius: 32px;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.vigor-card {
    justify-content: flex-start;
    gap: 12px;
}

.vigor-card-copy {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vigor-card-wide {
    grid-column: span 2;
}

.vigor-card-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 64px;
    background: #1c4c03;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vigor-card-icon {
    width: 24px;
    height: 24px;
    display: block;
}

.vigor-card h3 {
    margin: 0;
    font-family: var(--font-family);
    font-size: 20px;
    line-height: 32px;
    font-weight: var(--font-weight-medium);
    letter-spacing: -0.4px;
    color: #061b31;
}

.vigor-card p {
    margin: 0;
    font-family: var(--font-nunito);
    font-size: 16px;
    line-height: 24px;
    font-weight: var(--font-weight-medium);
    color: #061b31;
}

.vigor-watch-card {
    /* Figma node 163:16235 radialGradient matrix(0 -18.842 25.791 0 154.67 224.9) on 309.33x406 card. */
    background: radial-gradient(83.4% 46.4% at 50% 55.4%, #168203 0%, #126304 25%, #0e4504 50%, #092605 75%, #071705 87.5%, #050805 100%);
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.vigor-watch-card img {
    width: 215px;
    height: 358px;
    object-fit: cover;
    display: block;
}

.vigor-story {
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vigor-story h2 {
    margin: 0;
    font-family: var(--font-family);
    font-size: 32px;
    line-height: 40px;
    font-weight: var(--font-weight-medium);
    letter-spacing: -0.16px;
    color: #061b31;
}

.vigor-story p {
    margin: 0;
    font-family: var(--font-nunito);
    font-size: 16px;
    line-height: 24px;
    font-weight: var(--font-weight-medium);
    color: #061b31;
}

.vigor-bottom-cards {
    display: flex;
    gap: 24px;
    width: 100%;
}

.vigor-bottom-card {
    flex: 1;
    background: #f5f7fb;
    border: 0.5px solid #b8cadb;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vigor-bottom-card h3 {
    margin: 0;
    font-family: var(--font-nunito);
    font-size: 16px;
    line-height: 24px;
    font-weight: var(--font-weight-bold);
    color: #000000;
}

.vigor-bottom-card p {
    margin: 0;
    font-family: var(--font-nunito);
    font-size: 16px;
    line-height: 24px;
    font-weight: var(--font-weight-medium);
    color: #000000;
}

@media (max-width: 900px) {
    .vigor-hero {
        padding: 36px 24px 0;
    }

    .vigor-features-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .vigor-card,
    .vigor-watch-card {
        min-height: 272px;
    }

    .vigor-card-wide {
        grid-column: auto;
    }

    .vigor-bottom-cards {
        flex-direction: column;
    }
}

/* WordJam page – Figma node 176:34747 */
body.wordjam-page {
    background: var(--color-surface-off-white);
    margin-bottom: 0;
}

.wordjam-main {
    width: 100%;
}

.wordjam-landing {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 24px 24px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wordjam-hero {
    width: 100%;
    border: 0.5px solid var(--hero-border);
    border-radius: 32px;
    padding: 48px 48px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    /* Matches the figma radial falloff used in the hero background. */
    background: radial-gradient(35% 53% at 50.5% 78.5%, rgba(52,52,79,1) 0%, rgba(38,38,59,1) 50%, rgba(24,24,38,1) 100%);
}

.wordjam-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    color: #ffffff;
    text-align: center;
}

.wordjam-hero-copy h1 {
    font-family: var(--font-family);
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    letter-spacing: -0.12px;
    margin: 0;
}

.wordjam-hero-subhead {
    display: flex;
    flex-direction: column;
    gap: 0;
    font-family: var(--font-family);
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: -0.09px;
}

.wordjam-hero-subhead p {
    margin: 0;
}

.wordjam-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 9px;
    background: #181826;
    border: 0.5px solid var(--chip-yellow, #f5c139);
    color: #f5c139;
    text-decoration: none;
    font-family: var(--font-family);
    font-size: 18px;
    line-height: 1.45;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.wordjam-download-btn:hover {
    opacity: 0.92;
}

.wordjam-download-icon {
    width: 16px;
    height: 26px;
    display: block;
}

.wordjam-hero-phone {
    width: 300px;
    height: 416px;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

.wordjam-phone-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wordjam-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    /* Figma node 176:34761 uses 24px gaps with fixed row heights. */
    grid-template-rows: 272px 316px 248px;
    gap: 24px;
    align-items: stretch;
}

.wordjam-card,
.wordjam-sim,
.wordjam-quickplay {
    border-radius: 32px;
}

.wordjam-card {
    background: var(--color-page);
    border: 0.5px solid var(--hero-border);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: clip;
    min-height: 248px;
}

.wordjam-card-icon {
    background: #181826;
    width: 48px;
    height: 48px;
    border-radius: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wordjam-card-icon img {
    width: 24px;
    height: 24px;
    display: block;
}

.wordjam-card-copy {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wordjam-card-copy h3 {
    font-family: var(--font-family);
    font-size: 20px;
    line-height: 32px;
    font-weight: 500;
    letter-spacing: -0.3px;
    color: #061b31;
    margin: 0;
}

.wordjam-card-copy p {
    font-family: var(--font-nunito);
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #061b31;
    margin: 0;
}

.wordjam-card--progression {
    grid-column: 1 / span 2;
    grid-row: 1;
    min-height: 272px;
}

.wordjam-card--endless {
    grid-column: 2 / span 2;
    grid-row: 2;
    min-height: 316px;
}

.wordjam-card--feel {
    grid-column: 1;
    grid-row: 3;
    min-height: 248px;
}

.wordjam-card--own-risk {
    grid-column: 2;
    grid-row: 3;
    min-height: 248px;
}

.wordjam-card--play-way {
    grid-column: 3;
    grid-row: 3;
    min-height: 248px;
}

.wordjam-sim {
    background: var(--color-page);
    border: 0.5px solid var(--hero-border);
    overflow: hidden;
    position: relative;
}

.wordjam-sim--top-right {
    grid-column: 3;
    grid-row: 1;
    min-height: 272px;
}

.wordjam-sim--middle-left {
    grid-column: 1;
    grid-row: 2;
    min-height: 316px;
}

.wordjam-sim-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wordjam-sim--top-right .wordjam-sim-image {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wordjam-sim--middle-left .wordjam-sim-image {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wordjam-quickplay {
    grid-column: 1;
    grid-row: 2;
    background: #181826;
    border: 0.5px solid var(--hero-border);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 316px;
}

.wordjam-quickplay-heading {
    font-family: var(--font-family);
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #dfe7ff;
    margin: 0;
}

.wordjam-quickplay-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wordjam-quickplay-option {
    width: 100%;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 0.5px solid transparent;
    color: #d0d7ff;
    font-family: var(--font-nunito);
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    padding: 10px 12px;
    text-align: left;
    cursor: default;
}

.wordjam-quickplay-option.is-active {
    background: #393bb4;
    border-color: #393bb4;
    color: #ffffff;
}

.wordjam-footer {
    max-width: 1024px;
    margin: 0 auto;
    background: var(--color-surface-off-white);
    border-top: 0.5px solid var(--hero-border);
    padding: 48px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
}

.wordjam-footer-brand {
    font-family: var(--font-family);
    font-size: 24px;
    line-height: 1.45;
    font-weight: 600;
    letter-spacing: -0.48px;
    color: var(--text-primary);
    text-transform: lowercase;
    white-space: nowrap;
}

.wordjam-footer-social {
    display: flex;
    gap: 24px;
    align-items: center;
}

.wordjam-footer-social-btn {
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.wordjam-footer-social-btn img {
    width: 24px;
    height: 24px;
    display: block;
}

/* Site footer (Figma node 166:18378) */
.site-footer {
    width: 100%;
    background: var(--color-surface-off-white);
    border-top: 0.5px solid var(--hero-border);
    margin-top: 32px;
}

.site-footer-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 48px 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 56px;
}

.site-footer-brand {
    font-family: var(--font-family);
    font-size: 20px;
    line-height: 1.45;
    font-weight: 500;
    letter-spacing: -0.48px;
    color: var(--text-primary);
    text-transform: lowercase;
    white-space: nowrap;
}

.site-footer-social {
    display: flex;
    gap: 24px;
    align-items: center;
}

.site-footer-social-btn {
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.site-footer-social-btn img {
    width: 24px;
    height: 24px;
    display: block;
}

@media (max-width: 900px) {
    .wordjam-hero {
        padding: 36px 24px 0;
        gap: 24px;
    }

    .wordjam-hero-copy {
        padding-bottom: 0;
    }

    .wordjam-hero-phone {
        width: 240px;
        height: 332px;
    }

    .wordjam-phone-image {
        height: 140%;
    }

    .wordjam-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .wordjam-card--progression,
    .wordjam-card--endless,
    .wordjam-card--feel,
    .wordjam-card--own-risk,
    .wordjam-card--play-way,
    .wordjam-sim--top-right,
    .wordjam-sim--middle-left {
        grid-column: auto;
        grid-row: auto;
        min-height: auto;
    }

    .wordjam-footer,
    .site-footer-inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }

    .wordjam-footer-social,
    .site-footer-social {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 16px;
    }
}