/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --black-soft: #171717;
    --gray-900: #262626;
    --gray-700: #404040;
    --gray-500: #737373;
    --gray-300: #a3a3a3;
    --gray-100: #f5f5f5;
    --white: #ffffff;
    --white-off: #fafafa;
    --border: #e5e5e5;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.08);
    --accent: #f97316;
    --accent-soft: #fff7ed;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
}

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand-mark {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    font-style: italic;
    font-weight: 500;
}

.brand-mark-secondary {
    font-weight: 600;
}

.main-nav {
    display: flex;
    gap: 1.75rem;
    font-size: 0.9rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.main-nav a {
    text-decoration: none;
    color: var(--gray-700);
    position: relative;
    padding-bottom: 4px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--black);
    transition: width 0.2s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top, #141414 0%, #050505 55%, #000000 100%);
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
}

.hero-kicker {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
}

.hero-title {
    font-size: clamp(2.8rem, 5vw, 3.8rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.04em;
    color: var(--white);
    white-space: nowrap;
}

.hero-title-italic {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    font-style: italic;
    font-weight: 500;
}

.hero-title-normal {
    font-style: normal;
}

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.78);
}

.hero-description {
    font-size: 0.98rem;
    max-width: 520px;
    margin-top: 0.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.hero-cta-primary {
    font-size: 0.9rem;
}

.hero-cta-secondary {
    font-size: 0.9rem;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-highlight {
    padding: 0.9rem 1.1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(10, 10, 10, 0.6);
}

.hero-highlight-border {
    border-style: dashed;
}

.hero-highlight-label {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
}

.hero-highlight-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.hero-highlight-note {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
}

.hero-showcase {
    position: relative;
    z-index: 1;
}

.hero-card {
    background: radial-gradient(circle at top left, #1b1b1b 0%, #050505 65%);
    border-radius: 20px;
    padding: 1.75rem 1.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
    max-width: 360px;
    margin-left: auto;
}

.hero-card-label {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.9rem;
}

.hero-card-title {
    font-size: 1.1rem;
    color: #f9fafb;
    margin-bottom: 1.25rem;
}

.hero-meter-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.1rem;
}

.hero-meter-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.2rem;
}

.hero-meter-bar {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.35);
    overflow: hidden;
}

.hero-meter-fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #ffffff, #e5e5e5);
    transform-origin: left;
    animation: meterPulse 4s ease-in-out infinite;
}

.hero-meter-fill-1 { width: 88%; animation-delay: 0s; }
.hero-meter-fill-2 { width: 92%; animation-delay: -1s; }
.hero-meter-fill-3 { width: 85%; animation-delay: -2s; }

.hero-card-footnote {
    font-size: 0.78rem;
    color: rgba(248, 250, 252, 0.72);
}

@keyframes meterPulse {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scaleX(1.02); }
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--black);
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray-500);
    margin-bottom: 3rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services {
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.75rem;
    margin-top: 1.75rem;
}

.services-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2.5rem;
    margin-top: 2.75rem;
    align-items: flex-start;
}

.services-column-title {
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

.services-column-secondary {
    border-left: 1px solid var(--border);
    padding-left: 2.25rem;
}

.service-card {
    background: var(--white-off);
    padding: 2.1rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--black);
    font-weight: 600;
}

