@font-face {
    font-family: 'Roboto';
    src: url('../font/Roboto/Roboto-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../font/Roboto/Roboto-Italic-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

@font-face {
    font-family: 'Noto Serif';
    src: url('../font/Noto_Serif/NotoSerif-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Noto Serif';
    src: url('../font/Noto_Serif/NotoSerif-Italic-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

:root {
    --primary-text: #4a4a4a;
    --secondary-text: #565657;
    --accent-color: #9e9085;
    /* Taupe/Brown */
    --bg-color: #FBFAFA;
    --btn-border: #c4c4c4;
    --section-gap: 12.8rem;
    --Roboto:'Roboto', serif;
    --Serif:'Noto Serif', serif;
    --font000:#000000;
    /* 8rem * 1.6 */
}

html {
    font-size: 62.5%;
    /* 1rem = 10px */
}

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

body {
    font-family: var(--Roboto);
    background-color: var(--bg-color);
    color: var(--primary-text);
    font-size: 16px;
    /* Reset base font size to 16px */
    line-height: 1;
    letter-spacing: 1px;
    font-weight: 400;
}

.container {
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    position: relative;
    padding: 0 2rem;
}

/* Reusable Section Styling */
section {
    margin-bottom: var(--section-gap);
    width: 100%;
    padding: 0 !important;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--Serif);
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 40px;
    /* 2.5rem * 1.6 */
    color: #5e5b56;
    margin-bottom: 2.4rem;
    /* 1.5rem * 1.6 */
    font-weight: 400;
}

p {
    color: #565657;
    font-size: 16px;
}

/* Header / Logo */
header {
    padding: 3.2rem 5%;
    /* 2rem * 1.6 */
    margin-bottom: 3.2rem;
    /* 2rem * 1.6 */
    padding-left: 0;
}

.logo-img {
    width: 6.7rem;
    /* 67px */
    height: auto;
    display: block;
}

.logo-img img {
    width: 100%;
    height: auto;
}

/* Section 1: Hero */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6.4rem;
    /* 4rem * 1.6 */
}

.hero-content {
    flex: 1;
    max-width: 55rem;
    /* 550px */
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 100%;
    max-width: 58.8rem;
    /* 700px */
    height: auto;
    object-fit: contain;
}

.hero h1 {
    font-weight: 400;
    color: #565657;
    margin-bottom: 1.5rem;
    /* 0.5rem * 1.6 */
}

.hero h2 {
    font-weight: 300;
    color: var(--secondary-text);
    margin-bottom: 3rem;
    font-family: var(--Serif);
}

.tagline {
    font-size: 18px;
    /* 1.2rem * 1.6 */
    font-weight: 700;
    margin-bottom: 3rem;
    /* 1.5rem * 1.6 */
    color: #000000;
}

.description p {
    margin-bottom: 2rem;
    /* 1.5rem * 1.6 */
    font-weight: 500;
    color: #000000;
}

.cta-buttons {
    display: flex;
    gap: 1.6rem;
    /* 1rem * 1.6 */
    margin-top: 4rem;
    /* 2.5rem * 1.6 */
}

.btn {
    padding: 1.28rem 2.4rem;
    /* 0.8rem * 1.6, 1.5rem * 1.6 */
    font-size: 16px;
    /* 1rem * 1.6 */
    font-family: var(--Serif);
    border-radius: 0.8rem;
    /* 8px */
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline {
    background-color: transparent;
    border: 0.1rem solid #ccc;
    /* 1px */
    color: #999;
}

.btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-primary {
    background-color: var(--accent-color);
    border: 0.1rem solid var(--accent-color);
    /* 1px */
    color: white;
}

.btn-primary:hover {
    background-color: #8a7d73;
    border-color: #8a7d73;
}

/* Section 2: Technology supports stillness */
.technology-section {
    display: flex;
    align-items: center;
    gap: 6.4rem;
    /* 4rem * 1.6 */
    padding: 6.4rem 0;
}

.tech-images {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.tech-images img {
    max-width: 100%;
    height: auto;
}

.tech-content {
    flex: 1;
    max-width: 50rem;
    /* 500px */
}

.tech-content h1 {
    font-size: 36px;
    /* 3rem * 1.6 */
    margin-bottom: 3.2rem;
    /* 2rem * 1.6 */
    color: var(--secondary-text);
    font-weight: 400;
}

.tech-content p {
    margin-bottom: 2.4rem;
    color: #000000;
    /* 1.5rem * 1.6 */
}

/* Section 3: Forms taking shape */
.forms-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 6.4rem 0;
    /* 4rem * 1.6 */
}

.forms-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.forms-col.left {
    align-items: flex-start;
    text-align: left;
}

.forms-col.right {
    align-items: flex-end;
    text-align: right;
}

.forms-center {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 3.2rem;
    /* 2rem * 1.6 */
}

.forms-title {
    font-family: var(--Serif);
    font-size: 20px;
    /* 1.8rem * 1.6 */
    font-weight: 700;
    color: #000000;
    margin-bottom: 3.2rem;
    /* 2rem * 1.6 */
    position: relative;
    padding-left: 1.6rem;
    /* 1rem * 1.6 */
    border-left: 0.1rem solid #e0e0e0;
    line-height: 155%;
    /* 3px */
}

.forms-col.right .forms-title {
    color: #000000;
    font-weight: 700;
    padding-left: 0;
    padding-right: 2rem;
    /* 1rem * 1.6 */
    border-left: none;
    border-right: 0.1rem solid #e0e0e0;
    /* 3px */
}

.forms-text {
    margin-bottom: 3.2rem;
    /* 2rem * 1.6 */
    color: #000000;
    font-size: 20px;

    font-family: var(--Serif);
    line-height: 155%;
}

.forms-text.left {
    padding-left: 1.6rem;
    /* 1rem * 1.6 */
    border-left: 0.1rem solid #e0e0e0;
    /* 3px */
}

.forms-text.right {
    padding-right: 1.6rem;
    /* 1rem * 1.6 */
    border-right: 0.1rem solid #e0e0e0;
    /* 3px */
}

.forms-image-container {
    display: flex;
    gap: 3.2rem;
    /* 2rem * 1.6 */
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 3.2rem;
    /* 2rem * 1.6 */
}

.forms-image-wrapper {
    width: 35rem;
    /* 350px */
    display: flex;
    align-items: flex-end;
}

.forms-image-wrapper img {
    width: 100%;
    height: auto;
}
.forms-col-app{
    display: none;
}

.device-mockup {
    width: 20rem;
    /* 200px */
    height: 28rem;
    /* 280px */
    border: 0.1rem solid #ddd;
    /* 1px */
    border-radius: 0.8rem;
    /* 8px */
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-mockup span {
    font-size: 32px;
    /* 2rem * 1.6 */
    color: #ccc;
}

.forms-center-text {
    color: #565657;
    margin-bottom: 1.5rem;
    font-size: 14px;
    /* 0.5rem * 1.6 */
}

.forms-center-title {
    font-size: 18px;
    /* 1.4rem * 1.6 */
    color: #000000;
    font-weight: 300;
    font-family: "r";
}

/* Section 4: Feature Cards */
.features-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3.2rem;
    /* 2rem * 1.6 */
    padding: 3.2rem 0;
    /* 2rem * 1.6 */
}

.feature-card {
    /* max-width: 26rem; */
    background: #fff;
    border: 0.1rem solid #eee;
    /* 1px */
    border-radius: 1.6rem;
    padding-bottom: 2.4rem;
    /* 16px */
    /* 2rem * 1.6 */
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-0.5rem);
    /* 5px */
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.03);
    /* 10px 20px */
}

.feature-icon {
    width: 100%;
    /* 120px */
    margin-bottom: 2.4rem;
    /* 1.5rem * 1.6 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
}

.feature-card h4 {
    font-size: 16px;
    /* 1.2rem * 1.6 */
    margin-bottom: 0.8rem;
    /* 0.5rem * 1.6 */
    color: var(--secondary-text);
    font-weight: 700;
    padding: 0 1rem;
    line-height: 125%;
}

.feature-card p {
    line-height: 135%;
    color: #000000;
    padding: 0 1rem;
}

/* Section 5: Daily Rhythm */
.pc{
    display: block !important;
}
.app{
    display: none !important;
}
.rhythm-section {
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
    /* 2rem * 1.6 */
    position: relative;
    margin-top: 6.4rem;
}

.rhythm-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 3.2rem;
}

.rhythm-top h2 {
    font-size: 48px;
    /* Make it large like H1 */
    color: #5e5b56;
    line-height: 1.1;
    max-width: 65%;
    position: relative;
    z-index: 2;
}

.rhythm-header-info {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    z-index: 2;
    position: relative;
    padding-right: 5rem;
}
.rhythm-header-img{
    position: absolute;
    right: 0;
    width: 45rem;
    z-index: -1;
}
.rhythm-header-img img{
    width: 100%;
}
.rhythm-header-title {
    font-family: var(--Serif);
    font-size: 24px;
    text-align: right;
    color: #000000;
    line-height: 1.2;
}

.rhythm-header-divider {
    width: 0.1rem;
    height: 6rem;
    background-color: #000000;
}

.rhythm-header-list {
    display: flex;
    gap: 3.2rem;
}

.rhythm-header-col {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
}

.rhythm-bottom {
    position: relative;
    /* min-height: 40rem; */
    display: flex;
}

.rhythm-content-left {
    width: 50%;
    z-index: 1;
    /* padding-top: 3.2rem; */
}

.rhythm-subtitle {
    font-weight: 700;
    margin-bottom: 3.2rem;
    font-size: 18px;
    color: #000000;
}

.rhythm-list {
    list-style: none;
}

.rhythm-list li {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #000000;
    font-size: 16px;
}

.rhythm-list li::before {
    content: "◦";
    margin-right: 1.6rem;
    font-weight: bold;
    color: #888;
    font-size: 20px;
}

.rhythm-image-container {
    position: relative;
    z-index: 2;
    width: 50%;
    display: flex;
    align-items: flex-start;
    /* Align top to match content start */
    justify-content: flex-end;
    margin-top: -4rem;
}

.rhythm-image-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Quote */
.rhythm-quote {
    text-align: center;
    /* 4rem * 1.6 */
    padding: 2rem 0;
    /* 1px */
    font-family: var(--Roboto);
    font-size: 28.8px;
    /* 1.8rem * 1.6 */
    letter-spacing: 10px;
    line-height: 155%;
    /* 1px */
    color: #000000;
    width: 100%;
    position: relative;
    margin-top: 5rem;
}

.rhythm-quote::after {
    content: "";
    border-top: 1px solid #E6E6E5;
    width: 100px;
    display: block;
    position: absolute;
    bottom: 0;
    height: 1px;
    left: calc((100% - 100px) / 2);
}
.rhythm-quote::before {
    content: "";
    border-top: 1px solid #E6E6E5;
    width: 100px;
    display: block;
    position: absolute;
    top: 0;
    height: 1px;
    left: calc((100% - 100px) / 2);
}

/* Section 6: Membership */
.membership-section {
    text-align: center;
    /* 4rem * 1.6 */
}

.membership-section h1 {
    margin-bottom: 4.8rem;
    /* 3rem * 1.6 */
    font-weight: 300;
    color: #565657;
    /* 2.5rem * 1.6 */
}

.membership-section h1 span {
    font-weight: 400;
}

.membership-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.2rem;
    /* 2rem * 1.6 */
}

