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

:root {
    --primary-color: #2c2a2a;
    --accent-color: #2eaadc;
    --primary-text: #ffffff;
    --secondary-text: #8e8c8c;
    --bg-color: #2c2a2a;
    --bg-light: #1a1a1a;
    --border-color: #404040;
    /* Fluid spacing */
    --gutter: clamp(16px, 4vw, 32px);
    --gutter-lg: clamp(20px, 5vw, 48px);
    --compare-divider: #404040;
    --compare-status-yes: #22c55e;
    --compare-status-no: #ef4444;
}

html {
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--primary-text);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-color);
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

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

.accent-text {
    color: #2eaadc;
}

/* Navigation */
.navbar {
    background: var(--bg-color);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-text);
    text-decoration: none;
    display: block;
}

.brand-logo {
    height: 2.5rem;
    width: auto;
    display: block;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--secondary-text);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

/* Hamburger Menu Button - hidden by default */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-text);
    position: relative;
    transition: background 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--primary-text);
    left: 0;
    transition: transform 0.3s;
}

.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }

/* Animate to X when open */
.nav-toggle.active .hamburger { background: transparent; }
.nav-toggle.active .hamburger::before { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active .hamburger::after { transform: rotate(-45deg) translate(5px, -5px); }

/* Hero Section */
.hero {
    padding: 6rem 0 0rem;
    background: var(--bg-color);
    text-align: center;
}

.hero-logo {
    margin-bottom: 0.5rem;
}

.hero-logo img {
    width: 130px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 6px;
}

.hero-title {
    font-size: 3.0rem;
    font-weight: 800;
    color: var(--primary-text);
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.hero-line-1,
.hero-line-2 {
    display: inline;
}

.hero-line-3 {
    display: block;
}

.hero-title .highlight {
    color: var(--accent-color);
}

.rotating-text {
    position: relative;
    display: inline-block;
}

.rotating-word {
    display: inline-block;
    transition: opacity 0.5s ease-in-out;
}

.rotating-word.fade-out {
    opacity: 0;
}

.cursor {
    display: inline-block;
    margin-left: 2px;
    animation: blink 1s infinite;
    color: var(--primary-text);
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Tagline Section */
.tagline-section {
    padding: 0rem 0 3.5rem;
    background: var(--bg-color);
    text-align: center;
}

.tagline-text {
    font-size: 1.5rem;
    color: var(--secondary-text);
    max-width: 800px;
    margin: 0 auto;
    font-style: normal;
    font-weight: 500;
}

/* Action Buttons Section */
.action-buttons-section {
    padding: 0 0 2.5rem;
    background: var(--bg-color);
    text-align: center;
}

.action-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-secondary {
    background: var(--secondary-text);
    color: var(--primary-text);
    border: 1px solid var(--border-color);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    font-size: 1rem;
    font-family: inherit;
}

.btn-secondary:hover {
    background: #2eaadc;
    color: var(--primary-text);
    border-color: #2eaadc;
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--secondary-text);
    color: var(--primary-text);
    border: 1px solid var(--border-color);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    font-size: 1rem;
    font-family: inherit;
}

.btn-primary:hover {
    background: #2eaadc;
    color: var(--primary-text);
    border-color: #2eaadc;
    transform: translateY(-2px);
}

/* App Store Button */
.app-store-button {
    background: transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
    border: none;
    padding: 0;
}

.app-store-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.app-store-image {
    height: 78px;
    width: auto;
    display: block;
}

/* Google Play Button */
.google-play-button {
    background: transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
    border: none;
    padding: 0;
    position: relative;
}

.google-play-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.google-play-image {
    height: 42px;
    width: auto;
    display: block;
}

/* Floating Bullet Button */
.floating-bullet-button {
    background: #000;
    color: #fff;
    border-radius: 8px;
    padding: 0.4rem 1.2rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    height: 36px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
}

.floating-bullet-button:hover {
    background: #2eaadc;
    color: #fff;
    transform: translateY(-2px);
}

/* Features Section */
.features-section {
    padding: 2rem 0 5rem;
    background: var(--bg-color);
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.feature-big-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-text);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.feature-secondary-text {
    font-size: 1.1rem;
    color: var(--secondary-text);
    line-height: 1.6;
    max-width: 300px;
}

/* Backed By Section */
.backed-by-section {
    padding: 0 0 5rem;
    background: var(--bg-color);
    text-align: center;
}

.backed-by-image {
    margin-top: 0;
    margin-bottom: 0;
}

.backed-by-image img {
    max-width: 250px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
}

.placeholder-image {
    max-width: 100%;
    height: auto;
    background: var(--bg-light);
    border: 2px dashed var(--border-color);
    display: block;
    object-fit: cover;
}

.backed-by-image .placeholder-image {
    min-height: 100px;
    margin: 0 auto;
}

.team-photo.placeholder-image {
    min-height: 200px;
    min-width: 200px;
}

/* Problems Section */
.problems-section {
    padding: 3rem 0 6rem;
    background: var(--bg-color);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card {
    background: var(--bg-color);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.problem-card h3 {
    font-size: 1.5rem;
    color: var(--primary-text);
    margin-bottom: 1rem;
    font-weight: bold;
}

.problem-description {
    color: var(--secondary-text);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Alternating Features Section */
.alternating-features-section {
    padding: 6rem 0;
    background: var(--bg-color);
}

.alternating-features-section .container {
    padding: 0 var(--gutter);
    max-width: 1000px;
}

.alternating-feature-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 8rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.alternating-feature-item:last-child {
    margin-bottom: 0;
}

.feature-left-image {
    flex-direction: row;
}

.feature-right-image {
    flex-direction: row-reverse;
}

.feature-image-wrapper {
    flex: 0 0 30%;
    max-width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alternating-feature-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 9 / 19.5;
    border-radius: 12px;
    box-shadow: none;
    display: block;
    object-fit: cover;
}

.feature-text-wrapper {
    flex: 1;
    max-width: 400px;
}

.alternating-feature-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.alternating-feature-description {
    font-size: 1.25rem;
    color: var(--secondary-text);
    line-height: 1.6;
    margin: 0;
}

.resource-icons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.resource-icon {
    height: 24px;
    width: auto;
    display: block;
}

/* Standalone Blog Article Pages */
body.article-page {
    background: var(--bg-color);
    color: var(--primary-text);
}

.article-home-link {
    position: fixed;
    top: 16px;
    left: 155px;
    z-index: 10;
}

.article-home-logo {
    height: 40px;
    width: auto;
    display: block;
}

.article-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 4.5rem var(--gutter) 6rem;
}

.article-header {
    margin-bottom: 2.5rem;
}

.article-kicker {
    display: none;
}

.article-kicker-image {
    height: 100px;
    width: auto;
    display: block;
    margin-bottom: 1rem;
}

.article-title {
    font-size: 2.6rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
    color: inherit;
}

.article-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-text);
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--secondary-text);
    margin-bottom: 1.5rem;
}

.article-breadcrumb {
    font-size: 0.85rem;
    color: var(--secondary-text);
}

.article-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--primary-text);
}

