/* kreo Landing Page - Main Styles */

/* ============================================================================
   CSS Variables & Theme
   ============================================================================ */

:root {
    /* Colors */
    --color-primary: #6366f1;
    /* Indigo */
    --color-primary-dark: #4f46e5;
    --color-primary-light: #818cf8;

    --color-secondary: #f59e0b;
    /* Amber */
    --color-success: #10b981;
    /* Green */
    --color-error: #ef4444;
    /* Red */

    --color-text-primary: #1f2937;
    /* Gray-800 */
    --color-text-secondary: #6b7280;
    /* Gray-500 */
    --color-background: #ffffff;
    --color-background-alt: #f9fafb;
    /* Gray-50 */

    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-display: "Inter", var(--font-sans);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* ============================================================================
   Reset & Base
   ============================================================================ */

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

body {
    font-family: var(--font-sans);
    color: var(--color-text-primary);
    background-color: var(--color-background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================================================
   Typography
   ============================================================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
}

/* ============================================================================
   Hero Section
   ============================================================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: var(--spacing-2xl) 0;
    text-align: center;
}

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

.hero-title {
    color: white;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease-out;
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* ============================================================================
   Waitlist Form
   ============================================================================ */

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 440px;
    margin: 0 auto var(--spacing-md);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.waitlist-form input[type="email"],
.waitlist-form input[type="text"],
.waitlist-form select {
    width: 100%;
    padding: 0.9rem 1.25rem;
    font-size: 1rem;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    background: white;
    color: var(--color-text-primary);
    transition: all 0.2s;
    font-family: var(--font-sans);
}

.waitlist-form input[type="email"]:focus,
.waitlist-form input[type="text"]:focus,
.waitlist-form select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.waitlist-form input::placeholder {
    color: var(--color-text-secondary);
}

.waitlist-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.waitlist-form select option[value=""] {
    color: var(--color-text-secondary);
}

.waitlist-form .btn-primary {
    margin-top: 0.25rem;
}

.btn-primary {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: var(--color-primary);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-primary:active {
    transform: translateY(0);
}

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

.form-message {
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    display: none;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.form-disclaimer {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.waitlist-count {
    font-weight: 600;
    color: var(--color-secondary);
}

/* ============================================================================
   Features Section
   ============================================================================ */

.features {
    padding: var(--spacing-2xl) 0;
    background: var(--color-background-alt);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.feature-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
}

.feature-card p {
    font-size: 1rem;
}

/* ============================================================================
   How It Works Section
   ============================================================================ */

.how-it-works {
    padding: var(--spacing-2xl) 0;
    background: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto var(--spacing-md);
}

.step h3 {
    margin-bottom: var(--spacing-sm);
}

.step p {
    font-size: 0.95rem;
}

/* ============================================================================
   Footer
   ============================================================================ */

.footer {
    padding: var(--spacing-xl) 0;
    background: var(--color-text-primary);
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

/* ============================================================================
   Animations
   ============================================================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ============================================================================
   Navigation
   ============================================================================ */

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.85rem 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
    margin-right: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.nav-active {
    color: var(--color-primary);
}

.btn-nav-cta {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    background: var(--color-primary);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-nav-cta:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: all 0.2s;
}

/* ============================================================================
   Hero Section Updates
   ============================================================================ */

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease-out;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.btn-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
}

.hero-disclaimer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

/* ============================================================================
   Problem Section
   ============================================================================ */

.problem {
    padding: var(--spacing-2xl) 0;
    background: white;
}

.problem-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.problem-text h2 {
    margin-bottom: var(--spacing-md);
    color: var(--color-text-primary);
}

.problem-text p {
    margin-bottom: var(--spacing-md);
}

.link-arrow {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.2s;
}

.link-arrow:hover {
    color: var(--color-primary-dark);
}

.problem-stats {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.stat-card {
    background: var(--color-background-alt);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    border-left: 4px solid var(--color-primary);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* ============================================================================
   Solution Section
   ============================================================================ */

.solution {
    padding: var(--spacing-2xl) 0;
    background: var(--color-background-alt);
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 1.125rem;
    margin-top: -1.5rem;
    margin-bottom: var(--spacing-xl);
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.solution-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.solution-card--b2c {
    border-top: 4px solid var(--color-primary);
}

.solution-card--b2b {
    border-top: 4px solid var(--color-secondary);
}

.solution-icon {
    font-size: 2.5rem;
}

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

.solution-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.solution-list li {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
}

.solution-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
}

.btn-outline {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.2s;
    text-align: center;
    margin-top: auto;
}

.btn-outline:hover {
    background: var(--color-primary);
    color: white;
}

/* ============================================================================
   GCP Tech Trust Section
   ============================================================================ */

.tech-trust {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
}

.tech-trust-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--spacing-2xl);
    align-items: center;
}

.tech-trust-text h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
}

.tech-trust-text p {
    color: rgba(255,255,255,0.8);
    margin-bottom: var(--spacing-lg);
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.gcp-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    min-width: 220px;
    text-align: center;
}

.gcp-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.gcp-subtext {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    margin-bottom: var(--spacing-md);
}

.gcp-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.gcp-feature {
    color: rgba(255,255,255,0.85);
    font-size: 0.875rem;
}

/* ============================================================================
   Traction Section
   ============================================================================ */

.traction {
    padding: var(--spacing-2xl) 0;
    background: var(--color-background-alt);
}

.traction-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.traction-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.traction-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
}

.traction-label {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

/* ============================================================================
   Waitlist Section (Homepage)
   ============================================================================ */

.waitlist-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.waitlist-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
}

.waitlist-copy h2 {
    color: white;
    margin-bottom: var(--spacing-md);
}

.waitlist-copy p {
    color: rgba(255,255,255,0.85);
}

.form-disclaimer-inline {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: var(--spacing-sm);
}

.waitlist-form-wrap {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-xl);
}

/* ============================================================================
   Footer Redesign
   ============================================================================ */

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-2xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: var(--spacing-sm);
}

.footer-tagline {
    color: rgba(255,255,255,0.55);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-nav-group h4 {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
}

.footer-nav-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-nav-group ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-nav-group ul li a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.footer-gcp-note {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
}

.footer-gcp-note strong {
    color: rgba(255,255,255,0.75);
}

/* ============================================================================
   Page Hero (inner pages)
   ============================================================================ */

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 0 4rem;
    text-align: center;
}

.page-hero--creators {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
}

.page-hero--partners {
    background: linear-gradient(135deg, #1e40af 0%, #0891b2 100%);
}

.page-hero-title {
    color: white;
    margin-bottom: var(--spacing-md);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 1.25rem;
    max-width: 640px;
    margin: 0 auto;
}

/* ============================================================================
   Content Sections (inner pages)
   ============================================================================ */

.content-section {
    padding: var(--spacing-2xl) 0;
}

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

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
}

.two-col-text h2 {
    margin-bottom: var(--spacing-md);
}

.two-col-text p {
    margin-bottom: var(--spacing-md);
}

.two-col-callout {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

/* ============================================================================
   Company Story
   ============================================================================ */

.story-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
}

.story-text h2 {
    margin-bottom: var(--spacing-md);
}

.story-text p {
    margin-bottom: var(--spacing-md);
}

.mission-card {
    background: var(--color-background-alt);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    border-left: 4px solid var(--color-primary);
}

.mission-card h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.mission-card p {
    font-size: 1rem;
}

/* ============================================================================
   Team Section
   ============================================================================ */

.team {
    padding: var(--spacing-2xl) 0;
    background: var(--color-background-alt);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
}

.team-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
    text-align: center;
}

