/* Marketing Landing Page Styles */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.marketing-body {
    font-size: 16px;
}

/* Header matching the original style */
header {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    position: relative;
}

.logo-section {
    display: flex;
    flex-direction: column;
}

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

.logo-link:hover {
    text-decoration: none;
    color: inherit;
}

.logo {
    font-size: 44px;
    font-weight: 600;
    color: #333;
}

.tagline {
    font-size: 18px;
    color: #888;
    font-weight: 400;
    margin-top: 2px;
}

nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #666;
    font-size: 20px;
    position: relative;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #333;
    text-decoration: none;
}

nav a.nav-link {
    padding: 0;
    background: none;
    border: none;
    font-size: 18px;
    color: #666;
}

nav a.nav-link:hover {
    color: #333;
    background: none;
}

nav a.header-trial-cta {
    margin: 0;
    padding: 12px 22px;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

nav a.header-login-link {
    font-size: 16px;
}

nav a.dropdown::after {
    content: '▼';
    font-size: 16px;
    margin-left: 5px;
    color: #999;
}

/* Mobile Header Styles */
@media (max-width: 768px) {
    header {
        padding: 16px 20px;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .logo-section {
        text-align: center;
    }

    .logo {
        font-size: 32px;
    }

    .tagline {
        font-size: 16px;
    }

    nav {
        width: 100%;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    nav a.nav-link {
        font-size: 16px;
    }

    nav a.header-trial-cta {
        padding: 11px 18px;
        font-size: 15px;
    }

    .cta-button {
        padding: 12px 28px;
        font-size: 16px;
    }

    .hero {
        padding: 64px 16px 24px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 17px;
    }

    .demo-section,
    .philosophy,
    .fit-comparison,
    .trust-section,
    .pricing {
        padding: 64px 16px;
    }

    .demo-section h2,
    .features h2,
    .fit-comparison h2,
    .trust-section h2,
    .philosophy h2,
    .pricing h2 {
        font-size: 30px;
    }

    .fit-comparison-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .fit-panel,
    .trust-item {
        padding: 22px;
    }

    .hero-trial-cta,
    .hero-demo-cta {
        width: 100%;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

}

/* Hero Section */
.hero {
    text-align: center;
    padding: 96px 24px 32px;
    max-width: 1050px;
    margin: 0 auto;
    border-bottom: none;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-kicker {
    margin-bottom: 14px;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

.cta-buttons {
    margin-top: 40px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #333;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: background 0.3s ease;
    margin: 10px;
}

.hero-trial-cta {
    padding: 20px 54px;
    font-size: 19px;
    font-weight: 700;
}

.hero-trial-note {
    margin: 8px 0 0;
    font-size: 16px;
    color: #6b7280;
}

.hero-product-proof {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 0;
    align-items: stretch;
    margin-top: 64px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
    text-align: left;
}

.hero-product-proof-media {
    background: #f8fafc;
}

.hero-product-proof-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.hero-product-proof-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px;
}

.hero-product-proof-copy h2 {
    margin: 8px 0 12px;
    color: #0f172a;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.12;
}

.hero-product-proof-copy p {
    margin: 0;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.65;
}

.hero-product-proof-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
}

.hero-product-proof-list span {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 12px;
    color: #0f172a;
    background: #f8fafc;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.hero-demo-cta {
    padding: 20px 32px;
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .hero-product-proof {
        grid-template-columns: 1fr;
        margin-top: 48px;
    }

    .hero-product-proof-media img {
        min-height: 260px;
    }

    .hero-product-proof-copy {
        padding: 28px;
    }

    .hero-product-proof-copy h2 {
        font-size: 28px;
    }

    .hero-product-proof-list {
        grid-template-columns: 1fr;
    }
}

.cta-button:hover {
    background: #555;
    text-decoration: none;
    color: #fff;
}

.cta-button.secondary {
    background: transparent;
    color: #333;
    border: 1px solid #ddd;
}

.cta-button.secondary:hover {
    border-color: #333;
    color: #333;
    text-decoration: none;
}

/* Homepage Essentials */
.homepage-essentials {
    padding: 24px 24px 80px;
    background: #fff;
    border-bottom: 1px solid #f3f4f6;
}

.homepage-essentials-container {
    max-width: 1120px;
    margin: 0 auto;
}

.homepage-essentials-intro {
    max-width: 660px;
    margin: 0 auto;
    text-align: center;
}

.homepage-essentials-intro h2 {
    margin: 8px 0 12px;
    color: #0f172a;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.15;
}

.homepage-essentials-intro p {
    margin: 0;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.65;
}

.homepage-essentials-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 36px;
}

.homepage-essential-card {
    display: flex;
    min-height: 188px;
    flex-direction: column;
    gap: 10px;
    padding: 22px;
    color: inherit;
    text-align: left;
    text-decoration: none;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.homepage-essential-card:hover {
    background: #fff;
    border-color: #94a3b8;
    transform: translateY(-2px);
    text-decoration: none;
}

.homepage-essential-kicker {
    color: #475569;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.homepage-essential-title {
    color: #0f172a;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.18;
}

.homepage-essential-copy {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .homepage-essentials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .homepage-essentials {
        padding: 12px 16px 64px;
    }

    .homepage-essentials-intro h2 {
        font-size: 28px;
    }

    .homepage-essentials-grid {
        grid-template-columns: 1fr;
        margin-top: 28px;
    }

    .homepage-essential-card {
        min-height: auto;
    }
}

/* Fit Comparison */
.fit-comparison {
    padding: 72px 24px 88px;
    background: #fff;
    border-bottom: 1px solid #f3f4f6;
}

.fit-comparison-header,
.trust-header {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
}

.fit-comparison h2,
.trust-section h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 14px;
}

.fit-comparison-header p,
.trust-header p {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.6;
}

.fit-comparison-grid,
.trust-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.fit-panel,
.trust-item {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px;
}

.fit-panel-muted {
    background: #fff;
}

.fit-panel h3,
.trust-item h3 {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.fit-panel ul,
.pricing-proof-list {
    list-style: none;
}

.fit-panel li,
.pricing-proof-list li {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.6;
    padding: 8px 0 8px 22px;
    position: relative;
}

.fit-panel li::before,
.pricing-proof-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0f172a;
}

.fit-panel-muted li::before {
    background: #9ca3af;
}

/* Demo Section */
.demo-section {
    padding: 96px 24px;
    background: #fff;
    border-bottom: 1px solid #f3f4f6;
}

.demo-section h2 {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 18px;
}

.demo-proof-layout {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.78fr 1fr;
    gap: 48px;
    align-items: center;
}

.demo-proof-copy {
    text-align: left;
}

.demo-proof-copy p {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

.demo-proof-list {
    list-style: none;
    margin: 28px 0 32px;
}

.demo-proof-list li {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.6;
    padding: 8px 0 8px 22px;
    position: relative;
}

.demo-proof-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0f172a;
}

.demo-proof-media {
    min-width: 0;
}

.demo-proof-caption {
    margin: 14px 0 0;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
}

.demo-url-line {
    font-size: 16px;
    color: #6b7280;
    margin-top: 0;
    margin-bottom: 0;
}

.demo-live-example-button {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
}

.demo-url-link {
    color: #6b7280;
    text-decoration: none;
}

.demo-url-link:hover {
    color: #0f172a;
    text-decoration: underline;
}

.demo-gallery {
    max-width: 760px;
    margin: 0 auto;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

@media (max-width: 768px) {
    .demo-proof-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .demo-proof-copy {
        text-align: center;
    }

    .demo-proof-list {
        text-align: left;
        margin: 24px auto 28px;
        max-width: 420px;
    }

    .demo-live-example-button {
        width: 100%;
        max-width: 360px;
    }
}

.demo-header {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.demo-logo {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.demo-tagline {
    font-size: 16px;
    color: #888;
    margin-top: 2px;
}

.demo-nav {
    display: flex;
    gap: 25px;
}

.demo-nav span {
    color: #666;
    font-size: 16px;
}

.demo-content {
    padding: 40px;
    text-align: center;
}

.demo-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.demo-image {
    width: 100%;
    height: 400px;
    background-image: url(/assets/demo-2fa27bc31b5c2ff20230ea059d5a4c91d6e30f2d4ed97d9a1381c4da5192bb88.jpg);
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* Features Section */
.features {
    padding: 96px 24px;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid #f3f4f6;
}

.features h2 {
    text-align: center;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 56px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

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

.feature {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    text-align: left;
}

.feature h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.feature p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

.features-more {
    text-align: center;
    margin-top: 40px;
}

.features-more-link {
    font-size: 16px;
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
}

.features-more-link:hover {
    color: #0f172a;
}

/* Trial Path */
.trial-path-section {
    padding: 96px 24px;
    background: #fff;
    border-bottom: 1px solid #f3f4f6;
}

.trial-path-container {
    max-width: 1120px;
    margin: 0 auto;
}

.trial-path-intro {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.trial-path-intro h2 {
    font-size: 44px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 16px;
}

.trial-path-intro p {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

.trial-path-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 56px;
}

.trial-path-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px;
    text-align: left;
}

.trial-path-step {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #0f172a;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 18px;
}

.trial-path-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 10px;
}

.trial-path-card p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.trial-path-action {
    margin-top: 42px;
    text-align: center;
}

.trial-path-cta {
    margin-bottom: 12px;
}

.trial-path-action p {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
}

@media (max-width: 768px) {
    .trial-path-section {
        padding: 64px 16px;
    }

    .trial-path-intro h2 {
        font-size: 30px;
    }

    .trial-path-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }
}

/* Buying Intent Links */
.intent-links-section {
    padding: 96px 24px;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.intent-links-container {
    max-width: 1120px;
    margin: 0 auto;
}

.intent-links-intro {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.intent-links-intro h2 {
    font-size: 44px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 16px;
}

.intent-links-intro p {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

.intent-links-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 56px;
}

.intent-link-card {
    display: flex;
    min-height: 220px;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    color: inherit;
    text-align: left;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.intent-link-card:hover {
    border-color: #94a3b8;
    transform: translateY(-2px);
}

.intent-link-kicker {
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
}

.intent-link-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
}

.intent-link-copy {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .intent-links-section {
        padding: 64px 16px;
    }

    .intent-links-intro h2 {
        font-size: 30px;
    }

    .intent-links-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .intent-link-card {
        min-height: auto;
    }
}

/* Pricing Section */
.pricing {
    padding: 96px 24px;
    background: #fff;
    border-bottom: 1px solid #f3f4f6;
}

.pricing h2 {
    text-align: center;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 56px;
}

.pricing-summary {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

.pricing-card {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-align: center;
    width: 100%;
}

.pricing-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.price {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin-bottom: 20px;
}

.price span {
    font-size: 16px;
    color: #6b7280;
    font-weight: 400;
    letter-spacing: 0;
}

.pricing-copy {
    font-size: 20px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.pricing-proof-list {
    margin: 28px auto 0;
    max-width: 520px;
    text-align: left;
}

.pricing-decision-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.75fr);
    gap: 24px;
    align-items: center;
    margin-top: 36px;
    padding: 28px;
    text-align: left;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.pricing-decision-kicker {
    display: block;
    color: #475569;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.pricing-decision-copy h3 {
    margin: 8px 0 10px;
    color: #0f172a;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.15;
}

.pricing-decision-copy p {
    margin: 0;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
}

.pricing-decision-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.pricing-decision-cta {
    width: 100%;
    margin: 0;
    padding: 15px 20px;
    text-align: center;
}

.pricing-decision-demo-link {
    display: block;
    padding: 13px 16px;
    color: #0f172a;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
}

.pricing-decision-demo-link:hover {
    color: #333;
    border-color: #94a3b8;
    text-decoration: none;
}

@media (max-width: 700px) {
    .pricing-decision-panel {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .pricing-decision-copy {
        text-align: center;
    }

    .pricing-decision-copy h3 {
        font-size: 24px;
    }
}

/* Trust Section */
.trust-section {
    padding: 96px 24px;
    background: #fff;
    border-bottom: 1px solid #f3f4f6;
}

.trust-grid {
    grid-template-columns: repeat(4, 1fr);
}

.trust-item p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
}

.trust-item-link {
    display: inline-block;
    margin-top: 16px;
    color: #0f172a;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.trust-item-link:hover {
    color: #374151;
}

/* About Page */
.about-hero {
    max-width: 900px;
    margin: 0 auto;
    padding: 96px 24px 56px;
    text-align: center;
}

.about-hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 20px;
}

.about-hero p {
    max-width: 680px;
    margin: 0 auto;
    color: #6b7280;
    font-size: 19px;
    line-height: 1.7;
}

.about-story-section,
.about-principles-section {
    padding: 80px 24px;
    border-top: 1px solid #f3f4f6;
}

.about-story-layout {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 48px;
    align-items: start;
}

.about-story-copy h2,
.about-proof-panel h2,
.about-principles-intro h2 {
    color: #0f172a;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
}

.about-story-copy p {
    color: #4b5563;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-proof-panel,
.about-principle {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 28px;
}

.about-proof-panel h2 {
    font-size: 24px;
}

.about-proof-panel ul {
    list-style: none;
}

.about-proof-panel li {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.6;
    padding: 8px 0 8px 22px;
    position: relative;
}

.about-proof-panel li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0f172a;
}

.about-principles-section {
    background: #f8fafc;
}

.about-principles-container {
    max-width: 1120px;
    margin: 0 auto;
}

.about-principles-intro {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.about-principles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.about-principle {
    background: #fff;
}

.about-principle h3 {
    color: #0f172a;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 10px;
}

.about-principle p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .about-hero {
        padding: 64px 16px 40px;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .about-hero p {
        font-size: 17px;
    }

    .about-story-section,
    .about-principles-section {
        padding: 64px 16px;
    }

    .about-story-layout,
    .about-principles-grid {
        grid-template-columns: 1fr;
    }

    .about-story-copy h2,
    .about-principles-intro h2 {
        font-size: 30px;
    }
}

/* Homepage Quick Answers */
.homepage-faq-section {
    padding: 96px 24px;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.homepage-faq-container {
    max-width: 1120px;
    margin: 0 auto;
}

.homepage-faq-intro {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.homepage-faq-intro h2 {
    font-size: 44px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 16px;
}

.homepage-faq-intro p {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

.homepage-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 56px;
}

.homepage-faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 28px;
}

.homepage-faq-item h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 10px;
}

.homepage-faq-item p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.homepage-faq-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 42px;
    flex-wrap: wrap;
}

.homepage-faq-secondary-link {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
}

.homepage-faq-secondary-link:hover {
    color: #374151;
}

@media (max-width: 768px) {
    .homepage-faq-section {
        padding: 64px 16px;
    }

    .homepage-faq-intro h2 {
        font-size: 30px;
    }

    .homepage-faq-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .homepage-faq-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .homepage-faq-actions .cta-button,
    .homepage-faq-secondary-link {
        width: 100%;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    padding: 8px 0;
    color: #6b7280;
    border-bottom: 1px solid #f3f4f6;
    font-size: 16px;
}

/* Footer */
footer {
    padding: 60px 40px 40px;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-branding {
    font-size: 16px;
    color: #888;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 16px;
}

.footer-links a:hover {
    color: #333;
    text-decoration: none;
}

/* Auth Form Styles */
.auth-section {
    padding: 80px 40px;
    max-width: 500px;
    margin: 0 auto;
}

.auth-section.signup-section {
    max-width: 1040px;
}

.auth-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
}

.signup-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
    gap: 40px;
    align-items: center;
}

.signup-proof h2 {
    text-align: left;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 18px;
}

.signup-proof p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 26px;
}

.signup-proof-list {
    list-style: none;
    margin-bottom: 28px;
}

.signup-proof-list li {
    color: #374151;
    font-size: 16px;
    line-height: 1.6;
    padding: 8px 0 8px 22px;
    position: relative;
}

.signup-proof-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0f172a;
}

.signup-price-note {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 18px 20px;
    background: #f8fafc;
}

.signup-price-note strong,
.signup-price-note span {
    display: block;
}

.signup-price-note strong {
    color: #0f172a;
    font-size: 18px;
    margin-bottom: 4px;
}

.signup-price-note span {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.5;
}

.auth-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.signup-card h3 {
    color: #0f172a;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s ease;
    background: #fff;
}

.form-control:focus {
    outline: none;
    border-color: #333;
    box-shadow: 0 0 0 2px rgba(51, 51, 51, 0.1);
}

.form-control::placeholder {
    color: #999;
}

.form-text {
    font-size: 16px;
    color: #666;
    margin-top: 4px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    width: 100%;
}

.btn-primary {
    background: #333;
    color: #fff;
}

.btn-primary:hover {
    background: #555;
    color: #fff;
    text-decoration: none;
}

.btn-outline-info {
    background: transparent;
    color: #17a2b8;
    border: 1px solid #17a2b8;
}

.btn-outline-info:hover {
    background: #17a2b8;
    color: #fff;
    text-decoration: none;
}

.btn-outline-secondary {
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
}

.btn-outline-secondary:hover {
    background: #666;
    color: #fff;
    text-decoration: none;
    border-color: #666;
}


.inline-form {
  display: flex;
  flex: 1;
  margin: 0;
  align-items: stretch;
}
.alert {
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 16px;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.auth-links {
    text-align: center;
    margin-top: 30px;
}

.auth-links p {
    margin: 10px 0;
    font-size: 16px;
    color: #666;
}

.auth-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.auth-links a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .auth-section.signup-section {
        padding: 64px 20px;
    }

    .signup-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .signup-proof {
        text-align: center;
    }

    .signup-proof h2 {
        text-align: center;
        font-size: 32px;
    }

    .signup-proof-list {
        text-align: left;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 24px;
    }

    .auth-card {
        padding: 28px;
    }
}

.text-center {
    text-align: center;
}

.mb-3 {
    margin-bottom: 20px;
}

.d-grid {
    display: grid;
}

/* Dashboard specific styles */
.dashboard-body {
    background: #f3f4f6;
    color: #0f172a;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.dashboard-header {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 200;
}

.dashboard-header .logo {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.dashboard-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.dashboard-nav .nav-link {
    color: #666;
    font-size: 14px;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.dashboard-nav .nav-link:hover {
    color: #333;
}

.dashboard-nav .nav-boxed {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
}

.dashboard-nav .nav-boxed:hover {
    background: #f8f9fa;
    border-color: #ccc;
}

.dashboard-nav .nav-active {
    font-weight: 600;
    color: #333;
}

.dashboard-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: left;
    color: #0f172a;
    margin-bottom: 32px;
}

.dashboard-flash {
    margin-bottom: 30px;
}

.welcome-card,
.gallery-card,
.setup-card {
    background: #fff;
    padding: 28px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06), 0 1px 4px rgba(15, 23, 42, 0.04);
    margin-bottom: 20px;
}

.welcome-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #0f172a;
}

.welcome-subtitle {
    font-size: 14px;
    color: #6b7280;
}

.welcome-email {
    font-weight: 500;
    color: #374151;
}

.card-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    color: #0f172a;
}

.status-section {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid #c3e6cb;
    background: #d4edda;
}

.status-section .status-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #28a745;
}

.status-section .status-text {
    font-size: 14px;
    font-weight: 500;
    color: #155724;
}

.status-section.status-warning {
    background: #fff3cd;
    border-color: #ffeeba;
}

.status-section.status-warning .status-icon {
    background: #ffc107;
}

.status-section.status-warning .status-text {
    color: #856404;
}

.status-section.status-error {
    background: #f8d7da;
    border-color: #f5c6cb;
}

.status-section.status-error .status-icon {
    background: #dc3545;
}

.status-section.status-error .status-text {
    color: #721c24;
}

.info-grid {
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 24px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

.info-value {
    font-size: 14px;
    color: #333;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
}

.info-value.info-link {
    text-decoration: none;
    color: #333;
}

.info-value.info-link:hover {
    text-decoration: underline;
    color: #007bff;
}

.status-value.running {
    color: #28a745;
    font-weight: 600;
}

.status-value.warning {
    color: #d97706;
    font-weight: 600;
}

.status-value.error {
    color: #dc3545;
    font-weight: 600;
}

.domain-section {
    margin-top: 24px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.domain-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.domain-heading {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.domain-description {
    margin: 4px 0 0;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.domain-body {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 16px;
}

.domain-empty {
    color: #6c757d;
    font-size: 13px;
    line-height: 1.6;
}

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

.domain-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #ced4da;
    border-radius: 999px;
    padding: 8px 16px;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
    font-size: 14px;
    color: #333;
}

.domain-note {
    font-size: 12px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.domain-feedback {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 500;
}

.domain-feedback.success {
    color: #28a745;
}

.domain-feedback.error {
    color: #dc3545;
}

.domain-status-group {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.domain-status-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.domain-status-label {
    font-size: 13px;
    color: #555;
    min-width: 120px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid transparent;
    text-transform: capitalize;
}

.status-pill--pending {
    background: #fff3cd;
    border-color: #ffeeba;
    color: #856404;
}

.status-pill--active {
    background: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.status-pill--error {
    background: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.status-pill--neutral {
    background: #e2e6ea;
    border-color: #d6d8db;
    color: #495057;
}

.btn-link.subtle {
    font-size: 13px;
    color: #007bff;
    align-self: flex-start;
    padding: 0;
}

.btn-link.subtle:hover {
    text-decoration: underline;
}

.btn-link {
    background: none;
    border: none;
    padding: 0;
    font-size: 14px;
    color: #007bff;
    cursor: pointer;
}

.btn-link:hover {
    text-decoration: underline;
}

.btn-link.danger {
    color: #dc3545;
}

.custom-domain-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 900;
}

.custom-domain-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(520px, calc(100% - 40px));
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    padding: 28px;
    z-index: 910;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    line-height: 1;
}

.modal-title {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.modal-intro {
    font-size: 14px;
    color: #555;
    margin-bottom: 16px;
}

.domain-steps {
    margin: 0 0 20px 18px;
    padding: 0;
    color: #555;
    font-size: 13px;
    line-height: 1.6;
}

.domain-steps code {
    background: #f1f3f5;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
}

.custom-domain-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
}

.custom-domain-input {
    padding: 10px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
}

.custom-domain-input:focus {
    outline: none;
    border-color: #80bdff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.custom-domain-form .form-help {
    font-size: 12px;
    color: #6c757d;
    margin: 0;
}

.form-error {
    font-size: 13px;
    color: #dc3545;
    min-height: 18px;
}

.modal-status {
    font-size: 13px;
    color: #555;
    min-height: 18px;
}

.hidden {
    display: none !important;
}

.gallery-actions {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gallery-manage-form {
    display: block;
}

.gallery-manage-btn {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: #0f172a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    cursor: pointer;
    text-align: center;
    transition: background 0.15s ease;
}

.gallery-manage-btn:hover {
    background: #1e293b;
}

.gallery-visit-link {
    display: block;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
    text-decoration: none;
    padding: 6px 0;
    transition: color 0.15s ease;
}

.gallery-visit-link:hover {
    color: #0f172a;
}

.dashboard-container .btn {
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.dashboard-container .btn-primary {
    background: #28a745;
    color: #fff;
}

.dashboard-container .btn-primary:hover {
    background: #218838;
    color: #fff;
}

.dashboard-container .btn-secondary {
    background: #6c757d;
    color: #fff;
}

.dashboard-container .btn-secondary:hover {
    background: #545b62;
    color: #fff;
}

.dashboard-container .btn-warning {
    background: #ffc107;
    color: #fff;
}

.dashboard-container .btn-warning:hover {
    background: #e0a800;
    color: #fff;
}

.dashboard-container .btn-danger {
    background: #dc3545;
    color: #fff;
}

.dashboard-container .btn-danger:hover {
    background: #c82333;
    color: #fff;
}

.setup-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
}

.setup-form .form-row {
    display: flex;
    gap: 16px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.setup-form .form-field {
    flex: 1;
    min-width: 220px;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    display: block;
    margin-bottom: 8px;
}

.subdomain-input-group {
    display: flex;
    border: 1px solid #ced4da;
    border-radius: 4px;
    overflow: hidden;
}

.subdomain-input {
    flex: 1;
    padding: 8px 12px;
    border: none;
    font-size: 14px;
}

.subdomain-input:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px rgba(0,123,255,0.25);
}

.subdomain-suffix {
    background: #f8f9fa;
    color: #666;
    padding: 8px 12px;
    border-left: 1px solid #ced4da;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.form-help {
    font-size: 12px;
    color: #6c757d;
    margin-top: 8px;
}

.setup-messages .alert {
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .dashboard-header {
        padding: 16px 20px;
        flex-direction: column;
        gap: 16px;
    }

    .dashboard-nav {
        width: 100%;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .dashboard-container {
        padding: 30px 16px;
    }

    .welcome-card,
    .gallery-card,
    .setup-card {
        padding: 24px;
    }

    .dashboard-container .btn {
        width: 100%;
    }

    .domain-input-group {
        flex-direction: column;
        align-items: stretch;
    }

    .save-btn {
        width: 100%;
    }

    .setup-form .form-row {
        flex-direction: column;
        align-items: stretch;
    }

    .setup-form .form-field {
        min-width: 100%;
    }

    .page-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
}

/* Support page specific styles */
.support-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.support-page-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
    color: #333;
}

.support-page-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

.support-section {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid #e1e5e9;
    margin-bottom: 32px;
}

.support-intro {
    margin-bottom: 32px;
}

.support-intro p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.form-textarea {
    width: 100%;
    min-height: 200px;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.5;
    resize: vertical;
    transition: border-color 0.2s ease;
    background: #fff;
}

.form-textarea:focus {
    outline: none;
    border-color: #666;
    box-shadow: 0 0 0 3px rgba(102, 102, 102, 0.1);
}

.form-textarea::placeholder {
    color: #999;
}

.user-details {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
}

.details-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    font-size: 14px;
}

.detail-item {
    margin-bottom: 8px;
    font-size: 14px;
}

.detail-label {
    font-weight: 500;
    color: #666;
    display: inline-block;
    min-width: 50px;
}

.detail-value {
    color: #333;
}

.details-note {
    font-size: 12px;
    color: #888;
    margin-top: 12px;
    font-style: italic;
}

.submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-bottom: 24px;
}

.submit-btn:hover {
    background: #555;
    color: #fff;
}

.submit-btn:active {
    transform: translateY(1px);
}

.alt-contact {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 24px;
}

.alt-contact p {
    color: #666;
    margin-bottom: 8px;
}

.contact-email {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.contact-email:hover {
    text-decoration: underline;
}

.back-link {
    text-align: center;
}

.back-link a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.back-link a:hover {
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
}

.back-arrow {
    font-size: 12px;
}

/* Support page alert styling */
.support-alert {
    margin-bottom: 24px;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid;
}

.support-alert.alert-success {
    background: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.support-alert.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

/* Support page responsive styles */
@media (max-width: 768px) {
    .support-container {
        padding: 20px 16px;
    }

    .support-section {
        padding: 24px;
    }

    .support-page-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .support-page-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }
}

/* Features Page Styles */
.features-page {
    background: #fff;
    min-height: 100vh;
}

/* Hero */
.features-hero {
    text-align: center;
    padding: 96px 24px 80px;
    border-bottom: 1px solid #f3f4f6;
    max-width: 800px;
    margin: 0 auto;
}

.features-hero-title {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.1;
}

.features-hero-sub {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

.commercial-price-callout {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 18px auto 0;
    max-width: 560px;
}

/* Section Label Pill */
.section-label {
    display: inline-block;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 9999px;
    margin-bottom: 16px;
}

/* Feature Sections */
.feature-section {
    padding: 96px 24px;
    background: #fff;
    border-bottom: 1px solid #f3f4f6;
}

.feature-container {
    max-width: 1200px;
    margin: 0 auto;
}

.feature-title {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin: 0 0 16px;
    line-height: 1.1;
}

.feature-desc {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* Centered intro (label + title + desc) at top of each section */
.feature-center-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

/* Visual content below the intro */
.feature-visual-full {
    margin-top: 56px;
}

/* Feature Cards Grid */
.feature-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 56px;
}

@media (min-width: 640px) {
    .feature-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
}

.feature-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}

.feature-card-desc {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.feature-card .cta-button {
    margin: 20px 0 0;
}

/* Feature Visual */
.feature-visual {
    width: 100%;
}

/* Gallery Type Cards */
.gallery-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-type-card {
    background: #f8fafc;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.gallery-label {
    font-size: 16px;
    color: #4b5563;
    font-weight: 600;
    margin-top: 8px;
    text-align: center;
}

/* Browser Mockup */
.browser-mockup {
    background: #f8fafc;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    max-width: 900px;
    margin: 0 auto;
}

.browser-window {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.browser-bar {
    height: 28px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 6px;
}

.browser-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.browser-dot.red {
    background: #ef4444;
}

.browser-dot.yellow {
    background: #fbbf24;
}

.browser-dot.green {
    background: #10b981;
}

/* Device Mockups */
.devices-container {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: flex-end;
}

.device {
    background: #1e293b;
    border-radius: 14px;
    box-shadow: 0 24px 40px -8px rgba(0, 0, 0, 0.25);
    padding: 12px;
}

.device.phone {
    width: 120px;
}

.device.tablet {
    width: 220px;
}

.device-screen {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.device.phone .device-screen {
    height: 220px;
}

.device.tablet .device-screen {
    height: 300px;
}

.device-notch {
    height: 5px;
    border-radius: 9999px;
    background: #334155;
    margin: 4px auto 0;
}

.device.phone .device-notch {
    width: 48px;
}

.device.tablet .device-notch {
    width: 72px;
}

.device-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    padding: 4px;
    margin-top: 4px;
}

.device.tablet .device-grid {
    gap: 8px;
    padding: 8px;
    margin-top: 8px;
}

.device-thumb {
    aspect-ratio: 1;
    border-radius: 2px;
}

.device.tablet .device-thumb {
    border-radius: 4px;
}

/* Page Builder Frame */
.page-builder {
    background: #f8fafc;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

/* Contact Form Frame */
.form-mockup-container {
    background: #f8fafc;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

/* Customization Colors */
.color-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 480px;
    margin: 0 auto;
}

.color-card {
    height: 180px;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.color-card.blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.color-card.purple {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
}

.color-card.green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.color-card.pink {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

/* Gradient Colors (device thumbs) */
.gradient-blue {
    background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 100%);
}

.gradient-purple {
    background: linear-gradient(135deg, #e9d5ff 0%, #d8b4fe 100%);
}

.gradient-green {
    background: linear-gradient(135deg, #a7f3d0 0%, #6ee7b7 100%);
}

.gradient-pink {
    background: linear-gradient(135deg, #fbcfe8 0%, #f9a8d4 100%);
}

/* CTA Section */
.cta-section {
    padding: 96px 24px;
    background: #0f172a;
    color: #fff;
}

.cta-container {
    max-width: 896px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #fff;
    margin-bottom: 16px;
}

.cta-sub {
    font-size: 17px;
    color: #94a3b8;
    margin-bottom: 40px;
}

.cta-section .cta-button {
    background: #fff;
    color: #0f172a;
}

.cta-section .cta-button:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.commercial-hero .cta-buttons {
    margin-top: 20px;
}

.commercial-decision-section {
    padding: 72px 24px;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.commercial-decision-container {
    max-width: 1120px;
    margin: 0 auto;
}

.commercial-decision-intro {
    max-width: 680px;
    margin: 0 auto 40px;
    text-align: center;
}

.commercial-decision-intro h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 0;
    color: #0f172a;
    line-height: 1.12;
    margin: 0 0 14px;
}

.commercial-decision-intro p {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

.commercial-decision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.commercial-decision-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
}

.commercial-decision-muted {
    background: #f3f4f6;
}

.commercial-decision-action-card {
    border-color: #cbd5e1;
}

.commercial-decision-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 14px;
}

.commercial-decision-card p,
.commercial-decision-list {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.65;
}

.commercial-decision-list {
    margin: 0;
    padding-left: 18px;
}

.commercial-decision-list li + li {
    margin-top: 8px;
}

.commercial-decision-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.commercial-decision-actions .cta-button {
    margin: 0;
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 700;
}

.resource-path-section {
    padding: 86px 24px;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.resource-path-container {
    max-width: 1120px;
    margin: 0 auto;
}

.resource-path-intro {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.resource-path-intro h2 {
    margin: 0 0 16px;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.12;
    color: #0f172a;
}

.resource-path-intro p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #64748b;
}

.resource-path-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.resource-path-card {
    display: flex;
    min-height: 250px;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    color: inherit;
    text-align: left;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.resource-path-card:hover {
    border-color: #94a3b8;
    transform: translateY(-2px);
}

.resource-path-kicker {
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
}

.resource-path-title {
    font-size: 21px;
    font-weight: 800;
    line-height: 1.15;
    color: #0f172a;
}

.resource-path-copy {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
}

.commercial-card-grid {
    margin-top: 56px;
}

.commercial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.commercial-resource-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #0f172a;
    margin: 0 0 20px;
}

.commercial-resource-desc {
    margin-bottom: 20px;
}

.commercial-resource-link {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    align-self: flex-start;
    margin-top: 4px;
    padding: 0;
}

.commercial-resource-link:visited {
    color: #374151;
}

.commercial-resource-link:hover {
    color: #374151;
    text-decoration: none;
}

.commercial-two-up {
    grid-template-columns: 1fr;
}

@media (max-width: 980px) {
    .resource-path-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 640px) {
    .commercial-two-up {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .resource-path-section {
        padding: 64px 16px;
    }

    .resource-path-intro h2 {
        font-size: 30px;
    }

    .resource-path-grid {
        grid-template-columns: 1fr;
        margin-top: 36px;
    }

    .resource-path-card {
        min-height: auto;
    }
}

.commercial-pill-row {
    margin-top: 56px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.commercial-comparison-table-wrap {
    margin: 56px auto 0;
    max-width: 1040px;
    overflow-x: auto;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
}

.commercial-comparison-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.commercial-comparison-table th,
.commercial-comparison-table td {
    padding: 18px 20px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.6;
}

.commercial-comparison-table thead th {
    background: #f8fafc;
    color: #0f172a;
    font-size: 14px;
    font-weight: 800;
}

.commercial-comparison-table tbody th {
    color: #0f172a;
    font-weight: 800;
    width: 26%;
}

.commercial-comparison-table tr:last-child th,
.commercial-comparison-table tr:last-child td {
    border-bottom: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .features-hero {
        padding: 64px 24px 48px;
    }

    .features-hero-title {
        font-size: 36px;
    }

    .feature-section {
        padding: 64px 16px;
    }

    .commercial-decision-section {
        padding: 56px 16px;
    }

    .commercial-decision-intro h2 {
        font-size: 30px;
    }

    .commercial-decision-grid {
        grid-template-columns: 1fr;
    }

    .commercial-decision-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .commercial-decision-actions .cta-button {
        width: 100%;
        text-align: center;
    }

    .feature-title {
        font-size: 30px;
    }

    .feature-visual-full {
        margin-top: 40px;
    }

    .gallery-types {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .devices-container {
        gap: 16px;
    }

    .device.phone {
        width: 80px;
    }

    .device.tablet {
        width: 148px;
    }

    .device.phone .device-screen {
        height: 148px;
    }

    .device.tablet .device-screen {
        height: 200px;
    }

    .cta-section {
        padding: 64px 16px;
    }

    .cta-title {
        font-size: 32px;
    }
}

.inline-form .btn {
  width: 100%;
}

/* Philosophy Section */
.philosophy {
    padding: 96px 24px;
    background: #fff;
    text-align: center;
    border-bottom: 1px solid #f3f4f6;
}

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy h2 {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin-bottom: 32px;
    line-height: 1.1;
}

.philosophy-text {
    font-size: 18px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 48px;
}

.philosophy-cta {
    margin-top: 32px;
}

/* FAQ Page - Following Design System Guidelines */
.faq-hero {
    padding: 80px 40px;
    background: #fff;
    text-align: center;
}

.faq-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-hero h1 {
    font-size: 48px;
    font-weight: 600;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.2;
}

.faq-hero-description {
    font-size: 20px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 32px;
}

.faq-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-link:hover {
    color: #333;
}

.faq-content {
    padding: 80px 40px;
    background: #f9f9f9;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 64px;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid #eee;
}

.faq-item {
    margin-bottom: 16px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
    padding-right: 48px;
}

.faq-question:hover {
    color: #0066cc;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    color: #666;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-cta {
    padding: 80px 40px;
    background: #fff;
    text-align: center;
}

.faq-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.faq-cta h2 {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.2;
}

.faq-cta p {
    font-size: 20px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 32px;
}

.faq-cta-button {
    margin-top: 32px;
}

/* Mobile responsive for philosophy and FAQ sections */
@media (max-width: 768px) {
    .philosophy {
        padding: 48px 16px;
    }

    .philosophy h2 {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .philosophy-text {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .philosophy-cta {
        margin-top: 24px;
    }

    .philosophy-cta .cta-button {
        width: 100%;
        max-width: 300px;
    }

    /* FAQ Mobile Responsive */
    .faq-hero {
        padding: 48px 16px;
    }

    .faq-hero h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .faq-hero-description {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .faq-content {
        padding: 48px 16px;
    }

    .faq-category {
        margin-bottom: 48px;
    }

    .faq-category-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px;
        padding-right: 48px;
    }

    .faq-answer p {
        font-size: 16px;
        padding: 0 20px 20px;
    }

    .faq-cta {
        padding: 48px 16px;
    }

    .faq-cta h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .faq-cta p {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .faq-cta-button .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

/* Footer styles */
.footer-link {
    color: #999;
    text-decoration: none;
    font-size: 16px;
    margin: 0 8px;
}

.footer-link:hover {
    color: #ccc;
    text-decoration: underline;
}

.footer-links {
    margin: 8px 0;
}

/* Password validation styles */
.text-success {
    color: #28a745 !important;
}

.text-danger {
    color: #dc3545 !important;
}

.text-muted {
    color: #6c757d !important;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
}

.btn-secondary:hover:not(:disabled) {
    background-color: #545b62 !important;
    border-color: #545b62 !important;
}


/* Programmatic SEO pages */
.seo-hero {
    padding-bottom: 40px;
}

.seo-section {
    padding: 60px 40px;
}

.seo-section-alt {
    background: #f9f9f9;
}

.seo-container {
    max-width: 1100px;
    margin: 0 auto;
}

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

@media (min-width: 768px) {
    .seo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.seo-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.seo-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 20px;
    color: #222;
}

.seo-card p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.seo-card h2 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 22px;
    color: #222;
}

.seo-list {
    list-style: disc;
    padding-left: 20px;
    color: #444;
    line-height: 1.8;
}

.seo-list-plain li {
    color: #4b5563;
}

.seo-list li a {
    color: #333;
    text-decoration: none;
}

.seo-list li a:hover {
    color: #000;
    text-decoration: underline;
}

.seo-faq {
    display: grid;
    gap: 20px;
}

.seo-faq-item {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    background: #fff;
}

.seo-faq-item h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
    color: #222;
}

.seo-faq-item p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.seo-cta {
    background: #fff;
    text-align: center;
}

.seo-related {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.seo-table-wrap {
    overflow-x: auto;
}

.seo-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #eee;
}

.seo-table th,
.seo-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-size: 16px;
}

.seo-table th {
    background: #f7f7f7;
    font-weight: 600;
}

.seo-lead {
    font-size: 18px;
    color: #444;
    line-height: 1.7;
}

.seo-note {
    font-size: 16px;
    color: #444;
    text-align: center;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