.article-body p {
    margin-bottom: 1.6rem;
}

.article-body a {
    color: var(--primary-text);
}

.article-body a:hover {
    color: #2eaadc;
}

.article-standout {
    position: relative;
    padding-left: 1.25rem;
    font-weight: 700;
}

.article-standout::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-text);
    border-radius: 2px;
}

.article-references {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.article-reference-title {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    color: var(--primary-text);
    text-decoration: underline;
}

.article-reference-block p {
    margin-bottom: 0.75rem;
}

.article-callout {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    color: var(--secondary-text);
}

/* Reviews Section */
.reviews-section {
    padding: 6rem 0;
    background: var(--bg-color);
}

.reviews-title {
    font-size: 2.5rem;
    color: var(--primary-text);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.reviews-highlight {
    color: var(--accent-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    position: relative;
    background: var(--bg-color);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: none;
    border-radius: 12px;
    padding: 1.5rem 1.5rem 1.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: none;
}

.review-card::before {
    content: "";
    position: absolute;
    left: 1.25rem;
    top: 1.5rem;
    bottom: 1.5rem;
    width: 3px;
    border-radius: 2px;
    background: var(--primary-text);
}

.review-card:hover {
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.review-user-info {
    display: flex;
    flex-direction: column;
}

.review-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-text);
    margin: 0;
}

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

.review-twitter-icon {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.review-text {
    font-size: 1rem;
    color: var(--primary-text);
    line-height: 1.6;
    margin: 0;
}

.review-meta {
    font-size: 0.9rem;
    color: var(--secondary-text);
    margin: 0;
    margin-top: auto;
}

/* Buttons */
.btn {
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

.btn-accent {
    background: var(--accent-color);
    color: var(--primary-text);
}

.btn-accent:hover {
    background: #2599c4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 170, 220, 0.3);
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: var(--bg-color);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-text);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    border: 3px solid var(--accent-color);
    display: block;
}

.team-photo-will {
    object-fit: cover;
    background-color: #2eaadc !important;
    background-size: cover;
    border: 3px solid #2eaadc !important;
    padding: 0;
    box-sizing: border-box;
    background-clip: padding-box;
    outline: none;
    box-shadow: none;
    overflow: hidden;
}

.team-member h3 {
    font-size: 1.5rem;
    color: var(--primary-text);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--secondary-text);
    margin-bottom: 1rem;
}

.team-linkedin {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.team-linkedin:hover {
    text-decoration: underline;
}

/* Newsletter Section */
.newsletter-section {
    padding: 6rem 0;
    background: var(--bg-color);
    text-align: center;
}

.newsletter-description {
    color: var(--secondary-text);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-input {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg-light);
    color: var(--primary-text);
    transition: border-color 0.3s;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent-color);
}

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

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.faq-subtitle {
    text-align: center;
    color: var(--secondary-text);
    margin-bottom: 0.5rem;
}

.faq-description {
    text-align: center;
    color: var(--secondary-text);
    margin-bottom: 3rem;
}

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

.faq-item {
    margin-bottom: 1rem;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--primary-text);
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-item:not(.active) .faq-question:hover {
    background: var(--bg-light);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(90deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--secondary-text);
    line-height: 1.8;
    margin: 0 0 0.9rem;
}

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

@media (max-width: 768px) {
    .faq-item.active .faq-answer {
        max-height: 70vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Page Content (for other pages) */
.page-content {
    padding: 3rem 0 0;
    min-height: 60vh;
}

.page-content:has(.blog-list) {
    min-height: auto;
    padding-bottom: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.footer {
    margin-top: auto;
}

.page-content:has(.team-grid) {
    padding-bottom: 6rem;
}

/* Roadmap Page */
.roadmap-card {
    background: var(--bg-color);
    border-radius: 14px;
    padding: 2.5rem;
    max-width: 900px;
    margin: 2rem auto 4rem;
    color: var(--primary-text);
    box-shadow: none;
    transition: box-shadow 0.2s ease;
}

.roadmap-card:hover {
    box-shadow: none;
}

.roadmap-header {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.roadmap-title {
    font-size: 4rem;
    margin: 0 0 0.5rem;
    color: inherit;
}

.roadmap-subtitle {
    margin: 0;
    color: var(--secondary-text);
    font-size: 0.95rem;
}

.roadmap-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--secondary-text);
}

.roadmap-filters {
    display: flex;
    gap: 2rem;
}

.roadmap-filter::before {
    content: "›";
    margin-right: 0.5rem;
}

.roadmap-action {
    background: #2eaadc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    cursor: pointer;
}

.roadmap-timeline {
    position: relative;
    padding: 2rem 0 1rem 0;
}

.roadmap-timeline::before {
    content: "";
    position: absolute;
    left: 120px;
    top: 12px;
    bottom: 0;
    width: 2px;
    background: #d9d9d9;
}

.roadmap-section {
    margin-bottom: 2.5rem;
}

.roadmap-section-title {
    font-size: 0.85rem;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    color: #8a8a8a;
    margin: 0 0 1.5rem 160px;
}

.roadmap-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.roadmap-item {
    display: grid;
    grid-template-columns: 100px 20px 1fr;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
}

.roadmap-date {
    font-size: 0.8rem;
    color: #9a9a9a;
    text-align: right;
    padding-top: 0.2rem;
}

.roadmap-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2eaadc;
    margin-top: 0.35rem;
}

.roadmap-content {
    padding-bottom: 0.2rem;
}

.roadmap-item-title {
    margin: 0;
    font-size: 1rem;
    color: var(--primary-text);
}

.roadmap-item:hover .roadmap-item-title {
    color: #2eaadc;
}

.roadmap-item-meta {
    margin: 0.2rem 0 0;
    color: #9a9a9a;
    font-size: 0.85rem;
}

/* Changelog Page Styles */
.changelog-header {
    text-align: center;
    padding: 3rem 0 4rem;
    max-width: 700px;
    margin: 0 auto;
}

.changelog-page-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-text);
    margin: 0 0 1rem;
}

.changelog-page-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-text);
    margin: 0;
    line-height: 1.6;
}

