:root {
--black: #0a0a0a;
--white: #FFFFFF;
--cream: #F7F3ED;
--blue: #7FABC8;
--green: #A6BEA4;
--orange: #E08F6A;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'DM Sans', sans-serif;
font-size: 18px;
line-height: 1.7;
color: var(--black);
background-color: var(--white);
}
/* Navigation */
nav {
padding: 24px 48px;
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1400px;
margin: 0 auto;
}
.logo {
font-family: 'Crimson Pro', serif;
font-size: 24px;
font-weight: 500;
color: var(--black);
text-decoration: none;
}
.nav-links {
display: flex;
gap: 40px;
list-style: none;
}
.nav-links a {
font-size: 15px;
color: var(--black);
text-decoration: none;
opacity: 0.7;
transition: opacity 0.2s;
}
.nav-links a:hover {
opacity: 1;
}
/* Hero Section */
.hero {
padding: 80px 80px 100px;
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
gap: 60px;
}
.hero-content {
text-align: left;
}
.hero-logo-container {
display: flex;
justify-content: center;
align-items: center;
}
.hero-logo {
max-width: 100%;
height: auto;
}
@keyframes breathe {
0%, 100% {
transform: scale(1);
opacity: 1;
}
50% {
transform: scale(1.03);
opacity: 0.95;
}
}
.label {
font-size: 12px;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--black);
opacity: 0.5;
margin-bottom: 24px;
}
h1 {
font-family: 'Crimson Pro', serif;
font-size: 56px;
font-weight: 500;
line-height: 1.15;
margin-bottom: 32px;
color: var(--black);
}
h1 em {
font-style: italic;
color: var(--blue);
}
.hero-subtitle {
font-size: 20px;
color: var(--black);
opacity: 0.8;
max-width: 600px;
margin: 0 0 48px;
}
.cta-primary {
display: inline-block;
background-color: var(--black);
color: var(--white);
padding: 18px 48px;
font-size: 16px;
font-weight: 500;
text-decoration: none;
border-radius: 4px;
transition: all 0.2s;
}
.cta-primary:hover {
background-color: #2a2a2a;
transform: translateY(-1px);
}
.cta-arrows {
color: var(--blue);
margin: 0 8px;
}
.cta-note {
margin-top: 16px;
font-size: 14px;
opacity: 0.6;
}
.hero-illustration {
display: flex;
justify-content: center;
align-items: center;
}
.hero-illustration img {
display: block;
width: 100%;
max-width: 480px;
height: auto;
}
/* Origin Story Section */
.origin {
background-color: var(--cream);
padding: 100px 48px;
}
.origin-inner {
max-width: 1000px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 280px;
gap: 60px;
align-items: start;
}
.origin-content {
max-width: 600px;
}
.origin-image img {
width: 100%;
height: auto;
}
.origin p {
margin-bottom: 24px;
}
.origin p:last-of-type {
margin-bottom: 0;
}
.signature {
margin-top: 40px;
font-family: 'Crimson Pro', serif;
font-style: italic;
font-size: 20px;
}
/* Process Section */
.process {
padding: 100px 48px;
max-width: 1000px;
margin: 0 auto;
}
.section-header {
text-align: center;
margin-bottom: 80px;
}
h2 {
font-family: 'Crimson Pro', serif;
font-size: 42px;
font-weight: 500;
margin-bottom: 20px;
}
h2 em {
font-style: italic;
color: var(--blue);
}
.section-intro {
font-size: 18px;
opacity: 0.8;
max-width: 600px;
margin: 0 auto;
}
/* Journey Cards */
.journey-cards {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 28px;
max-width: 900px;
margin: 0 auto;
}
.journey-card {
background: #fafaf8;
border-radius: 16px;
padding: 32px 28px 36px;
position: relative;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04), 0 8px 32px rgba(0, 0, 0, 0.06);
transition: transform 0.3s ease, box-shadow 0.3s ease;
opacity: 0;
animation: fadeInUp 0.6s ease-out forwards;
border: 1px solid rgba(0, 0, 0, 0.04);
}
.journey-card:hover {
transform: translateY(-6px);
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 12px 40px rgba(0, 0, 0, 0.1);
}
.journey-card:nth-child(1) { animation-delay: 0.1s; }
.journey-card:nth-child(2) { animation-delay: 0.15s; }
.journey-card:nth-child(3) { animation-delay: 0.2s; }
.journey-card:nth-child(4) { animation-delay: 0.25s; }
.journey-card:nth-child(5) { animation-delay: 0.3s; }
.journey-card:nth-child(6) { animation-delay: 0.35s; }
.card-number {
position: absolute;
top: 20px;
right: 20px;
width: 36px;
height: 36px;
border-radius: 50%;
background: #f5f4f0;
border: 1px solid rgba(10, 10, 10, 0.08);
display: flex;
align-items: center;
justify-content: center;
font-size: 13px;
font-weight: 500;
color: var(--green);
}
.journey-card h3 {
font-family: 'Crimson Pro', serif;
font-size: 24px;
font-weight: 600;
margin-bottom: 14px;
color: var(--black);
padding-right: 44px;
letter-spacing: -0.01em;
}
.journey-card p {
font-size: 15px;
line-height: 1.65;
color: var(--black);
opacity: 0.75;
}
.card-illustration {
margin-top: 24px;
border-radius: 12px;
overflow: hidden;
background: linear-gradient(180deg, #2a4a62 0%, #4a7a9a 100%);
}
.card-illustration svg {
display: block;
width: 100%;
height: auto;
}
/* Breathing Logo Animation */
@keyframes breathe {
0%, 100% {
transform: scale(1);
opacity: 0.9;
}
50% {
transform: scale(1.05);
opacity: 1;
}
}

/* Feature Card Animations */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.feature {
padding: 32px 24px;
background-color: var(--white);
border-radius: 8px;
opacity: 0;
animation: fadeInUp 0.6s ease-out forwards;
}
.feature:nth-child(1) {
animation-delay: 0.1s;
}
.feature:nth-child(2) {
animation-delay: 0.3s;
}
.feature:nth-child(3) {
animation-delay: 0.5s;
}
/* Features Section */
.features {
padding: 100px 48px;
background-color: var(--cream);
}
.features-inner {
max-width: 900px;
margin: 0 auto;
text-align: center;
}
.features h2 {
margin-bottom: 48px;
}
.features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 32px;
margin-bottom: 48px;
}
.feature-icon {
width: 48px;
height: 48px;
background-color: var(--green);
opacity: 0.3;
border-radius: 50%;
margin: 0 auto 20px;
}
.feature h4 {
font-family: 'Crimson Pro', serif;
font-size: 20px;
font-weight: 500;
margin-bottom: 8px;
}
.feature p {
font-size: 15px;
opacity: 0.7;
}
.format-note {
font-size: 16px;
opacity: 0.7;
margin-bottom: 40px;
}
/* CTA Section */
.cta-section {
padding: 100px 48px;
text-align: center;
max-width: 700px;
margin: 0 auto;
}
.cta-section h2 {
margin-bottom: 24px;
}
.cta-section p {
font-size: 18px;
opacity: 0.8;
margin-bottom: 40px;
}
/* Email Form */
.email-form {
max-width: 600px;
margin: 0 auto;
}
.form-row {
display: flex;
gap: 0;
background-color: var(--white);
border-radius: 8px;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
overflow: hidden;
}
.form-row input[type="email"] {
flex: 1;
padding: 20px 24px;
border: none;
font-family: 'Crimson Pro', serif;
font-size: 18px;
color: var(--black);
background: transparent;
outline: none;
}
.form-row input[type="email"]::placeholder {
color: var(--black);
opacity: 0.4;
}
.form-row button {
padding: 20px 32px;
background-color: var(--blue);
color: var(--white);
border: none;
font-family: 'Crimson Pro', serif;
font-size: 18px;
font-style: italic;
cursor: pointer;
transition: background-color 0.2s;
white-space: nowrap;
}
.form-row button:hover {
background-color: #6a9ab8;
}
.checkbox-row {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
margin-top: 20px;
font-size: 16px;
cursor: pointer;
}
.checkbox-row input[type="checkbox"] {
width: 20px;
height: 20px;
accent-color: var(--blue);
cursor: pointer;
}
.checkbox-row span {
color: var(--black);
opacity: 0.8;
}
.checkbox-row a {
color: var(--blue);
text-decoration: underline;
}
.checkbox-row a em {
font-style: italic;
}
.newsletter-note {
margin-top: 20px;
font-size: 16px;
color: var(--black);
opacity: 0.7;
}
.newsletter-note a {
color: #3d5a4c;
text-decoration: underline;
}
.newsletter-note a em {
font-style: italic;
}
.hero-form {
margin-top: 48px;
}
.hero-form .form-row {
background-color: var(--cream);
}
/* Quote Block */
.quote-block {
padding: 80px 48px 48px;
background-color: var(--cream);
text-align: center;
}
.quote-block blockquote {
font-family: 'Crimson Pro', serif;
font-size: 32px;
font-style: italic;
color: var(--black);
max-width: 700px;
margin: 0 auto 24px;
line-height: 1.4;
}
.quote-block cite {
font-size: 14px;
color: var(--black);
opacity: 0.6;
font-style: normal;
display: block;
margin-bottom: 48px;
}
.footer-copy {
font-size: 13px;
color: var(--black);
opacity: 0.5;
}
/* Responsive */
@media (max-width: 900px) {
h1 {
font-size: 42px;
}
.hero {
grid-template-columns: 1fr;
text-align: center;
gap: 40px;
padding: 80px 24px 100px;
}
.hero-content {
text-align: center;
order: 2;
}
.hero-logo-container {
order: 1;
justify-content: center;
}
.hero-illustration {
order: 1;
}
.hero-subtitle {
margin: 0 auto 48px;
}
.hero-logo {
max-width: 280px;
height: auto;
}
.origin-inner {
grid-template-columns: 1fr;
gap: 40px;
}
.origin-image {
order: -1;
max-width: 200px;
margin: 0 auto;
}
.journey-cards {
grid-template-columns: 1fr;
gap: 20px;
}
.testimonial-grid {
grid-template-columns: 1fr;
}
.features-grid {
grid-template-columns: 1fr;
}
nav {
padding: 24px;
}
.hero, .origin, .process, .testimonials, .features, .cta-section {
padding-left: 24px;
padding-right: 24px;
}
}
@media (max-width: 600px) {
.journey-card {
padding: 28px 24px 32px;
}
.journey-card h3 {
font-size: 22px;
}
h1 {
font-size: 32px;
}
h2 {
font-size: 32px;
}
.nav-links {
display: none;
}
.form-row {
flex-direction: column;
}
.form-row input[type="email"] {
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.form-row button {
padding: 18px 24px;
}
}
.success-message {
font-family: 'Crimson Pro', Georgia, serif;
font-size: 20px;
font-style: italic;
color: #3d5a4c;
margin-top: 20px;
}
.error-message {
font-family: 'DM Sans', sans-serif;
font-size: 16px;
color: #c45c5c;
margin-top: 12px;
}

/* ========================================
   Nav Right Container
   ======================================== */

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* ========================================
   Other Tests Dropdown
   ======================================== */

.other-tests-dropdown {
    position: relative;
    z-index: 200;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
    transition: all 0.2s;
}

.dropdown-trigger:hover {
    border-color: rgba(0, 0, 0, 0.2);
    color: var(--black);
}

.dropdown-trigger svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 260px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s;
}

.dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu.open + .dropdown-trigger svg,
.other-tests-dropdown:has(.dropdown-menu.open) .dropdown-trigger svg {
    transform: rotate(180deg);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    text-decoration: none;
    color: var(--black);
    transition: background 0.2s;
}

.dropdown-item:first-child {
    border-radius: 12px 12px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 12px 12px;
}

.dropdown-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.dropdown-item:hover {
    background: rgba(0, 0, 0, 0.03);
}

.dropdown-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(127, 171, 200, 0.12);
    border-radius: 8px;
    flex-shrink: 0;
}

.dropdown-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--blue);
}

.dropdown-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.dropdown-text strong {
    font-size: 0.9375rem;
    font-weight: 500;
}

.dropdown-text small {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.5);
}

/* ========================================
   Other Tests Bento Section
   ======================================== */

.other-tests-section {
    padding: 60px 48px;
    background-color: var(--white);
}

.other-tests-bento {
    max-width: 900px;
    margin: 0 auto;
}

.other-tests-bento h4 {
    text-align: center;
    font-family: 'Crimson Pro', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 1.25rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.bento-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--cream);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    text-decoration: none;
    color: var(--black);
    transition: all 0.2s;
}

.bento-card:hover {
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.bento-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(127, 171, 200, 0.12);
    border-radius: 12px;
    margin-bottom: 0.75rem;
}

.bento-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--blue);
}

.bento-content strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.bento-content p {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.5);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 640px) {
    .nav-right {
        gap: 0;
    }

    .dropdown-trigger {
        padding: 0.375rem 0.75rem;
        font-size: 0.8125rem;
    }

    .dropdown-menu {
        min-width: 240px;
    }

    .other-tests-section {
        padding: 40px 24px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .bento-card {
        flex-direction: row;
        text-align: left;
        padding: 1rem;
        gap: 1rem;
    }

    .bento-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }
}