.service-card p {
    color: var(--gray-500);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.service-list {
    list-style: none;
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.service-list li::before {
    content: '—';
    margin-right: 0.5rem;
    color: var(--gray-300);
}

/* Pricing Section tweaks */
.pricing-kicker {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-top: 0.35rem;
    margin-bottom: 2.25rem;
    text-align: center;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(249, 115, 22, 0.07), rgba(249, 115, 22, 0));
    border: 1px solid rgba(249, 115, 22, 0.18);
}

/* Pricing Section */
.pricing {
    background: radial-gradient(circle at top, rgba(249, 115, 22, 0.09), transparent 55%), var(--white-off);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.pricing-grid-three {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
}

@media (max-width: 980px) {
    .pricing-grid-three {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pricing-card {
    background: var(--white);
    padding: 2.75rem 2.25rem 2.25rem;
    border-radius: 12px;
    text-align: left;
    position: relative;
    border: 1px solid var(--border);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 2px solid var(--black);
    background: var(--black);
    color: var(--white);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.25);
}

.pricing-card.featured h3,
.pricing-card.featured .current-price {
    color: var(--white);
}

.pricing-card.featured .old-price {
    color: rgba(255, 255, 255, 0.65);
}

.pricing-card.featured .price-note,
.pricing-card.featured .features-list li {
    color: rgba(255, 255, 255, 0.85);
}

.pricing-card.featured .features-list li {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.pricing-card.featured .btn-primary {
    background: var(--white);
    color: var(--black);
}

.pricing-card.featured .btn-primary:hover {
    background: var(--gray-100);
    color: var(--black);
}

.badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--white);
    padding: 0.35rem 1.1rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.badge-featured {
    background: var(--white);
    color: var(--black);
    padding: 0.4rem 1.35rem;
    font-size: 0.78rem;
}

/* Secondary launch discount card */
.pricing-card.discount {
    border: 2px solid var(--black);
    background: var(--white);
    box-shadow: var(--shadow);
}

.badge-discount {
    display: none;
}

.pricing-card h3 {
    font-size: 1.375rem;
    margin: 1rem 0 0.5rem;
    color: var(--black);
    font-weight: 600;
}

.price {
    margin: 0.25rem 0 0.75rem;
}

.old-price {
    display: block;
    font-size: 1rem;
    color: var(--gray-500);
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}

.current-price {
    display: block;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.02em;
}

.price-note {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}

.features-list li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
}

.features-list li:last-child {
    border-bottom: none;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--black);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gray-900);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-secondary:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-1px);
}

/* Before/After Section */
.before-after {
    background-color: var(--white);
}

.audio-comparison-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.audio-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    background: var(--white-off);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.audio-track {
    text-align: center;
}

.audio-track h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--black);
    font-weight: 600;
}

.audio-player {
    width: 100%;
    height: 48px;
    border-radius: 8px;
    background: var(--white);
    outline: none;
    border: 1px solid var(--border);
}

.audio-player::-webkit-media-controls-panel {
    background-color: var(--white);
}

.audio-player::-webkit-media-controls-play-button {
    background-color: var(--black);
    border-radius: 50%;
}

.note {
    margin-top: 2rem;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.note code {
    background: var(--gray-100);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: ui-monospace, monospace;
    font-size: 0.8125rem;
}

/* Contact Section */
.contact {
    background-color: var(--white-off);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.contact-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.contact-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--black);
    font-weight: 600;
}

.contact-link {
    color: var(--black);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
}

.contact-link:hover {
    border-bottom-color: var(--black);
}

/* Contact Form */
.contact-form-wrap {
    margin-top: 3.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.contact-form-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

.form-input {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--black);
    background: var(--white);
    transition: border-color 0.2s ease;
}

.form-input::placeholder {
    color: var(--gray-300);
}

.form-input:focus {
    outline: none;
    border-color: var(--black);
}

.form-select {
    cursor: pointer;
    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='%23737373' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 2.5rem;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    margin-top: 0.5rem;
    width: 100%;
}

/* Team Section */
.team {
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: var(--white-off);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.team-photo-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #e5e5e5;
    overflow: hidden;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-body {
    padding: 1.75rem 1.75rem 1.9rem;
}

.team-role-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gray-500);
    margin-bottom: 0.4rem;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.team-role-main {
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
}

.team-description {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* Footer */
.footer {
    background-color: var(--black);
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    color: var(--gray-400);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.875rem;
    }
    
    .header-inner {
        padding-inline: 16px;
    }

    .main-nav {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 32px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-title {
        white-space: normal;
    }

    .hero-showcase {
        order: -1;
    }

    .hero-title {
        white-space: normal;
    }
    
    .pricing-grid-three {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }
    
    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .audio-comparison {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    section {
        padding: 72px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .pricing-card,
    .service-card,
    .contact-card {
        padding: 1.5rem;
    }
}