/* Roadmap Tabs */
.roadmap-tabs {
    display: flex;
    justify-content: center;
    gap: 1.75rem;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.roadmap-tab {
    background: none;
    border: none;
    padding: 1.15rem 1.85rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-text);
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
    font-family: inherit;
}

.roadmap-tab:hover {
    color: var(--primary-text);
}

.roadmap-tab.is-active {
    color: var(--accent-color);
}

.roadmap-tab.is-active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-color);
}

/* Roadmap Panels */
.roadmap-panels {
    position: relative;
}

.roadmap-panel {
    display: none;
}

.roadmap-panel.is-active {
    display: block;
}

.changelog-list {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 4rem;
}

.changelog-entry {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 3rem;
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
}

.changelog-entry:first-child {
    border-top: none;
}

.changelog-entry:last-child {
    border-bottom: 1px solid var(--border-color);
}

.changelog-rail {
    position: sticky;
    top: 100px;
    align-self: start;
    text-align: right;
    padding-right: 1rem;
}

.changelog-number {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.changelog-date {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary-text);
    font-weight: 500;
}

.changelog-content {
    min-width: 0;
}

.changelog-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-text);
    margin: 0 0 1rem;
    line-height: 1.3;
}

.changelog-intro {
    font-size: 1rem;
    color: var(--secondary-text);
    margin: 0 0 2rem;
    line-height: 1.7;
}

.changelog-outro {
    font-size: 1rem;
    color: var(--secondary-text);
    margin: 2rem 0 0;
    line-height: 1.7;
    font-style: italic;
}

.changelog-section {
    margin-bottom: 2rem;
}

.changelog-section-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary-text);
    margin: 0 0 1rem;
}

.changelog-list-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.changelog-list-items li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--primary-text);
    line-height: 1.6;
}

.changelog-list-items li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-color);
}

.changelog-image-block {
    margin: 2rem auto;
    max-width: 720px;
}

.changelog-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.changelog-image-block.phone-mockup {
    max-width: 280px;
    padding: 14px;
    background: #0f1115;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    position: relative;
}

.changelog-image-block.phone-mockup::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 8px;
    background: #1a1f27;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.changelog-image-block.phone-mockup .changelog-image {
    border-radius: 20px;
}

/* Changelog Responsive - Tablet */
@media (max-width: 768px) {
    .changelog-header {
        padding: 2rem 0 3rem;
    }

    .changelog-page-title {
        font-size: 2.5rem;
    }

    .roadmap-tabs {
        gap: 1rem;
        margin-bottom: 1.75rem;
    }

    .roadmap-tab {
        padding: 0.85rem 1.25rem;
        font-size: 1rem;
    }

    .changelog-entry {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 0;
    }

    .changelog-rail {
        position: static;
        text-align: left;
        padding-right: 0;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .changelog-number {
        margin-bottom: 0;
    }

    .changelog-title {
        font-size: 1.5rem;
    }
}

/* Changelog Responsive - Small Mobile */
@media (max-width: 480px) {
    .changelog-page-title {
        font-size: 2rem;
    }

    .changelog-page-subtitle {
        font-size: 1rem;
    }

    .roadmap-tab {
        padding: 0.6rem 0.75rem;
        font-size: 0.9rem;
    }

    .changelog-title {
        font-size: 1.25rem;
    }

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

/* Privacy & Terms Page Styles */
.privacy-terms-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 0 4rem;
}

.privacy-terms-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-text);
    text-align: center;
    margin-bottom: 1rem;
}

.privacy-terms-date {
    text-align: center;
    color: var(--secondary-text);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.privacy-terms-intro {
    text-align: center;
    color: var(--primary-text);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.privacy-terms-toggles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.privacy-terms-toggle {
    background: var(--bg-color);
    border: 1px solid transparent;
    border-radius: 14px;
    overflow: hidden;
    transition: border 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.privacy-terms-toggle:hover {
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.privacy-terms-toggle-button {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--primary-text);
    font-size: 1.3rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background 0.3s ease;
}

.privacy-terms-toggle-button:focus {
    outline: 2px solid var(--secondary-text);
    outline-offset: 2px;
}

.privacy-terms-toggle-title {
    flex: 1;
}

.privacy-terms-toggle-icon {
    font-size: 1.4rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.privacy-terms-toggle.active .privacy-terms-toggle-icon {
    transform: rotate(90deg);
}

.privacy-terms-toggle-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 2rem;
    margin: 0;
}

.privacy-terms-toggle.active .privacy-terms-toggle-content {
    max-height: 2000px;
    padding: 1.5rem 2rem 2rem;
}

.privacy-terms-toggle-content p {
    color: var(--primary-text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-terms-toggle-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
    color: var(--primary-text);
}

.privacy-terms-toggle-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: var(--primary-text);
}

.privacy-terms-toggle-content a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

.privacy-terms-toggle-content a:hover {
    color: #2599c4;
    text-decoration: underline;
}

.privacy-terms-toggle-content strong {
    font-weight: 700;
    color: var(--primary-text);
}

.privacy-terms-toggle-content em {
    font-style: italic;
    color: var(--secondary-text);
}

.page-title {
    font-size: 3rem;
    color: var(--primary-text);
    margin-bottom: 0rem;
    text-align: center;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-intro {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--secondary-text);
    margin-bottom: 0;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Us Vision Section */
.about-vision-section {
    padding: 0 0 3rem;
    background: var(--bg-color);
    margin-top: -15rem;
}

.about-vision-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-vision-image {
    flex: 0 0 50%;
    max-width: 50%;
}

.about-vision-text {
    flex: 0 0 50%;
    max-width: 50%;
}

.about-illustration {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: contain;
}

.about-callout {
    display: inline-block;
    background-color: rgba(46, 170, 220, 0.2);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-text);
    margin-bottom: 1rem;
    text-align: left;
}

.about-heading-highlight {
    color: #2eaadc;
}

.about-quote {
    margin: 0;
    padding: 0;
    border: none;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--primary-text);
}

.about-quote p {
    margin-bottom: 1rem;
}

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

.about-quote em {
    font-style: italic;
    color: var(--primary-text);
}

.about-quote-with-line {
    position: relative;
    padding-left: 2rem;
}

.about-quote-with-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--primary-text);
    border-radius: 2px;
}