.member-card {
    border: 0.1rem solid #eee;
    /* 1px */
    border-radius: 1.6rem;
    /* 16px */
    padding: 4.8rem 3.2rem;
    /* 3rem 2rem * 1.6 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.member-icon {
    height: 8rem;
    /* 80px */
    margin-bottom: 2.4rem;
    /* 1.5rem * 1.6 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-icon img {
    max-height: 100%;
    width: auto;
}

.member-card p {
    max-width: 25rem;
    /* 250px */
}

/* Section 7: Bottom CTA */
.bottom-cta-section {
    padding: 6.4rem 0;
    /* 4rem * 1.6 */
    border-radius: 2rem;
    /* 20px */
}

.bottom-cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6.4rem;
    /* 4rem * 1.6 */
    /* 1000px */
    margin: 0 auto;
}

.bottom-cta-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.bottom-cta-image img {
    max-width: 100%;
    height: auto;
    /* 400px */
    transform: none;
}

.bottom-cta-text {
    flex: 1;
    text-align: right;
}

.bottom-cta-text h1 {
    color: #565657;
    margin-bottom: 2.4rem;
}

.bottom-cta-text h2 {
    font-size: 36px;
    color: #565657;
    font-weight: 300;
    margin-bottom: 6rem;
}

.btn-large {
    padding: 1.6rem 4rem;
    /* 1rem 2.5rem * 1.6 */
    font-size: 19.2px;
    /* 1.2rem * 1.6 */
}

/* Footer */
footer {
    width: 100%;
    position: relative;
    background: #A4978E;
}

.footer-background {
    width: 100%;
    height: 12rem;
    /* 120px */
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.footer-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-content {
    max-width: 120rem;
    /* 1400px */
    margin: 0 auto;
    padding: 2rem;

}

.footer-logo {
    width: 4.9rem;
    /* 100px */
}

.footer-logo img {
    width: 100%;
    height: auto;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 10px;
    /* 0.9rem * 1.6 */
    font-family: var(--Serif);
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0;
    bottom: 0;
    padding: 2rem 0;
}