.team-photo-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--color-background-alt);
    flex-shrink: 0;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-background-alt);
    font-size: 2rem;
    color: var(--color-text-secondary);
    border: 2px dashed var(--color-text-secondary);
    border-radius: 50%;
}

.team-name {
    font-size: 1.25rem;
    color: var(--color-text-primary);
    margin-bottom: 0;
}

.team-title {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
}

.team-bio {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #0077b5;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s;
}

.linkedin-link:hover {
    color: #005885;
}

.linkedin-icon {
    flex-shrink: 0;
}

/* ============================================================================
   About Tech Section
   ============================================================================ */

.about-tech {
    padding: var(--spacing-2xl) 0;
}

.about-tech-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
}

.about-tech-text h2 {
    margin-bottom: var(--spacing-md);
}

.about-tech-text p {
    margin-bottom: var(--spacing-md);
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.tech-item-icon {
    font-size: 1.1rem;
}

.digital-native-card {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    color: white;
}

.digital-native-card h3 {
    color: white;
    margin-bottom: var(--spacing-md);
}

.digital-native-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.digital-native-list li {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

/* ============================================================================
   Page CTA Section
   ============================================================================ */

.page-cta {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.page-cta h2 {
    color: white;
    margin-bottom: var(--spacing-sm);
}

.page-cta p {
    color: rgba(255,255,255,0.85);
    margin-bottom: var(--spacing-xl);
}

.section-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.btn-outline-dark {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.2s;
}

.btn-outline-dark:hover {
    background: var(--color-primary);
    color: white;
}

/* ============================================================================
   For Creators Page — Process Steps
   ============================================================================ */

.process-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.process-step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.process-step-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.process-step-content p {
    margin-bottom: 0;
}

/* Problem list cards */
.problem-list-card {
    background: #fef2f2;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
}

.problem-list-card--green {
    background: #f0fdf4;
}

.problem-list-card h3 {
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.check-list li {
    font-size: 0.9rem;
}

.check-list--no li::before {
    content: '✗ ';
    color: var(--color-error);
    font-weight: 700;
}

.check-list--yes li::before {
    content: '✓ ';
    color: var(--color-success);
    font-weight: 700;
}

/* Platform grid */
.platform-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
}

.platform-badge {
    background: white;
    border: 2px solid var(--color-background-alt);
    border-radius: var(--radius-xl);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text-primary);
    box-shadow: var(--shadow-sm);
}

/* ============================================================================
   For Partners Page
   ============================================================================ */

.partner-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.partner-type-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
}

.partner-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.partner-type-card h3 {
    margin-bottom: 0.5rem;
}

.offering-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    max-width: 800px;
    margin: 0 auto;
}