/* About Us Mission Section */
.about-mission-section {
    padding: 6rem 0;
    background: var(--bg-color);
    margin-top: -6rem;
}

.about-mission-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-mission-image {
    flex: 0 0 50%;
    max-width: 50%;
}

.about-mission-text {
    flex: 0 0 50%;
    max-width: 50%;
}

/* About Us Values Section */
.about-values-section {
    padding: 6rem 0;
    background: var(--bg-color);
    margin-top: -9rem;
}

.animate-in-left,
.animate-in-right,
.animate-in-up {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: 0.08s;
    will-change: opacity, transform;
}

.animate-in-left {
    transform: translateX(-40px);
}

.animate-in-right {
    transform: translateX(40px);
}

.animate-in-up {
    transform: translateY(40px);
}

.animate-in-left.is-visible,
.animate-in-right.is-visible,
.animate-in-up.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.about-values-section .about-callout {
    text-align: center;
    display: block;
    margin: 0 auto 1.5rem;
    width: fit-content;
}

.about-values-section .about-section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-value-card {
    background: var(--bg-color);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-value-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.about-value-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: calc((100% - 2rem) / 2);
    justify-self: center;
}

.about-value-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
    object-fit: contain;
}

.about-value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-text);
    margin-bottom: 1.5rem;
}

.about-value-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--primary-text);
    margin-bottom: 1rem;
}

.about-value-text:last-child {
    margin-bottom: 0;
}

/* Features Page */
.features-header-section {
    padding: 8rem 0 2rem;
    background: var(--bg-color);
    text-align: center;
}

.features-main-headline {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-text);
    text-align: center;
    margin: 0 auto 1.5rem;
    line-height: 1.2;
    max-width: 900px;
}

.features-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--secondary-text);
    text-align: center;
    margin: 0 auto;
    line-height: 1.6;
    max-width: 800px;
}

.features-subtitle-primary {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-text);
    margin-bottom: 0.35rem;
}

.features-brand-highlight {
    font-weight: 700;
    color: var(--accent-color);
}

.features-page-section {
    padding: 2rem 0 6rem;
    background: var(--bg-color);
}

.features-page-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-text);
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.features-grid-page {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
    justify-items: center;
}

.feature-card-centered {
    grid-column: 1 / -1;
    justify-self: center;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.feature-screenshot-container {
    width: fit-content;
    max-width: 240px;
    aspect-ratio: auto;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-screenshot-container:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.feature-screenshot {
    width: 100%;
    height: auto;
    border-radius: 0;
    display: block;
    object-fit: cover;
}

.feature-card {
    max-width: 280px;
}

.feature-description {
    font-size: 1rem;
    color: var(--secondary-text);
    text-align: center;
    margin: 0;
    max-width: 500px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.product-card h2 {
    color: var(--primary-text);
    margin-bottom: 1rem;
}

.product-card p {
    color: var(--secondary-text);
    margin-bottom: 1.5rem;
}

/* Blog Posts */
.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-post-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.blog-post-card h2 {
    color: var(--primary-text);
    margin-bottom: 0.5rem;
}

.blog-date {
    color: var(--secondary-text);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-excerpt {
    color: var(--secondary-text);
    margin-bottom: 1.5rem;
}

/* Blog List Layout (Day One Style) */
.blog-page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-text);
    margin-bottom: 3rem;
    text-align: left;
}

.blog-title-image {
    height: 10.5rem;
    width: auto;
    display: block;
    margin-bottom: 3rem;
    margin-left: -120px;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 800px;
}

.blog-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 0;
}

.blog-clay-image {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
    box-shadow: none;
    filter: saturate(0.85) contrast(0.95);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-list-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.blog-list-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-text);
    margin: 0;
    line-height: 1.3;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-list-title:hover {
    color: #2eaadc;
    text-decoration: underline;
}

.blog-list-date {
    font-size: 0.95rem;
    color: var(--secondary-text);
    margin: 0;
    font-weight: 400;
}

/* Docs Content */
.docs-content {
    max-width: 900px;
    margin: 0 auto;
}

.docs-section {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.docs-section h2 {
    color: var(--primary-text);
    margin-bottom: 1rem;
}

.docs-section p {
    color: var(--secondary-text);
    line-height: 1.8;
}

/* Members Form */
.members-form-container {
    max-width: 500px;
    margin: 0 auto;
}

.members-form {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.members-form h2 {
    color: var(--primary-text);
    margin-bottom: 2rem;
    text-align: center;
}

.form-input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg-color);
    color: var(--primary-text);
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-color);
}

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

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--secondary-text);
}

.form-footer a {
    color: var(--accent-color);
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Product Detail Page */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-image img {
    width: 100%;
    border-radius: 8px;
}

.product-info h2 {
    color: var(--primary-text);
    margin-bottom: 1rem;
}

.product-info p {
    color: var(--secondary-text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.product-features {
    margin-bottom: 2rem;
}

.product-features h3 {
    color: var(--primary-text);
    margin-bottom: 1rem;
}

.product-features ul {
    list-style: none;
    padding-left: 0;
}

.product-features li {
    color: var(--secondary-text);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.product-features li:before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* Footer */
.footer {
    background: var(--bg-light);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
}

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

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--secondary-text);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--secondary-text);
    font-size: 0.9rem;
}

/* Contact Page */
.contact-page {
    padding: 4rem 0 6rem;
}

.contact-title {
    text-align: left;
    color: var(--primary-text);
    font-size: 3rem;
    margin-bottom: 2rem;
}

.contact-card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    max-width: 720px;
    margin: 0 auto;
    padding: 2.5rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.contact-card-title {
    color: var(--primary-text);
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form label {
    color: var(--primary-text);
    font-weight: 700;
    font-size: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.85rem 1rem;
    color: var(--primary-text);
    font-size: 1rem;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(46, 170, 220, 0.15);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-submit {
    align-self: flex-start;
    padding: 0.75rem 1.6rem;
    background: var(--bg-color);
    color: var(--primary-text);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.contact-submit:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #0d1117; /* dark text for contrast on blue */
}

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

/* Premium Page */
.premium-hero {
    padding: 3rem 0 1.25rem;
    min-height: auto;
    text-align: center;
}

.premium-title {
    font-size: 3rem;
    color: var(--primary-text);
    margin-bottom: 1rem;
    font-weight: 800;
}

.premium-subtitle {
    font-size: 1.25rem;
    color: var(--primary-text);
    margin-bottom: 0.75rem;
}

.premium-note {
    font-size: 1rem;
    color: var(--secondary-text);
}

.premium-pricing {
    padding: 0 0 3rem;
}

.premium-pricing-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.premium-currency-label {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--secondary-text);
}

.premium-currency-select {
    appearance: none;
    border: 1px solid var(--border-color);
    background: var(--bg-color);
    color: var(--primary-text);
    border-radius: 8px;
    padding: 0.45rem 0.65rem;
    font-size: 0.92rem;
    line-height: 1.2;
}

.premium-currency-select:focus-visible {
    outline: 2px solid rgba(46, 170, 220, 0.5);
    outline-offset: 2px;
}

.premium-pricing-note {
    margin: 0;
    font-size: 0.82rem;
    color: var(--secondary-text);
    max-width: 620px;
}

.premium-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: stretch;
    margin-top: 0;
}

.pricing-card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 14px 32px rgba(46, 170, 220, 0.3);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.pricing-card h2 {
    font-size: 1.75rem;
    color: var(--primary-text);
    margin: 0;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-text);
}

