/* ============================================================
   REACHME BRAND COLOR SYSTEM
   ============================================================
   All colors for the landing page are defined here.
   To change the brand palette, edit ONLY this :root block.
   ============================================================ */
:root {
    /* ── Core Brand Palette ─────────────────────────────────── */
    --color-primary: #F08000;
    /* Tangerine Orange  – logo, icons, text accents    */
    --color-primary-vivid: #F06000;
    /* Vivid Orange      – buttons (CTA, nav primary)   */
    --color-primary-deep: #E03000;
    /* Orange-Red        – gradient stops, shadows      */
    --color-primary-burnt: #D02000;
    /* Burnt Orange      – depth, contrast details      */

    /* ── Button-specific tokens ─────────────────────────────── */
    --color-btn-bg: var(--color-primary-vivid);
    /* #F06000 – all solid buttons  */
    --color-btn-hover: #D05200;
    /* darker vivid on hover        */
    --color-btn-text: #ffffff;

    /* ── Logo & Icon fills ──────────────────────────────────── */
    --color-icon-bg: var(--color-primary);
    /* #F08000                      */

    /* ── Text & Foreground ──────────────────────────────────── */
    --color-text-base: #0b1120;
    --color-text-muted: #4a5b7a;
    --color-text-faint: #9aabc5;
    --color-text-accent: var(--color-primary);
    /* orange accent text           */

    /* ── Backgrounds ────────────────────────────────────────── */
    --color-bg-page: #ffffff;
    --color-bg-hero: #f4f7ff;
    --color-bg-navbar: rgba(244, 247, 255, 0.9);
    --color-bg-tint: rgba(240, 128, 0, 0.07);
    /* very light orange wash       */
    --color-bg-tint-mid: rgba(240, 128, 0, 0.12);

    /* ── Borders ────────────────────────────────────────────── */
    --color-border-subtle: rgba(0, 0, 0, 0.07);
    --color-border-medium: rgba(0, 0, 0, 0.13);
    --color-border-orange: rgba(240, 128, 0, 0.28);
    --color-border-orange-faint: rgba(240, 128, 0, 0.15);
    --color-border-orange-step: rgba(240, 128, 0, 0.9);

    /* ── Badge / Step tint ──────────────────────────────────── */
    --color-badge-bg: rgba(240, 128, 0, 0.07);
    --color-badge-border: rgba(240, 128, 0, 0.18);
    --color-step-num: rgba(240, 128, 0, 0.5);

    /* ── Notification card gradients ────────────────────────── */
    --color-notif-green-from: rgb(255, 245, 235);
    --color-notif-green-to: rgb(255, 250, 245);
    --color-notif-blue-from: rgb(239, 246, 255);
    --color-notif-blue-to: rgb(236, 254, 255);
    --color-notif-icon-msg: var(--color-primary);
    --color-notif-icon-tg: #2b7fff;
}

/*
  QUICK-CHANGE GUIDE
  ─────────────────────────────────────────────────────────────
  • Change ALL button fill color  → edit  --color-btn-bg
  • Change hover state            → edit  --color-btn-hover
  • Change primary brand orange   → edit  --color-primary
  • Change vivid/CTA orange       → edit  --color-primary-vivid
  • Change ALL orange accents     → edit both --color-primary
                                    and --color-primary-vivid
  ─────────────────────────────────────────────────────────────
*/

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

body {
    font-family: 'DM Sans', sans-serif;
    background-color: #ffffff;
    color: #0b1120;
    overflow-x: hidden;
}

.container {
    width: 100%;
    position: relative;
}

/* Navbar */
.navbar {
    background-color: rgba(244, 247, 255, 0.9);
    height: 60px;
    border-bottom: 0.667px solid rgba(0, 0, 0, 0.07);
    position: relative;
    z-index: 1000;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 100px;
    max-width: 1440px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 34px;
    height: 34px;
    background-color: var(--color-icon-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: var(--color-primary);
}

.nav-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-family: 'Syne', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(126, 143, 173, 0.05);
    border: 0.667px solid rgba(126, 143, 173, 0.11);
}

