@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Inter:wght@300..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Clean, light design inspired by app colors */
    --background: #ffffff;
    --background-secondary: #fafafa;
    --background-tertiary: #f8f9fa;
    --text-color: #353535;
    --text-secondary: rgba(53, 53, 53, 0.7);
    --text-tertiary: rgba(53, 53, 53, 0.5);
    --border-light: rgba(0, 0, 0, 0.06);
    --border-medium: rgba(0, 0, 0, 0.1);
    
    /* Premium feature colors */
    --purple: #8b5cf6;
    --green: #10b981;
    --orange: #f59e0b;
    --blue: #3b82f6;
    --premium-gold: #f7931e;
    
    /* Shadows for depth */
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 8px 32px rgba(0, 0, 0, 0.12);
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-heading: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-serif: 'EB Garamond', Georgia, 'Times New Roman', serif;
}

body {
    font-family: var(--font-sans);
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, .nav-title {
    font-family: var(--font-heading);
}

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

/* Navigation - Clean and minimal */
.nav {
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0 clamp(12px, 3vw, 24px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-icon {
    width: 32px;
    height: 32px;
}

.nav-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: 0.5px;
    text-transform: lowercase;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--text-color);
}

/* Hero Section - Base */
.hero {
    padding: 100px 0 100px;
    text-align: center;
    background: transparent;
    animation: fadeInUp 0.8s ease-out;
}

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

/* Cinematic landing hero */
.hero--cinematic {
    padding: 180px 0 120px;
}

.hero-stage {
    position: relative;
    width: min(760px, 92vw);
    margin: 0 auto 28px;
}

.hero-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9; /* cinematic wide ratio */
    border-radius: 28px;
    overflow: visible; /* allow blur to feather into page */
    box-shadow: none; /* no shadow to preserve seamless blend */
    background: #ffffff; /* treat as one with page */
}

/* Base image inside the hero visual */
.hero-visual > img.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: block;
}

/* Apply blur to the composed image + white background */
.hero-visual.is-blurred {
    filter: blur(20px) saturate(0.95) contrast(1.05);
    -webkit-filter: blur(20px) saturate(0.95) contrast(1.05);
    will-change: filter;
}

/* Prevent transition latency: ensure no delayed animations */
.hero-visual,
.hero-visual * {
    animation: none !important;
    transition: none !important;
}

/* Subtle grain on top */
.hero-visual.is-blurred::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    background-size: 180px 180px;
    background-repeat: repeat;
    opacity: 0.12;
    mix-blend-mode: multiply;
    pointer-events: none;
}

.tagline {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.15;
    color: var(--text-color);
    letter-spacing: -0.3px;
    margin: 22px auto 10px;
}

.tagline .accent-italic {
    font-style: italic;
}

.hero-subcopy {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 12px auto 28px;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border: 1px solid rgba(247, 147, 30, 0.2);
    border-radius: 50px;
    margin-bottom: 32px;
    transition: transform 0.3s ease;
}

.premium-badge:hover {
    transform: translateY(-2px);
}

.badge-icon {
    width: 18px;
    height: 18px;
}

.premium-badge span {
    font-size: 13px;
    font-weight: 600;
    color: var(--premium-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(40px, 5.5vw, 64px);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 24px;
    line-height: 1.08;
    letter-spacing: -1.2px;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.4;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.trial-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--green);
}

/* Buttons - Premium design */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.cta-button.secondary {
    background: white;
    color: var(--text-color);
    border: 2px solid var(--border-medium);
}

.cta-button.secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
    border-color: var(--text-color);
}

.button-icon {
    width: 20px;
    height: 20px;
}

.cta-button.primary .button-icon {
    filter: invert(1);
}

/* Features Section - Better grid layout */
.features {
    padding: 120px 0;
    background: transparent;
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.features-header.left-aligned {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 80px;
}

.features-header h2 {
    font-size: 42px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.features-header p {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

.feature-card {
    padding: 40px 32px;
    background: #ffffff;
    border-radius: 24px;
    transition: background-color 0.2s ease;
    box-shadow: none;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    background: #f5f5f5;
}

.feature-icon {
    width: auto;
    height: auto;
    border-radius: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 24px;
    background: none;
    transform: rotate(-6deg);
}

.feature-icon.purple { background: none; }
.feature-icon.green { background: none; }
.feature-icon.orange { background: none; }
.feature-icon.blue { background: none; }

.feature-icon img {
    width: 32px;
    height: 32px;
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.feature-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 16px;
    flex: 1;
}

.feature-benefit {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--purple);
    margin-top: auto;
}

.feature-card:nth-child(2) .feature-benefit {
    color: var(--green);
}

.feature-card:nth-child(3) .feature-benefit {
    color: var(--orange);
}

.feature-card:nth-child(4) .feature-benefit {
    color: var(--blue);
}

/* CTA Section - Better line spacing */
.cta-section {
    padding: 120px 0;
    text-align: center;
    background: transparent;
}

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

.cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.5;
}

/* Footer - Clean and minimal */
.footer {
    background: transparent;
    border-top: none;
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.footer-brand span {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-color);
    font-size: 18px;
    letter-spacing: 0.5px;
    text-transform: lowercase;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-tertiary);
}

