:root {
    --primary_color: #F62440;
    --main_color: #1E140E;
    --border_radius: 10px;
    --JetBrains: "JetBrains Mono", monospace;
    --Lora: "Lora", serif;
    --Outfit: "Outfit", sans-serif;
}

* {
    font-optical-sizing: auto;
    font-style: normal;
    box-sizing: border-box;
}

body {
    min-width: 340px;
    height: 100%;
    padding: 0;
    margin: 0;
    color: var(--main_color);
    background: #FEFAF6;
}

.fixedHeader {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff88;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #00000016;
    padding: 12px 20px;
    z-index: 100;
}

.fixedHeaderInner {
    width: 1150px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.headerLogo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--main_color);
}

.headerMenu  {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.headerMenu a {
    text-decoration: none;
    padding: 5px 7px;
    text-transform: uppercase;
    font-size: 11px;
    font-family: var(--JetBrains);
    font-weight: 300;
    color: #6e5f5d;
    transition: .2s;
}

.headerMenu a:hover {
    color: var(--primary_color);
}

.headerGetAppButton {
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 250px;
    background: black;
    transition: .2s;
    min-width: 199px;
}

.headerGetAppButton:hover {
    opacity: .8;
}

.headerGetAppButton span {
    font-size: 11px;
    color: #fff;
    font-family: var(--Outfit);
}

.headerGetAppButton svg {
    margin-right: 5px;
}

.siteBanner {
    padding: 100px 20px;
}

.siteBannerInner {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
}

.wordOfTheDayBlock {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    background: #fdf6ef;
}

.wordOfTheDayTop {
    display: flex;
    padding: 20px;
    border-top-left-radius: 20px;
    border-bottom: 1px solid #f3e8df;
}

.wordOfTheDayTopText {
    flex: 1;
}

.wordOfTheDayTopButtons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wordOfTheDayPlusButton {
    color: #7E7765;
    font-family: var(--JetBrains);
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: #F5EFE6;
    border: 1px solid #E8DDD4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wordOfTheDayFavoriteButton {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: #FCEEE9;
    border: 1px solid #F3C3C8;
}

.wordOfTheDayBottom {
    padding: 15px 20px 20px;
    background: #fff;
}

.wordOfTheDayTitle {
    font-size: 32px;
    font-family: var(--Lora);
}

.wordOfTheDayIpa {
    margin-top: 7px;
    font-weight: 200;
    color: #7E7765;
    font-size: 17px;
    font-family: var(--Lora);
}

.wordOfTheDayHowUse {
    font-size: 13px;
    font-family: var(--Outfit);
    color: #3D2A1E;
}

.wordOfTheDayExampleTitle {
    text-transform: uppercase;
    font-size: 13px;
    color: #9E8A7A;
    font-family: var(--JetBrains);
    margin-bottom: 5px;
}

.wordOfTheDayExampleDesc {
    font-weight: 300;
    color: #6B4212; 
    font-size: 13px;
    font-family: var(--Outfit);
}

.wordOfTheDayExampleBlock {
    margin-top: 10px;
    border-left: 2px solid #f7404c5c;
    padding-left: 10px;
}

.siteBannerLeft, .siteBannerRight {
    flex: 1;
}

.appPreview {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.siteAppCategory {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    font-family: var(--JetBrains);
    color: #6e5f5d;
}

.siteTitle {
    font-weight: 500;
    font-size: 50px;
    font-family: var(--Lora);
    margin: 23px 0;
}

.siteTitle span {
    color: var(--primary_color);
}

.siteBannerDesc {
    padding-right: 10px;
    font-weight: 300;
    line-height: 25px;
    font-family: var(--Outfit);
}

.siteBannerButtons {
    display: flex;
    margin-top: 30px;
}

.bannerAppStoreButton {
    text-decoration: none;
    border-radius: 250px;
    background: var(--primary_color);
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    transition: .2s;
    color: #fff;
}

.bannerAppStoreButton:hover {
    transform: translateY(-2px);
}

.bannerAppStoreButton svg {
    margin-right: 10px;
}

.bannerAppStoreButton span {
    font-size: 12px;
    font-weight: 500;
    font-family: var(--Outfit);
}

.bannerHowItWorksButton {
    border-radius: 250px;
    padding: 15px 20px;
    display: inline-flex;
    align-items: center;
    transition: .2s;
    margin-left: 20px;
    border: 1px solid #d2cccb;
    font-family: var(--JetBrains);
    color: #6e5f5d;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 300;
    text-decoration: none;
}

.bannerHowItWorksButton:hover {
    transform: translateY(-2px);
}

.bannerBlockButtons {
    display: flex;
}

.siteBannerBlocks {
    display: flex;
    gap: 10px;
    margin-top: 40px;
}

.bannerBlocks {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.bannerBlocksItem {
    margin: 10px 20px;
    text-align: center;
}

.bannerBlocksItemTitle {
    font-family: var(--Lora);
}

.bannerBlocksItemDesc {
    margin-top: 5px;
    font-size: 10px;
    font-weight: 200;
    text-transform: uppercase;
    font-family: var(--JetBrains);
}

.howItWorks {
    padding: 100px 20px;
    background: #FDF4EA;
}

.howItWorksTitles {
    max-width: 1150px;
    margin: 0 auto;
}

.howItWorksItems {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.howItWorksItem {
    min-width: 320px;
    flex: 1;
    padding: 30px;
    border-radius: 20px;
    background: #fff;
}

.howItWorksTitle {
    letter-spacing: 2px;
    font-size: 11px;
    color: var(--primary_color);
    font-family: var(--JetBrains);
}

.howItWorksDesc {
    font-weight: 400;
    font-size: 48px;
    font-family: var(--Lora);
    margin-top: 10px;
}

.howItWorksItemIcon {
    letter-spacing: 2px;
    font-size: 11px;
    color: var(--primary_color);
    font-family: var(--JetBrains);
}

.howItWorksItemTitle {
    font-weight: 400;
    font-size: 25px;
    font-family: var(--Lora);
    margin: 15px 0;
}

.howItWorksItemDesk {
    font-weight: 300;
    font-size: 14px;
    color: #6e5f5d;
    font-family: var(--Outfit);
}

.progressBlock {
    max-width: 1150px;
    margin: 0 auto;
    border-radius: 20px;
    background: #fff;
    padding: 30px;
    margin-top: 50px;
}

.progressBlockTitle,
.progressBlockCount {
    text-transform: uppercase;
    font-size: 11px;
    color: #6e5f5d;
    font-family: var(--JetBrains);
    font-weight: 300;
}

.progressBlockLine {
    width: 100%;
    height: 5px;
    border-radius: 1px;
    background: #ffeae9;
    display: flex;
    justify-content: flex-start;
    overflow: hidden;
}

.progressBlockLineInner {
    width: 5%;
    height: 5px;
    border-radius: 1px;
    background: var(--primary_color);
}

.featuresBlock {
    padding: 90px 20px;
    background: #FDF4EA;
}

.featuresBlockItems,
.featuresBlockTop {
    max-width: 1150px;
    margin: 0 auto;
}

.featuresBlockTop p {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    color: var(--primary_color);
    font-family: var(--JetBrains);
}

.featuresBlockTop h2 {
    font-weight: 400;
    font-size: 48px;
    font-family: var(--Lora);
    margin-top: 10px;
}

.featuresBlockItems {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.featuresBlockItem {
    min-width: 320px;
    flex: 1 1 calc(33.333% - 20px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #E8DDD4;
    transition: .3s;
    background: #fffaf6;
}

.featuresBlockItem:hover {
    border-color: #ed49546e;
}

.featuresBlockItemIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: #ffe3e2;
}

.featuresBlockItemIcon svg {
    width: 20px;
    height: 20px;
}

.featuresBlockItemTitle {
    font-weight: 400;
    font-size: 25px;
    font-family: var(--Lora);
    margin: 15px 0;
}

.featuresBlockItemDesc {
    font-weight: 300;
    font-size: 14px;
    color: #6e5f5d;
    font-family: var(--Outfit);
}

.startTodayBlock {
    padding: 70px 20px;
    background: var(--primary_color);
}

.startTodayBlockInner {
    max-width: 1150px;
    margin: 0 auto;
    text-align: center;
}

.startTodayBlockDesc1 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    color: #fff;
    font-family: var(--JetBrains);
}

.startTodayBlockTitle {
    font-weight: 400;
    font-size: 58px;
    font-family: var(--Lora);
    margin: 25px 0;
    color: #fff;
    line-height: 60px;
}

.startTodayBlockDesc2 {
    font-weight: 300;
    font-size: 16px;
    color: #fff;
    font-family: var(--Outfit);
    line-height: 25px;
}

.whiteAppStoreButton {
    border-radius: 250px;
    background: #fff;
    padding: 15px 25px;
    display: inline-flex;
    align-items: center;
    transition: .2s;
    text-decoration: none;
    color: var(--main_color);
}

.whiteAppStoreButton:hover {
    transform: translateY(-2px);
}

.whiteAppStoreButton svg {
    margin-right: 10px;
}

.whiteAppStoreButton span {
    font-weight: 500;
    font-family: var(--Outfit);
}

.faq-section {
    padding: 90px 20px;
    background: #fffaf6;
}

.faq-container {
    max-width: 1150px;
    margin: 0 auto;
}

.faq-header {
    max-width: 700px;
    margin-bottom: 48px;
}

.faq-label {
    display: inline-block;
    margin-bottom: 14px;

    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #f43f4f;
}

.faq-header h2 {
    font-weight: 400;
    font-size: 48px;
    font-family: var(--Lora);
    margin-top: 10px;
    margin-bottom: 20px;
}

.faq-header p {
    margin: 0;
    font-weight: 300;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    line-height: 1.7;

    color: #6d6861;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    padding: 0 24px;

    background: #ffffff;
    border: 1px solid #eadfd6;
    border-radius: 18px;
}

.faq-item summary {
    padding: 22px 0;

    cursor: pointer;
    list-style: none;

    font-family: var(--Lora);
    font-size: 18px;
    font-weight: 500;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    float: right;

    font-size: 24px;
    font-weight: 400;

    color: #f43f4f;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin: 0;
    padding: 0 0 22px;
    font-weight: 300;
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    line-height: 1.7;

    color: #6d6861;
}

.siteFooter {
    padding: 40px 20px;
}

.siteFooterInner {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footerLogo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--main_color);
}

.footerLogo img, .headerLogo img {
    margin-right: 10px;
}

.footerLogoTitle, .headerLogoTitle {
    font-family: var(--Lora);
}

.footerMenu a, .footerRights {
    text-decoration: none;
    padding: 0 7px;
    text-transform: uppercase;
    font-size: 11px;
    font-family: var(--JetBrains);
    font-weight: 300;
    color: #6e5f5d;
    transition: .2s;
}

.footerMenu a:hover {
    color: var(--primary_color);
}

.privacyPage {
    padding: 50px 20px;
}

.privacyPageInner {
    max-width: 1150px;
    margin: 0 auto;
}

.privacyPageHeader {
    margin-bottom: 56px;
}

.privacyPageTitle {
    margin: 0 0 18px;
    font-family: "Lora", serif;
    font-size: clamp(44px, 6vw, 40px);
    font-weight: 600;
    letter-spacing: -1.5px;
}

.privacyPageIntro {
    max-width: 700px;
    margin: 0 0 16px;
    font-family: "Outfit", sans-serif;
    font-size: 19px;
    line-height: 1.65;
    opacity: 0.75;
}

.privacyPageUpdated {
    margin: 0;
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
    opacity: 0.5;
}

.privacyContent {
    max-width: 760px;
}

.privacySection {
    padding-bottom: 42px;
    margin-bottom: 42px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.privacySection:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.privacySection h2 {
    margin: 0 0 18px;
    font-family: "Outfit", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.privacySection p {
    margin: 0 0 16px;
    font-family: "Outfit", sans-serif;
    font-size: 17px;
    line-height: 1.75;
    opacity: 0.76;
}

.privacySection ul {
    margin: 18px 0 22px;
    padding-left: 24px;
}

.privacySection li {
    margin-bottom: 9px;
    font-family: "Outfit", sans-serif;
    font-size: 17px;
    line-height: 1.65;
    opacity: 0.76;
}

.privacyEmail {
    font-family: "Outfit", sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (max-width: 768px) {
    .privacyPage {
        padding-top: 30px;
    }

    .privacyPageHeader {
        margin-bottom: 42px;
    }

    .privacyPageTitle {
        font-size: 30px;
        letter-spacing: -1px;
    }

    .privacyPageIntro {
        font-size: 17px;
    }

    .privacySection {
        padding-bottom: 34px;
        margin-bottom: 34px;
    }

    .privacySection h2 {
        font-size: 21px;
    }

    .privacySection p,
    .privacySection li {
        font-size: 16px;
    }
}

.termsPage {
    width: 100%;
    padding: 50px 20px;
}

.termsPageInner {
    max-width: 1152px;
    margin: 0 auto;
}

.termsPageHeader {
    margin-bottom: 56px;
}

.termsPageTitle {
    margin: 0 0 18px;

    font-family: "Lora", serif;
    font-size: clamp(44px, 6vw, 40px);
    font-weight: 600;

    letter-spacing: -1.5px;
}

.termsPageIntro {
    max-width: 700px;
    margin: 0 0 16px;

    font-family: "Outfit", sans-serif;
    font-size: 19px;
    line-height: 1.65;

    opacity: 0.75;
}

.termsPageUpdated {
    margin: 0;

    font-family: "JetBrains Mono", monospace;
    font-size: 13px;

    opacity: 0.5;
}

.termsContent {
    max-width: 760px;
}

.termsSection {
    padding-bottom: 42px;
    margin-bottom: 42px;

    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.termsSection:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.termsSection h2 {
    margin: 0 0 18px;

    font-family: "Outfit", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;

    letter-spacing: -0.3px;
}

.termsSection p {
    margin: 0 0 16px;

    font-family: "Outfit", sans-serif;
    font-size: 17px;
    line-height: 1.75;

    opacity: 0.76;
}

.termsSection ul {
    margin: 18px 0 22px;
    padding-left: 24px;
}

.termsSection li {
    margin-bottom: 9px;

    font-family: "Outfit", sans-serif;
    font-size: 17px;
    line-height: 1.65;

    opacity: 0.76;
}

.termsLink,
.termsEmail {
    font-family: "Outfit", sans-serif;
    font-size: 17px;
    font-weight: 600;

    color: inherit;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.word-preview-section {
    padding: 90px 20px;
}

.word-preview-container {
    max-width: 1150px;
    margin: 0 auto;
}

.word-preview-header {
    max-width: 720px;
    margin-bottom: 52px;
}

.word-preview-label {
    display: inline-block;
    margin-bottom: 14px;

    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: var(--primary_color);
}

.word-preview-header h2, .word-preview-header h1 {
    margin: 0 0 18px;

    font-family: "Lora", serif;
    font-size: 48px;
    font-weight: 400;

    color: var(--main_color);
}

.word-preview-header p {
    margin: 0;
    font-weight: 300;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    line-height: 1.7;

    color: #6e5f5d;
}

.word-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.word-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #E8DDD4;
    border-radius: 18px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.word-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary_color);
    box-shadow: 0 14px 34px rgba(31, 31, 31, 0.07);
}

.word-card-top-wrap {
    padding: 20px 20px 10px;
}

.word-card-top {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 16px;

    margin-bottom: 12px;
}

.word-card-top h2, .word-card-top h3 {
    margin: 0;

    font-family: "Lora", serif;
    font-size: 25px;
    font-weight: 400;
}

.word-card-top span {
    flex-shrink: 0;

    font-family: var(--Lora);
    font-size: 13px;

    color: #7E7765;
}

.word-meaning {
    margin-bottom: 0;
    font-family: "Outfit", sans-serif;
    font-size: 13px;
    line-height: 1.6;

    color: #695447;
}

.word-example {
    margin: 0 16px 20px;
    padding-left: 7px;
    border-left: 2px solid #F3B9BE;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    color: #49372B;
    font-weight: 300;
}

.word-example span {
    font-size: 13px;
    color: #927B6C;
    margin-bottom: 7px;
    display: inline-block;
    font-family: var(--JetBrains);
}

.word-preview-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 250px;
    background: var(--primary_color);
    transition: .2s;
    text-decoration: none;
    color: #fff;
    margin-top: 30px;
    font-family: var(--Outfit);
    font-weight: 300;
    font-size: 13px;
}

.word-preview-button:hover {
    opacity: 0.8;
}

.word-preview-button span {
    margin-left: 10px;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .siteBanner, .word-preview-section {
        padding: 80px 20px;
    }

    .siteTitle, .featuresBlockTop h2, .howItWorksDesc, .startTodayBlockTitle, .word-preview-header h2, .word-preview-header h1 {
        font-size: 30px;
    }

    .siteBannerDesc {
        font-size: 15px;
    }

    .featuresBlock, 
    .howItWorks,
    .startTodayBlock {
        padding: 60px 20px;
    }
}

@media (max-width: 900px) {
    .word-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .word-card-top h2, .word-card-top h3 {
        font-size: 23px;
    }
}

@media (max-width: 768px) {
    .siteBannerRight {
        margin-top: 40px;
    }

    .headerLogo {
        display: none;
    }
    
    .headerLogo.policy, .headerLogo.terms, .headerLogo.common {
        display: flex;
    }

    .footerLogo img, .headerLogo img {
        width: 25px;
        height: 25px;
    }

    .siteBanner, .word-preview-section {
        padding: 50px 20px;
    }

    .siteBannerInner {
        flex-direction: column;
    }

    .siteBannerBlocks {
        margin: 25px 0 25px;
    }

    .siteFooterInner {
        flex-direction: column;
    }

    .footerMenu {
        padding: 15px;
    }
}

@media (max-width: 600px) {
    .headerGetAppButton {
        display: none;
    }
    .word-preview-section {
        padding: 80px 18px;
    }

    .word-preview-header {
        margin-bottom: 36px;
    }

    .word-preview-header p, .faq-header p {
        font-size: 14px;
    }

    .word-grid {
        grid-template-columns: 1fr;
    }

    .faq-item summary {
        font-size: 16px;
    }
    
    .faq-section {
        padding: 90px 20px 40px;
    }

    .faq-header {
        margin-bottom: 30px;
    }
}

@media (max-width: 500px) {
    .word-card.main-screen:nth-child(n+5) {
        display: none;
    }

    .siteTitle {
        margin: 15px 0;
    }

    .siteTitle, .featuresBlockTop h2, .howItWorksDesc, .startTodayBlockTitle, .word-preview-header h2, .word-preview-header h1, .faq-header h2 {
        font-size: 28px;
    }

    .startTodayBlockTitle {
        line-height: 30px;
    }

    .startTodayBlockDesc2 {
        font-size: 15px;
        font-weight: 200;
    }

    .bannerHowItWorksButton {
        flex: 1;
        justify-content: center;
        margin-left: 10px;
    }

    .bannerAppStoreButton {
        flex: 1;
    }

    .bannerBlocksItem {
        flex: 1;
    }

    .featuresBlock, .howItWorks, .startTodayBlock, .faq-section {
        padding: 30px 20px;
    }

    .siteBannerDesc {   
        font-size: 12px;
        line-height: 20px;
    }

    .bannerBlocks {
        margin-top: 20px;
    }

    .headerLogoTitle {
        font-size: 12px;
    }

    .bannerBlocksItem {
        margin: 10px;
    }

    .fixedHeader {
        padding: 10px 15px;
    }

    .headerMenu a {
        font-size: 10px;
        padding: 10px 7px;
    }

    .faq-item p {
        font-size: 14px;
    }

    .startTodayBlockTitle {
        margin: 0;
    }

    .startTodayBlockDesc2 {
        font-size: 15px;
    }

    .whiteAppStoreButton {
        padding: 10px 20px;
    }

    .whiteAppStoreButton span {
        font-size: 13px;
    }

    .siteFooter {
        padding: 30px 20px;
    }

    .progressBlock {
        margin-top: 20px;
    }
}

@media (max-width: 425px) {
    .siteTitle, .featuresBlockTop h2, .howItWorksDesc, .startTodayBlockTitle, .word-preview-header h2, .word-preview-header h1, .faq-header h2 {
        font-size: 22px;
    }
}