.pricing-detail {
    color: var(--secondary-text);
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--primary-text);
}

.pricing-premium {
    background: var(--accent-color);
    color: #fff;
    border: none;
}

.pricing-premium h2,
.pricing-premium .pricing-amount,
.pricing-premium .pricing-features li {
    color: #fff;
}

.pricing-premium .pricing-detail {
    color: rgba(255, 255, 255, 0.72);
}

.pricing-premium .pricing-detail:last-of-type {
    font-size: 0.85rem;
}

.animate-slide-left {
    opacity: 0;
    animation: slideInLeft 0.8s ease-out 0s forwards;
}

.animate-slide-right {
    opacity: 0;
    animation: slideInRight 0.8s ease-out 0s forwards;
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.premium-compare {
    padding: 3rem 0 6rem;
}

.compare-heading {
    font-size: 2rem;
    color: var(--primary-text);
    margin-bottom: 1.5rem;
}

.compare-table {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--compare-divider);
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-color);
    max-height: 70vh;
    overflow-y: auto;
    position: relative;
}

.compare-table-mobile {
    display: none;
}

.compare-table-panel {
    border: 1px solid var(--compare-divider);
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-color);
}

.compare-table-title {
    padding: 0.9rem 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-text);
    border-bottom: 1px solid var(--compare-divider);
    background: transparent;
}

.compare-table-panel.premium-panel,
.compare-table-panel.premium-panel .compare-table-title,
.compare-table-panel.premium-panel .compare-row,
.compare-table-panel.premium-panel .compare-header {
    background: transparent;
}

.compare-table-panel.premium-panel .compare-header .compare-cell {
    background: transparent;
}

.compare-table-panel.premium-panel .compare-cell,
.compare-table-panel.premium-panel .compare-table-title {
    color: var(--primary-text);
}

.compare-table-panel.premium-panel .compare-subtitle {
    color: rgba(255, 255, 255, 0.72);
}

.compare-table-panel.premium-panel .compare-row {
    border-bottom-color: var(--compare-divider);
}

.compare-table-panel.premium-panel .compare-table-title {
    border-bottom-color: var(--compare-divider);
}

.compare-table-panel.premium-panel .compare-detail-content {
    background: #1a1a1a;
    border: 1px solid var(--border-color);
}

.compare-roadmap-cta {
    margin-top: 2rem;
    text-align: center;
}

.compare-roadmap-title {
    font-size: 1.4rem;
    color: var(--primary-text);
    margin-bottom: 1rem;
}

.compare-roadmap-chip {
    display: inline-block;
    background: #2eaadc;
    color: #ffffff;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.compare-roadmap-chip:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(46, 170, 220, 0.25);
}

.compare-table-panel + .compare-table-panel {
    margin-top: 1.5rem;
}

.compare-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--compare-divider);
    gap: 1rem;
    background: transparent;
    transition: background 0.2s ease;
}

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

.compare-header {
    background: var(--bg-color);
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 10;
}

.compare-header .compare-cell {
    position: sticky;
    top: 0;
    background: transparent;
    z-index: 11;
}

.compare-cell {
    color: var(--primary-text);
    font-size: 1rem;
}

.compare-feature {
    font-weight: 700;
}

.compare-subtitle-row {
    display: none;
}

.compare-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--secondary-text);
}

.compare-feature-tooltip {
    position: relative;
    display: inline-block;
    cursor: help;
}

.compare-detail {
    margin: 0;
}

.compare-detail-inline {
    display: inline-block;
    max-width: 100%;
}

.compare-detail summary {
    list-style: none;
    cursor: pointer;
    display: inline-block;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.55);
    padding-bottom: 2px;
}

.compare-detail summary::-webkit-details-marker {
    display: none;
}

.compare-detail-content {
    margin-top: 0.6rem;
    padding: 0.65rem 0.8rem;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.9rem;
    line-height: 1.4;
}

.compare-detail-list {
    margin: 0;
    padding-left: 1.15rem;
    display: grid;
    gap: 0.35rem;
}

.compare-detail-list li {
    margin: 0;
}

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

.compare-header:hover .compare-premium {
    color: var(--primary-text);
    font-weight: 600;
}

.compare-feature-tooltip .tooltip-content {
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 0.6rem;
    padding: 0.65rem 0.8rem;
    max-width: 260px;
    background: #101418;
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.4;
    border-radius: 8px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 10;
}

.compare-feature-tooltip:hover .tooltip-content,
.compare-feature-tooltip:focus .tooltip-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.compare-basic,
.compare-premium {
    text-align: center;
    font-weight: 600;
}

.compare-premium {
    color: var(--primary-text);
}

.compare-cell.has-indicator {
    text-align: center;
}

.compare-indicator {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    line-height: 1;
    color: #ffffff;
}

.compare-indicator.is-included {
    background: var(--compare-status-yes);
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

.compare-indicator.is-excluded {
    background: var(--compare-status-no);
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

.compare-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

.compare-row:hover .compare-premium {
    color: var(--accent-color);
    font-weight: 700;
}

.compare-row.compare-header:hover {
    background: var(--bg-color);
}

.compare-row.compare-header:hover .compare-premium {
    color: var(--primary-text);
    font-weight: 600;
}

/* CTA Download */
.cta-download {
    padding: 4rem 0;
    text-align: center;
    background: var(--bg-color);
}

.cta-download-title {
    font-size: 2.4rem;
    color: var(--primary-text);
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-download-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-text);
    margin-bottom: 2rem;
}

.cta-download-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.cta-secondary {
    padding: 3.5rem 0;
    text-align: center;
}

.cta-secondary-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-text);
    margin-bottom: 1rem;
}