/* Company section styles */
.section {
    padding: 100px 0;
}

.section .section-intro {
    max-width: 820px;
    margin: 0 auto 26px;
}

.section .section-intro h2 {
    font-size: clamp(30px, 4vw, 44px);
    letter-spacing: -0.8px;
}

.section .section-intro p {
    color: var(--text-secondary);
    font-size: 18px;
}

.product-preview {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    align-items: center;
    padding: 24px;
    border-radius: 20px;
    background: white;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-light);
}

.product-preview img {
    width: 96px;
    height: 96px;
    border-radius: 22px;
}

.product-preview h3 {
    margin-bottom: 4px;
}

.product-preview p {
    color: var(--text-secondary);
}

/* Contact Form - Minimalist styling */
.contact-form {
    max-width: 640px;
    margin: 0 auto 60px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 0;
    border: none;
    border-bottom: 1px solid var(--border-light);
    border-radius: 0;
    background: transparent;
    color: var(--text-color);
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

/* Custom Select Dropdown */
.custom-select {
    position: relative;
    width: 100%;
}

.select-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border: none;
    border-bottom: 1px solid var(--border-light);
    background: transparent;
    color: var(--text-color);
    font-family: inherit;
    font-size: 16px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.select-display:hover,
.select-display.active {
    border-bottom-color: var(--text-color);
}

.select-arrow {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.select-display.active .select-arrow {
    transform: rotate(180deg);
}

.select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.select-options.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.select-option {
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 16px;
    color: var(--text-color);
}

.select-option:hover {
    background: var(--background-tertiary);
}

.select-option:first-child {
    border-radius: 8px 8px 0 0;
}

.select-option:last-child {
    border-radius: 0 0 8px 8px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: var(--text-color);
    background: transparent;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    padding: 0;
    background: transparent;
    color: var(--text-color);
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s ease;
    box-shadow: none;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.submit-button:hover {
    opacity: 0.7;
}

/* Privacy Page */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.privacy-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 48px;
    text-align: center;
    letter-spacing: -1px;
}

.privacy-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-color);
    margin: 40px 0 20px;
    letter-spacing: -0.5px;
}

.privacy-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-color);
    margin: 32px 0 16px;
}

.privacy-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 16px;
}

.privacy-content ul,
.privacy-content ol {
    margin: 20px 0;
    padding-left: 28px;
    color: var(--text-secondary);
}

.privacy-content li {
    margin-bottom: 12px;
    line-height: 1.7;
}

/* Product introduction layout */
.product-intro {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 32px;
    align-items: flex-start;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.product-icon {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.product-icon img {
    width: 96px;
    height: 96px;
    border-radius: 22px;
}

.product-content h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-color);
}

.product-content p {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.product-link {
    margin-top: 24px;
}

@media (max-width: 768px) {
    .product-intro {
        grid-template-columns: 80px 1fr;
        gap: 20px;
    }
    
    .product-icon img {
        width: 72px;
        height: 72px;
    }
    
    .product-content h3 {
        font-size: 24px;
    }
    
    .product-content p {
        font-size: 16px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Smooth transitions for interactive elements */
.cta-button,
.text-link,
.nav-link {
    transition: all 0.3s ease;
}

.hero-visual {
    animation: fadeIn 1.2s ease-out 0.4s both;
}

/* Text links with arrows */
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.text-link:hover {
    color: #000000;
}

/* Base text link with underline */
.text-link:not(.arrow-down):not(.arrow-right) {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Arrow down styling */
.text-link.arrow-down {
    flex-direction: column;
    gap: 4px;
}

.text-link.arrow-down span {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.text-link.arrow-down::after {
    content: "↓";
    font-size: 16px;
    line-height: 1;
}

/* Arrow right styling */
.text-link.arrow-right span {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.text-link.arrow-right::after {
    content: "→";
    font-size: 16px;
    line-height: 1;
    margin-left: 4px;
}

/* Thoughts page content wrapper */
.thoughts-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.features-header-simple {
    text-align: left;
    margin-bottom: 60px;
}

.features-header-simple h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 16px;
}

.features-header-simple p {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.6;
}

.features-grid-simple {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;
}

.feature-item:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.4s both; }
.feature-item:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.5s both; }
.feature-item:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.6s both; }
.feature-item:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.7s both; }

.feature-icon-simple {
    margin-bottom: 16px;
    transform: rotate(-6deg);
    width: fit-content;
}

.feature-icon-simple img {
    width: 28px;
    height: 28px;
}

.feature-item h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .features-grid-simple {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .features-header-simple h3 {
        font-size: 24px;
    }
    
    .features-header-simple p {
        font-size: 16px;
    }
}

/* Simple features layout (for thoughts page) */
.features-simple {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-simple {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    align-items: flex-start;
}

.feature-simple-icon {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    transform: rotate(-6deg);
}

.feature-simple-icon img {
    width: 32px;
    height: 32px;
}

.feature-simple-content h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.feature-simple-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .features-simple {
        gap: 36px;
    }
    
    .feature-simple {
        grid-template-columns: 60px 1fr;
        gap: 16px;
    }
    
    .feature-simple-icon img {
        width: 28px;
        height: 28px;
    }
}

/* Support info - minimalist */
.support-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 640px;
    margin: 0 auto;
}