.btn-login {
    padding: 8px 16px;
    height: 36px;
    border: 0.667px solid rgba(0, 0, 0, 0.13);
    background-color: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #0b1120;
}

.btn-primary {
    background-color: var(--color-btn-bg);
    color: var(--color-btn-text);
    padding: 8px 20px;
    height: 36px;
    font-weight: 500;
    font-size: 14px;
    gap: 8px;
}

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

/* Hero Section */
.hero {
    background-color: var(--color-bg-hero);
    padding: 40px 100px;
    position: relative;
    overflow: hidden;
}

/* Orange warm glow orb — sits inside hero, behind all content */
.hero-glow {
    position: absolute;
    top: -260px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
            rgba(240, 128, 0, 0.32) 0%,
            rgba(240, 96, 0, 0.14) 38%,
            rgba(240, 80, 0, 0.04) 62%,
            transparent 78%);
    pointer-events: none;
    z-index: 0;
}

/* Push hero-content above the glow */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1110px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.badge {
    background-color: var(--color-badge-bg);
    border: 0.667px solid var(--color-border-orange);
    border-radius: 100px;
    padding: 6px 30px;
    font-size: 12px;
    color: var(--color-text-accent);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    position: relative;
}

.badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--color-text-accent);
    border-radius: 50%;
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.94;
}

.hero-title {
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 72px;
    line-height: 120%;
    text-align: center;
    max-width: 100%;
}

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

.hero-description {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 18.747px;
    line-height: 170%;
    color: var(--color-text-muted);
    text-align: center;
    max-width: 912px;
}

.hero-buttons {
    display: flex;
    gap: 30px;
    align-items: center;
}

.btn-large {
    height: 52px;
    border-radius: 14px;
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    padding: 15px 30px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-create {
    background-color: var(--color-btn-bg);
    color: var(--color-btn-text);
    font-weight: 600;
}

.btn-demo {
    background-color: rgba(0, 0, 0, 0.04);
    border: 0.667px solid var(--color-border-medium);
    color: var(--color-text-base);
    font-weight: 500;
}

.hero-features {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--color-text-faint);
    font-family: 'DM Sans', sans-serif;
}

.hero-preview {
    background-color: white;
    border-radius: 20px;
    width: 640px;
    box-shadow: 0px 32px 80px 0px rgba(0, 0, 0, 0.45);
    border: 0.667px solid rgba(0, 0, 0, 0.13);
    overflow: hidden;
    margin-top: 30px;
}

.browser-bar {
    background-color: #eaeff9;
    border-bottom: 0.667px solid rgba(0, 0, 0, 0.07);
    height: 40px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red {
    background-color: #ff5f57;
}

.dot-yellow {
    background-color: #febc2e;
}

.dot-green {
    background-color: #28c840;
}

.browser-url {
    background-color: #dde4f2;
    border-radius: 6px;
    padding: 0 10px;
    height: 22px;
    display: flex;
    align-items: center;
    margin-left: 8px;
    font-size: 11px;
    color: #9aabc5;
}

.preview-content {
    padding: 20px;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.preview-title {
    font-size: 11px;
    color: #9aabc5;
    text-transform: uppercase;
    letter-spacing: 0.77px;
    font-weight: 500;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--color-text-accent);
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-text-accent);
    border-radius: 50%;
}

.user-card {
    background-color: #eaeff9;
    border: 0.667px solid rgba(0, 0, 0, 0.07);
    border-radius: 8px;
    padding: 14px;
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.user-avatar {
    width: 34px;
    height: 34px;
    background-color: var(--color-icon-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-btn-text);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 13px;
}

.user-info h4 {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-base);
    margin-bottom: 2px;
}

.user-info p {
    font-size: 12px;
    color: var(--color-text-muted);
}