.offering-item {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.offering-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 56px;
    text-align: center;
}

.offering-text h3 {
    margin-bottom: 0.5rem;
}

.spec-list {
    margin-top: var(--spacing-md);
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.spec-list li {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

/* API Preview */
.api-preview-card {
    background: #1e1e2e;
    border-radius: var(--radius-xl);
    overflow: hidden;
    font-family: monospace;
}

.api-preview-header {
    background: #2d2d44;
    color: #a6e22e;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
}

.api-preview-code {
    padding: 1.25rem;
    color: #e2e8f0;
    font-size: 0.8rem;
    line-height: 1.7;
    white-space: pre;
    overflow-x: auto;
    margin: 0;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    align-items: start;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.pricing-card--featured {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.pricing-featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-tagline {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.pricing-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.pricing-list li {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    padding-left: 1.25rem;
    position: relative;
}

.pricing-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
}

/* Partner types */
.partner-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

/* ============================================================================
   How It Works Page
   ============================================================================ */

.detailed-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}

.detailed-step {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    border-left: 4px solid var(--color-primary);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
}

.detailed-step-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.detailed-step-number {
    background: var(--color-primary);
    color: white;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.detailed-step-header h3 {
    font-size: 1.25rem;
    margin: 0;
}

.detailed-step-body p {
    margin-bottom: var(--spacing-sm);
}

.step-detail-box {
    background: var(--color-background-alt);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

.step-detail-box strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
}

.inline-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.inline-list li {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    padding-left: 1.25rem;
    position: relative;
}

.inline-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

/* Tech pillars */
.tech-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.tech-pillar {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
}

.tech-pillar-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.tech-pillar h3 {
    margin-bottom: 0.5rem;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.faq-item p {
    font-size: 0.95rem;
}