.support-item {
    display: flex;
    flex-direction: column;
}

.support-icon-simple {
    margin-bottom: 16px;
    transform: rotate(-6deg);
    width: fit-content;
}

.support-icon-simple img {
    width: 24px;
    height: 24px;
}

.support-item h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.support-item p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .support-info {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* New Thoughts Page Sections */

/* Companion Section */
.companion-section {
    background: transparent;
}

.companion-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.companion-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.companion-img {
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 24px;
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.companion-img:hover {
    transform: rotate(-1deg) scale(1.02);
}

.companion-text h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.companion-text p {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.6;
}

/* Reflection Section */
.reflection-section {
    background: transparent;
}

.reflection-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.reflection-text {
    order: 1;
}

.reflection-image {
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reflection-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

.reflection-img:hover {
    transform: scale(1.02);
}

.reflection-text h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.reflection-text p {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.6;
}

/* Podcast Section */
.podcast-section {
    background: transparent;
}

.podcast-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.podcast-text {
    order: 2;
}

.podcast-player-container {
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.podcast-text h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.podcast-text p {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.6;
}

/* iOS-style Podcast Player */
.podcast-player {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-medium);
    max-width: 400px;
    margin: 0 auto;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.podcast-player:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.player-header {
    margin-bottom: 20px;
}

.episode-info {
    text-align: left;
}

.episode-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
    line-height: 1.3;
}

.podcast-title {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.player-controls {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.progress-bar {
    position: relative;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 56%;
    background: var(--text-color);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.progress-handle {
    position: absolute;
    top: 50%;
    left: 56%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--text-color);
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: left 0.3s ease;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-secondary);
    font-family: 'SF Mono', 'Monaco', 'Menlo', monospace;
    font-weight: 500;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .companion-content,
    .reflection-content,
    .podcast-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Image containers centered */
    .companion-image,
    .reflection-image,
    .podcast-player-container {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        order: 1;
    }
    
    /* Text content left-aligned and comes after images */
    .companion-text,
    .reflection-text,
    .podcast-text {
        text-align: left;
        order: 2;
    }
    
    .companion-text h3,
    .reflection-text h3,
    .podcast-text h3 {
        font-size: 28px;
    }
    
    .companion-text p,
    .reflection-text p,
    .podcast-text p {
        font-size: 16px;
    }
    
    .companion-img {
        max-width: 240px;
        max-height: 240px; /* Fix cropping issue */
        object-fit: contain; /* Ensure full image is visible */
    }
    
    .reflection-img {
        max-width: 240px;
    }
    
    .podcast-player {
        padding: 20px;
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .companion-content,
    .reflection-content,
    .podcast-content {
        gap: 32px;
    }
    
    .companion-img {
        max-width: 200px;
        max-height: 200px; /* Fix cropping issue on smaller screens */
        object-fit: contain; /* Ensure full image is visible */
    }
    
    .reflection-img {
        max-width: 200px;
    }
    
    .podcast-player {
        padding: 16px;
        max-width: 320px;
    }
    
    .episode-title {
        font-size: 15px;
    }
}

/* Responsive Design */
@media (max-width: 1023px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-links {
        gap: 24px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }

    .hero--cinematic {
        padding: 180px 0 80px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }

    .hero-visual {
        aspect-ratio: 16 / 9;
        border-radius: 22px;
    }

    .tagline {
        font-size: 32px;
    }

    .hero-subcopy {
        font-size: 16px;
        padding: 0 6px;
    }
    
    .features {
        padding: 80px 0;
    }
    
    .cta-section {
        padding: 80px 0;
    }

    .product-preview {
        grid-template-columns: 72px 1fr;
        gap: 16px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .contact-form {
        padding: 32px 0; /* Remove horizontal padding to match support info elements */
    }

    /* Make vision section left-aligned on mobile */
    .vision-content {
        text-align: left !important;
    }

    /* Reduce padding below hero section on contact page only */
    .contact-hero-section {
        padding-bottom: 20px !important;
    }
} 