.message-alert {
    background: linear-gradient(175.86deg, var(--color-bg-tint-mid) 0%, var(--color-bg-tint) 100%);
    border: 0.667px solid var(--color-border-orange-faint);
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    gap: 10px;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
}

.alert-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.alert-text {
    font-size: 13px;
    color: var(--color-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.alert-text strong {
    color: var(--color-text-accent);
    font-weight: 700;
}

/* Steps Section */
.steps-section {
    background-color: white;
    border-top: 0.667px solid rgba(0, 0, 0, 0.07);
    border-bottom: 0.667px solid rgba(0, 0, 0, 0.07);
    padding: 100px;
}

/* Max-width limits for section contents */
.section-header,
.steps-grid,
.features-grid,
.download-content,
.footer-content,
.footer-bottom {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    margin-bottom: 40px;
}

.section-tag {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text-accent);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-title {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 44px;
    line-height: 1.23;
    color: var(--color-text-base);
    margin-bottom: 30px;
}

.section-description {
    font-family: 'Lora', serif;
    font-size: 18px;
    line-height: 1.44;
    color: var(--color-text-muted);
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.step-card {
    background-color: var(--color-bg-page);
    border: 1px solid var(--color-border-orange-step);
    border-radius: 8px;
    padding: 30px;
    width: 100%;
}

@media (min-width: 1025px) {

    .steps-grid>.step-card:nth-child(1),
    .steps-grid>.step-card:nth-child(4) {
        width: calc(45.12% - 13.5px);
    }

    .steps-grid>.step-card:nth-child(2),
    .steps-grid>.step-card:nth-child(3) {
        width: calc(54.88% - 16.5px);
    }
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.step-icon-badge {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.step-icon {
    width: 46px;
    height: 46px;
    background-color: var(--color-badge-bg);
    border: 0.667px solid var(--color-border-orange-faint);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-badge {
    background-color: var(--color-badge-bg);
    border: 0.667px solid var(--color-badge-border);
    border-radius: 100px;
    padding: 2px 8px;
    font-size: 10px;
    color: var(--color-text-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
}

.step-number {
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 56px;
    color: var(--color-primary)
}

.step-content h3 {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    color: var(--color-text-base);
    margin-bottom: 5px;
}

.step-content p {
    font-family: 'Lora', serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text-muted);
}

/* Features Section */
.features-section {
    background-color: var(--color-bg-hero);
    border-top: 0.667px solid rgba(0, 0, 0, 0.07);
    border-bottom: 0.667px solid rgba(0, 0, 0, 0.07);
    padding: 100px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 68px;
}

.feature-card {
    background-color: white;
    border: 0.667px solid rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    padding: 30px;
}

.feature-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.feature-line {
    width: 20px;
    height: 1px;
    background-color: var(--color-text-accent);
}

.feature-label span {
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--color-text-accent);
    text-transform: uppercase;
    letter-spacing: 1.32px;
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--color-badge-bg);
    border: 0.667px solid var(--color-border-orange-faint);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    color: var(--color-text-base);
    margin-bottom: 8px;
}

.feature-card>p {
    font-family: 'Lora', serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Lora', serif;
    font-size: 14px;
    line-height: 1.43;
    color: var(--color-text-muted);
}

.feature-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    background-color: var(--color-text-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* App Download Section */
.download-section {
    background-color: white;
    border-top: 0.667px solid rgba(0, 0, 0, 0.07);
    border-bottom: 0.667px solid rgba(0, 0, 0, 0.07);
    padding: 100px;
}

.download-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.download-text {
    flex: 1;
}

.download-text h2 {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 44px;
    line-height: 1.23;
    color: #0b1120;
    margin-bottom: 30px;
}

.download-text p {
    font-family: 'Lora', serif;
    font-size: 18px;
    line-height: 1.44;
    color: #4a5b7a;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.download-btn {
    width: 693px;
    max-width: 100%;
    height: 96px;
    border-radius: 14px;
    border: 0.67px solid rgba(0, 0, 0, 0.13);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.download-btn.active {
    background-color: var(--color-bg-tint);
    border-color: var(--color-border-orange-step);
}

.download-btn.disabled {
    border: 0.67px dashed rgba(0, 0, 0, 0.13);
    background-color: #FFFFFF;
    opacity: 1;
    cursor: not-allowed;
}

.download-btn-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.download-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-icon.android {
    background-color: var(--color-primary);
}

.download-icon.ios {
    background-color: #555;
}

.download-info {
    width: 160.25px;
    height: 62.5px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    justify-content: center;
}

.download-info h4 {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 16px;
    color: #0b1120;
    margin-bottom: 4px;
    line-height: 1.2;
}

.download-info .tag {
    font-family: 'Lora', serif;
    font-size: 12px;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.77px;
    margin-bottom: 4px;
    line-height: 1.2;
}

.download-info p {
    font-family: 'Lora', serif;
    font-size: 12px;
    color: #4a5b7a;
    line-height: 1.2;
}

.phone-mockup {
    width: 374px;
    height: 556px;
    border-radius: 50px;
    background: linear-gradient(123.927deg, rgba(255, 240, 235, 0.4) 0%, rgba(253, 242, 255, 0.4) 100%);
    box-shadow: 0px 25px 50px 0px rgba(240, 128, 0, 0.15);
    padding: 16px;
}

.phone-screen {
    background-color: rgba(255, 255, 255, 0.4);
    height: 100%;
    border-radius: 40px;
    padding: 40px 12px 19px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.notification-card {
    background-color: white;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
}

.notification-card.gradient-green {
    background: linear-gradient(162.962deg, var(--color-notif-green-from) 0%, var(--color-notif-green-to) 100%);
}

.notification-card.gradient-blue {
    background: linear-gradient(166.312deg, var(--color-notif-blue-from) 0%, var(--color-notif-blue-to) 100%);
}

.notification-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.notification-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    flex-shrink: 0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-icon.green {
    background-color: var(--color-notif-icon-msg);
}

.notification-icon.blue {
    background-color: var(--color-notif-icon-tg);
}

.notification-content h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #1d293d;
    margin-bottom: 4px;
}

.notification-content p {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 1.63;
    color: #62748e;
}

/* Footer */
.footer {
    background-color: white;
    border-top: 0.667px solid rgba(0, 0, 0, 0.07);
    padding: 60px 100px;
}

.footer-content {
    display: flex;
    gap: 169px;
    margin-bottom: 48px;
}

.footer-brand {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
}

.footer-logo-icon {
    width: 30px;
    height: 30px;
    background-color: var(--color-icon-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-text {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--color-text-base);
}

.footer-brand p {
    font-family: 'Lora', serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.44;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: transparent;
    border: 0.667px solid var(--color-border-orange-step);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.social-icon:hover {
    background-color: var(--color-badge-bg);
}

.footer-column h4 {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--color-text-base);
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    font-family: 'Lora', serif;
    font-size: 14px;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: var(--color-text-accent);
}

.footer-bottom {
    border-top: 0.667px solid rgba(0, 0, 0, 0.07);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-family: 'Lora', serif;
    font-size: 13px;
    color: var(--color-text-faint);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-family: 'Lora', serif;
    font-size: 13px;
    color: var(--color-text-faint);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* Responsive */
@media (max-width: 1280px) {

    .navbar-content,
    .steps-section,
    .features-section,
    .download-section,
    .footer {
        padding-left: 50px;
        padding-right: 50px;
    }

    .hero {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }

    .steps-grid {
        flex-direction: column;
    }

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

    .download-content {
        flex-direction: column;
    }

    .footer-content {
        flex-wrap: wrap;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 32px;
    }

    .navbar-content {
        padding: 0 30px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-preview {
        width: 100%;
        max-width: 500px;
    }
}