.cta-secondary-links {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.cta-secondary-link {
    color: var(--secondary-text);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 600;
}

.cta-secondary-link:hover {
    color: var(--accent-color);
}

.cta-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.3);
    display: inline-block;
}

.section-divider {
    width: calc(100% - (2 * var(--gutter-lg)));
    height: 0.5px;
    background: rgba(255, 255, 255, 0.2);
    margin: 2.5rem auto;
}

/* Meet the Devs Section */
.meet-devs-section {
    padding: 5rem 0;
    background: var(--bg-color);
}

.meet-devs-content {
    display: flex;
    align-items: stretch;
    gap: 4rem;
}

.meet-devs-text {
    flex: 1;
    max-width: 50%;
}

.meet-devs-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.meet-devs-description {
    font-size: 1rem;
    color: var(--secondary-text);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.meet-devs-description:last-of-type {
    margin-bottom: 2rem;
}

.meet-devs-founders {
    display: flex;
    gap: 2.5rem;
}

.meet-devs-founder {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.meet-devs-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}

.meet-devs-founder-info {
    display: flex;
    flex-direction: column;
}

.meet-devs-founder-name {
    font-weight: 600;
    color: var(--primary-text);
    font-size: 0.95rem;
}

.meet-devs-founder-role {
    font-size: 0.8rem;
    color: var(--secondary-text);
}

.meet-devs-collage {
    flex: 1;
    max-width: 50%;
    position: relative;
    min-height: 520px;
}

.meet-devs-bubble {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    background-size: cover;
    background-position: center;
    cursor: pointer;
    text-decoration: none;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.meet-devs-avatar-link {
    display: inline-flex;
    border-radius: 50%;
    text-decoration: none;
    cursor: pointer;
}

.meet-devs-avatar {
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.meet-devs-bubble:hover,
.meet-devs-bubble:focus-visible {
    border-color: #2eaadc;
    box-shadow: 0 0 0 3px rgba(46, 170, 220, 0.5);
    outline: none;
    transform: translateY(-1px);
}

.meet-devs-avatar-link:hover .meet-devs-avatar,
.meet-devs-avatar-link:focus-visible .meet-devs-avatar {
    border-color: #2eaadc;
    box-shadow: 0 0 0 3px rgba(46, 170, 220, 0.5);
    outline: none;
    transform: translateY(-1px);
}

/* Top-left: near upper-left */
.meet-devs-bubble.bubble-2 {
    top: 0;
    left: 24%;
    background-image: url("assets/images/main-page-images/founders-hass-running.PNG");
}

/* Top-right: slightly lower than top-left, near upper-right */
.meet-devs-bubble.bubble-3 {
    top: 12%;
    right: 10%;
    background-image: url("assets/images/main-page-images/founders-hass.jpg");
}

/* Middle-left: larger circle, centered vertically on left side */
.meet-devs-bubble.bubble-1 {
    width: 180px;
    height: 180px;
    top: 32%;
    left: 8%;
    background-image: url("assets/images/main-page-images/founders-hassWillOasis.jpg");
}

/* Middle-right: to the right of middle-left, slightly lower */
.meet-devs-bubble.bubble-4 {
    top: 48%;
    right: 20%;
    background-image: url("assets/images/main-page-images/founders-will-climb.PNG");
}

/* Bottom-left: near lower-left */
.meet-devs-bubble.bubble-5 {
    bottom: 0;
    left: 32%;
    background-image: url("assets/images/main-page-images/founders-will.jpg");
}

/* Responsive Design */
/* iPad and Tablet Responsive */
@media (max-width: 1024px) {
    .hero {
        padding: 4.5rem 0 0;
    }

    .hero-logo img {
        width: 110px;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .tagline-text {
        font-size: 1.25rem;
    }

    .app-store-image {
        height: 70px;
    }

    .google-play-image {
        height: 38px;
    }

    .alternating-feature-item {
        gap: 3rem;
        max-width: 800px;
    }

    .blog-page-title {
        font-size: 2.8rem;
    }

    .blog-title-image {
        margin-left: -60px;
        height: 9rem;
    }

    .blog-clay-image {
        width: 65px;
        height: 65px;
    }

    .cta-download {
        padding: 3rem 0;
    }

    .cta-download-title {
        font-size: 2rem;
    }

    .cta-download-subtitle {
        font-size: 1.05rem;
    }

    .cta-download-buttons {
        gap: 1rem;
    }

    .cta-secondary {
        padding: 3rem 0;
    }

    .cta-secondary-title {
        font-size: 1.9rem;
    }

    .cta-secondary-links {
        font-size: 1.05rem;
        gap: 0.9rem;
    }

    .feature-image-wrapper {
        flex: 0 0 28%;
        max-width: 28%;
    }

    .alternating-feature-image {
        max-width: 360px;
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .alternating-feature-headline {
        font-size: 2.2rem;
    }

    .resource-icons {
        gap: 0.6rem;
    }

    .resource-icon {
        height: 22px;
    }

    .features-grid {
        gap: 2.5rem;
    }

    .feature-big-text {
        font-size: 2.2rem;
    }

    .feature-secondary-text {
        font-size: 1rem;
    }

    .reviews-title {
        font-size: 2.1rem;
    }

    .reviews-grid {
        gap: 1.5rem;
    }

    .review-card {
        padding: 1.25rem;
    }

    .about-vision-content,
    .about-mission-content {
        gap: 3rem;
    }

    .about-section-heading {
        font-size: 2.2rem;
    }

    .about-values-grid {
        gap: 1.5rem;
    }

    .privacy-terms-title {
        font-size: 2.5rem;
    }

    .privacy-terms-section-title {
        font-size: 1.3rem;
    }

    .privacy-terms-toggle-button {
        padding: 1.25rem 1.5rem;
        font-size: 1.2rem;
    }

    .premium-title {
        font-size: 2.6rem;
    }

    .premium-pricing-grid {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .premium-pricing-controls {
        margin-bottom: 0.9rem;
    }

    .pricing-card {
        padding: 1.75rem;
    }

    .compare-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        padding: 0.85rem 1.25rem;
    }

    .animate-slide-left {
        animation: slideInLeftMd 0.7s ease-out 0s forwards;
    }

    .animate-slide-right {
        animation: slideInRightMd 0.7s ease-out 0s forwards;
    }

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

    @keyframes slideInRightMd {
        from {
            opacity: 0;
            transform: translateX(25px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .meet-devs-content {
        gap: 3rem;
    }

    .meet-devs-title {
        font-size: 2.2rem;
    }

    .meet-devs-collage {
        min-height: 460px;
    }

    .meet-devs-bubble {
        width: 130px;
        height: 130px;
    }

    .meet-devs-bubble.bubble-1 {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3.5rem 0 0;
    }

    .hero-logo img {
        width: 90px;
    }

    .hero-title {
        font-size: 2.2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .hero-line-1,
    .hero-line-2,
    .hero-line-3 {
        display: block;
        width: 100%;
    }

    .hero-line-2 {
        min-height: 1.2em;
        text-align: center;
    }

    .rotating-text {
        min-width: 8.6em;
        text-align: center;
    }

    .rotating-word {
        min-height: 1.2em;
        vertical-align: top;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-color);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        font-size: 1rem;
        transition: right 0.3s ease;
        border-left: 1px solid var(--border-color);
        z-index: 100;
    }

    .nav-menu.active {
        right: 0;
    }

    .alternating-feature-item {
        flex-direction: column !important;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .feature-image-wrapper {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        order: 1;
    }

    .alternating-feature-image {
        max-width: 100%;
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .feature-text-wrapper {
        max-width: 100%;
        order: 2;
    }

    .alternating-feature-headline {
        font-size: 1.8rem;
        text-align: center;
    }

    .alternating-feature-description {
        font-size: 1rem;
        text-align: center;
        line-height: 1.5;
    }

    .resource-icons {
        gap: 0.5rem;
        justify-content: center;
    }

    .resource-icon {
        height: 20px;
    }

    .tagline-text {
        font-size: 1.1rem;
    }

    .app-store-image {
        height: 60px;
    }

    .google-play-image {
        height: 34px;
    }

    .features-section {
        padding: 2rem 0 2rem;
    }

    .features-grid {
        gap: 2rem;
    }

    .feature-big-text {
        font-size: 2rem;
    }

    .feature-secondary-text {
        font-size: 0.95rem;
    }

    .reviews-title {
        font-size: 1.9rem;
    }

    .review-card {
        padding: 1.1rem 1.1rem 1.1rem 2rem;
    }

    .review-card::before {
        left: 0.85rem;
        top: 1.1rem;
        bottom: 1.1rem;
    }

    .review-avatar {
        width: 40px;
        height: 40px;
    }

    .problems-grid,
    .products-grid,
    .blog-posts,
    .reviews-grid,
    .features-grid-page {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .product-detail {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .blog-page-title {
        font-size: 2.5rem;
    }

    .blog-title-image {
        margin-left: 0;
        height: 8rem;
    }

    .blog-list {
        gap: 2rem;
    }

    .blog-list-item {
        gap: 1rem;
    }

    .blog-clay-image {
        width: 60px;
        height: 60px;
    }

    .blog-list-title {
        font-size: 1.3rem;
    }

    .article-home-link {
        left: var(--gutter);
    }

    .article-title {
        font-size: 2rem;
    }

    .article-container {
        padding-top: 5rem;
    }

    .cta-download {
        padding: 2.5rem 0;
    }

    .cta-download-title {
        font-size: 1.8rem;
    }

    .cta-download-subtitle {
        font-size: 1rem;
    }

    .cta-download-buttons {
        flex-direction: row;
        gap: 0.9rem;
    }

    .cta-secondary {
        padding: 2.5rem 0;
    }

    .cta-secondary-title {
        font-size: 1.7rem;
    }

    .cta-secondary-links {
        gap: 0.75rem;
        font-size: 1rem;
    }

    .features-page-title {
        font-size: 2rem;
    }

    .features-main-headline {
        font-size: 2.5rem;
    }

    .features-subtitle {
        font-size: 1.1rem;
    }

    .action-buttons {
        flex-direction: row;
        gap: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .feature-big-text {
        font-size: 3rem;
    }

    .about-vision-content,
    .about-mission-content {
        flex-direction: column;
        gap: 2rem;
    }

    .about-vision-image,
    .about-mission-image,
    .about-vision-text,
    .about-mission-text {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .about-mission-content {
        flex-direction: column;
    }

    .about-section-heading {
        font-size: 2rem;
        text-align: center;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-value-card {
        padding: 2rem;
    }

    .about-value-card:nth-child(5) {
        max-width: 100%;
    }

    .about-quote-with-line {
        padding-left: 1.5rem;
    }

    .privacy-terms-title {
        font-size: 2.2rem;
    }

    .privacy-terms-toggle {
        border-radius: 12px;
    }

    .privacy-terms-toggle-button {
        padding: 1.1rem 1.25rem;
        font-size: 1.1rem;
        gap: 0.75rem;
    }

    .privacy-terms-toggle-content {
        padding: 0 1.25rem;
    }

    .privacy-terms-toggle.active .privacy-terms-toggle-content {
        padding: 0 1.25rem 1.5rem;
    }

    .contact-title {
        font-size: 2.2rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-card-title {
        font-size: 1.6rem;
    }

    .premium-hero {
        padding: 2rem 0 1rem;
        min-height: auto;
    }

    .premium-title {
        font-size: 2.2rem;
    }

    .premium-subtitle {
        font-size: 1.1rem;
    }

    .premium-pricing {
        padding: 0 0 2rem;
    }

    .premium-pricing-grid {
        margin-top: 0;
    }

    .premium-pricing-controls {
        margin-bottom: 0.7rem;
    }

    .premium-currency-select {
        width: 100%;
        max-width: 240px;
    }

    .pricing-amount {
        font-size: 2.2rem;
    }

    .roadmap-card {
        padding: 1.5rem;
    }

    .roadmap-title {
        font-size: 2.5rem;
    }

    .roadmap-controls {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .roadmap-timeline::before {
        left: 10px;
    }

    .roadmap-section-title {
        margin-left: 40px;
    }

    .roadmap-item {
        grid-template-columns: auto 20px 1fr;
    }

    .roadmap-date {
        font-size: 0.7rem;
        min-width: auto;
    }

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

    .compare-row {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .compare-basic,
    .compare-premium {
        text-align: left;
    }

    .animate-slide-left {
        animation: slideInLeftSm 0.65s ease-out 0s forwards;
    }

    .animate-slide-right {
        animation: slideInRightSm 0.65s ease-out 0s forwards;
    }

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

    @keyframes slideInRightSm {
        from {
            opacity: 0;
            transform: translateX(15px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .meet-devs-section {
        padding: 4rem 0;
    }

    .meet-devs-content {
        flex-direction: column;
        gap: 3rem;
    }

    .meet-devs-text {
        max-width: 100%;
        text-align: center;
    }

    .meet-devs-title {
        font-size: 2rem;
    }

    .meet-devs-founders {
        display: grid;
        grid-template-columns: repeat(2, minmax(120px, 1fr));
        gap: 1.5rem;
        max-width: 360px;
        margin: 0 auto;
    }

    .meet-devs-founder {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.6rem;
    }

    .meet-devs-founder-info {
        align-items: center;
    }

    .meet-devs-collage {
        max-width: 100%;
        min-height: 400px;
        width: 100%;
    }

    .meet-devs-bubble {
        width: 115px;
        height: 115px;
    }

    .meet-devs-bubble.bubble-1 {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 480px) {
    .alternating-feature-image {
        max-width: 280px;
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .rotating-text {
        min-width: 8.2em;
    }

    .hero-logo img {
        width: 78px;
    }

    .tagline-text {
        font-size: 1rem;
    }

    .app-store-image {
        height: 54px;
    }

    .google-play-image {
        height: 30px;
    }

    .feature-big-text {
        font-size: 1.7rem;
    }

    .feature-secondary-text {
        font-size: 0.9rem;
    }

    .alternating-feature-headline {
        font-size: 1.6rem;
    }

    .alternating-feature-description {
        font-size: 0.95rem;
        line-height: 1.45;
    }

    .reviews-title {
        font-size: 1.6rem;
    }

    .review-card {
        padding: 1rem 1rem 1rem 1.8rem;
    }

    .review-card::before {
        left: 0.75rem;
        top: 1rem;
        bottom: 1rem;
    }

    .review-avatar {
        width: 36px;
        height: 36px;
    }

    .review-text {
        font-size: 0.95rem;
    }

    .resource-icon {
        height: 20px;
    }

    .article-title {
        font-size: 1.7rem;
    }

    .roadmap-title {
        font-size: 2rem;
    }

    .roadmap-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .roadmap-date {
        text-align: left;
    }

    .roadmap-timeline::before {
        display: none;
    }

    .roadmap-dot {
        display: none;
    }

    .roadmap-section-title {
        margin-left: 0;
    }

    .meet-devs-section {
        padding: 3rem 0;
    }

    .meet-devs-title {
        font-size: 1.7rem;
    }

    .meet-devs-description {
        font-size: 0.95rem;
    }

    .meet-devs-founders {
        grid-template-columns: repeat(2, minmax(110px, 1fr));
        gap: 1.25rem;
    }

    .meet-devs-collage {
        min-height: 340px;
    }

    .meet-devs-bubble {
        width: 95px;
        height: 95px;
    }

    .meet-devs-bubble.bubble-1 {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .compare-table-desktop {
        display: flex;
        height: min(72vh, 640px);
        max-height: min(72vh, 640px);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        touch-action: pan-y;
    }

    .compare-table-mobile {
        display: none;
    }

    .compare-table-desktop .compare-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 0.85rem 0.9rem;
        gap: 0.55rem;
        align-items: center;
        text-align: left;
    }

    .compare-table-desktop .compare-row:not(.compare-header):not(.compare-subtitle-row) {
        grid-template-areas:
            "feature feature"
            "basic premium";
        row-gap: 0.7rem;
        padding-top: 0.95rem;
        padding-bottom: 0.95rem;
    }

    .compare-table-desktop .compare-header {
        position: sticky;
        top: 0;
        z-index: 20;
    }

    .compare-table-desktop .compare-header .compare-cell {
        position: sticky;
        top: 0;
        z-index: 21;
        background: var(--bg-color);
    }

    .compare-table-desktop .compare-row:not(.compare-header):not(.compare-subtitle-row) .compare-feature {
        grid-area: feature;
        font-size: 0.95rem;
        justify-self: start;
        width: 100%;
    }

    .compare-table-desktop .compare-row:not(.compare-header):not(.compare-subtitle-row) .compare-basic,
    .compare-table-desktop .compare-row:not(.compare-header):not(.compare-subtitle-row) .compare-premium,
    .compare-table-desktop .compare-row:not(.compare-header):not(.compare-subtitle-row) .compare-cell.has-indicator {
        text-align: center;
        justify-self: center;
    }

    .compare-table-desktop .compare-row:not(.compare-header):not(.compare-subtitle-row) .compare-basic,
    .compare-table-desktop .compare-row:not(.compare-header):not(.compare-subtitle-row) .compare-premium {
        grid-row: 2;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 2rem;
        width: 100%;
    }

    .compare-table-desktop .compare-row:not(.compare-header):not(.compare-subtitle-row) .compare-basic {
        grid-area: basic;
    }

    .compare-table-desktop .compare-row:not(.compare-header):not(.compare-subtitle-row) .compare-premium {
        grid-area: premium;
    }

    .compare-table-desktop .compare-row:not(.compare-header):not(.compare-subtitle-row) .compare-cell.has-indicator {
        grid-row: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 2rem;
        width: 100%;
    }

    .compare-table-desktop .compare-row.compare-header .compare-basic,
    .compare-table-desktop .compare-row.compare-header .compare-premium {
        display: flex;
        align-items: center;
        min-height: 2rem;
        width: 100%;
        justify-content: center;
    }

    .compare-table-desktop .compare-row.compare-header .compare-basic {
        grid-column: 1;
    }

    .compare-table-desktop .compare-row.compare-header .compare-premium {
        grid-column: 2;
    }

    .compare-table-desktop .compare-row.compare-header .compare-feature {
        display: none;
    }

    .compare-table-desktop .compare-row.compare-subtitle-row {
        grid-template-columns: 1fr;
        justify-content: stretch;
        row-gap: 0;
    }

    .compare-table-desktop .compare-row.compare-subtitle-row .compare-feature {
        width: 100%;
    }

    .compare-table-desktop .compare-row.compare-subtitle-row .compare-basic,
    .compare-table-desktop .compare-row.compare-subtitle-row .compare-premium {
        display: none;
    }
}
