
/* ══════════════════════════════════════
   LETONOMY DESIGN SYSTEM
   ══════════════════════════════════════ */

/* Reset */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:'DM Sans',sans-serif;color:#292524;background:#FAFAF9;overflow-x:hidden;-webkit-font-smoothing:antialiased}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{cursor:pointer;font-family:inherit;border:none}
ul{list-style:none}

/* Tokens */
:root{
  --terra:#C2714F;--terra-dark:#8B4C35;--terra-light:#E8A88C;--terra-pale:#FEF3E2;
  --forest:#2D5F4A;--evergreen:#1B3F31;--mint:#E8F5EF;
  --esp:#292524;--stone-800:#44403C;--stone-600:#78716C;--stone-400:#A8A29E;
  --stone-200:#E7E5E4;--stone-100:#F5F5F4;--linen:#FAFAF9;--sand:#FEF3E2;--warm:#FFF7ED;
  --radius:12px;--radius-lg:16px;--radius-xl:24px;
}

/* Utility */
.container{max-width:1120px;margin:0 auto;padding:0 24px}
.btn{display:inline-flex;align-items:center;gap:8px;padding:14px 28px;border-radius:var(--radius);font-size:15px;font-weight:600;transition:all .25s ease}
.btn-primary{background:var(--terra);color:#FFF7ED}
.btn-primary:hover{background:var(--terra-dark);transform:translateY(-1px)}
.btn-secondary{background:transparent;color:var(--esp);border:2px solid var(--stone-200)}
.btn-secondary:hover{border-color:var(--stone-400);transform:translateY(-1px)}
.btn-forest{background:var(--forest);color:#E8F5EF}
.btn-forest:hover{background:var(--evergreen);transform:translateY(-1px)}
.btn-white{background:#fff;color:var(--esp);border:2px solid var(--stone-200)}
.btn-white:hover{border-color:var(--stone-400)}
.label{font-size:11px;font-weight:700;letter-spacing:2.5px;text-transform:uppercase;color:var(--terra)}
.label-forest{color:var(--forest)}
.arrow-icon{width:16px;height:16px}

/* Animations */
@keyframes fadeUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
.anim{opacity:0}.anim.visible{animation:fadeUp .7s ease forwards}
.anim-d1{animation-delay:.1s}.anim-d2{animation-delay:.2s}.anim-d3{animation-delay:.3s}.anim-d4{animation-delay:.4s}.anim-d5{animation-delay:.5s}

/* ── Nav ── */
.nav{position:fixed;top:0;left:0;right:0;z-index:100;transition:all .35s ease}
.nav--top{background:transparent}
.nav--scrolled{background:rgba(250,250,249,.92);backdrop-filter:blur(20px);border-bottom:1px solid var(--stone-200)}
.nav-inner{display:flex;align-items:center;justify-content:space-between;padding:16px 24px;max-width:1120px;margin:0 auto}
.nav-logo{display:flex;align-items:center;gap:10px}
.nav-logo-icon{width:36px;height:36px;border-radius:9px;background:var(--terra);display:flex;align-items:center;justify-content:center}
.nav-logo-icon span{font-family:'Fraunces',serif;font-size:18px;font-weight:900;color:#FFF7ED}
.nav-logo-text{font-family:'Fraunces',serif;font-size:20px;font-weight:700;color:var(--esp);letter-spacing:-.3px}
.nav-logo-text b{color:var(--terra);font-weight:900}
.nav-links{display:flex;align-items:center;gap:28px}
.nav-links a{font-size:14px;font-weight:500;color:var(--stone-600);transition:color .2s}
.nav-links a:hover,.nav-links a.active{color:var(--esp)}
.nav-cta{padding:10px 22px;border-radius:10px;background:var(--terra);color:#FFF7ED;font-size:13px;font-weight:600;transition:all .2s}
.nav-cta:hover{background:var(--terra-dark)}
.nav-mobile{display:none;width:28px;height:28px;flex-direction:column;justify-content:center;gap:5px;cursor:pointer;background:none;border:none}
.nav-mobile span{display:block;width:100%;height:2px;background:var(--esp);border-radius:1px;transition:all .3s}
.mobile-menu{display:none;position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(250,250,249,.98);z-index:99;padding:80px 24px 24px;flex-direction:column;gap:8px}
.mobile-menu.open{display:flex}
.mobile-menu a{font-size:18px;font-weight:500;color:var(--esp);padding:12px 0;border-bottom:1px solid var(--stone-200)}

/* ── Page Hero ── */
.page-hero{padding:140px 0 80px;position:relative;overflow:hidden}
.page-hero.bg-linen{background:var(--linen)}
.page-hero.bg-forest{background:var(--forest);color:#E8F5EF}
.page-hero.bg-esp{background:var(--esp);color:#FAFAF9}
.page-hero.bg-sand{background:var(--sand)}
.page-hero::before{content:'';position:absolute;top:-200px;right:-200px;width:600px;height:600px;border-radius:50%;opacity:.15}
.page-hero.bg-linen::before{background:var(--sand);opacity:.6}
.page-hero.bg-forest::before{background:rgba(255,255,255,.06)}
.page-hero.bg-esp::before{background:var(--terra);opacity:.08}
.page-hero.bg-sand::before{background:var(--terra-light);opacity:.3}
.hero-content{position:relative;z-index:2;max-width:680px}
.hero-title{font-family:'Fraunces',serif;font-size:clamp(36px,5vw,56px);font-weight:900;line-height:1.08;letter-spacing:-1px;margin-bottom:20px}
.hero-title span{color:var(--terra)}
.hero-desc{font-size:18px;line-height:1.65;max-width:520px;margin-bottom:32px}
.page-hero.bg-forest .hero-desc,.page-hero.bg-esp .hero-desc{color:rgba(255,255,255,.7)}
.page-hero.bg-linen .hero-desc,.page-hero.bg-sand .hero-desc{color:var(--stone-600)}
.hero-btns{display:flex;gap:12px;flex-wrap:wrap}

/* ── Section ── */
.section{padding:100px 0}
.section-header{text-align:center;max-width:600px;margin:0 auto 60px}
.section-header .label{margin-bottom:12px}
.section-header h2{font-family:'Fraunces',serif;font-size:clamp(28px,3.5vw,40px);font-weight:700;color:var(--esp);line-height:1.15;letter-spacing:-.5px;margin-bottom:12px}
.section-header p{font-size:16px;color:var(--stone-600);line-height:1.65}
.bg-white{background:#fff}
.bg-linen{background:var(--linen)}
.bg-sand{background:var(--sand)}
.bg-forest{background:var(--forest)}
.bg-esp{background:var(--esp)}
.bg-warm{background:var(--warm)}

/* ── Split Layout ── */
.split{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.split-content .label{margin-bottom:12px}
.split-content h2{font-family:'Fraunces',serif;font-size:clamp(28px,3vw,38px);font-weight:700;color:var(--esp);line-height:1.15;letter-spacing:-.3px;margin-bottom:16px}
.split-content p{font-size:16px;color:var(--stone-600);line-height:1.65;margin-bottom:24px}

/* ── Feature List ── */
.feature-list{display:flex;flex-direction:column;gap:16px;margin-bottom:32px}
.feature-list li{display:flex;gap:14px;align-items:flex-start}
.feature-check{width:28px;height:28px;border-radius:8px;background:var(--mint);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.feature-check svg{width:14px;height:14px;stroke:var(--forest);stroke-width:2.5;fill:none}
.feature-text strong{display:block;font-size:14px;font-weight:600;color:var(--esp);margin-bottom:2px}
.feature-text span{font-size:13px;color:var(--stone-600);line-height:1.5}

/* ── Cards Grid ── */
.cards-grid{display:grid;gap:16px}
.cards-grid-2{grid-template-columns:repeat(2,1fr)}
.cards-grid-3{grid-template-columns:repeat(3,1fr)}
.cards-grid-4{grid-template-columns:repeat(4,1fr)}
.card{background:#fff;border-radius:var(--radius-lg);padding:32px 28px;border:1px solid var(--stone-200);transition:all .35s ease;position:relative;overflow:hidden}
.card:hover{transform:translateY(-4px);box-shadow:0 12px 40px rgba(0,0,0,.06);border-color:var(--terra-light)}
.card::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:var(--terra);opacity:0;transition:opacity .3s}
.card:hover::before{opacity:1}
.card-icon{width:48px;height:48px;border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:20px}
.card-icon svg{width:22px;height:22px;stroke-width:1.8;fill:none}
.card h3{font-family:'Fraunces',serif;font-size:18px;font-weight:600;color:var(--esp);margin-bottom:8px}
.card p{font-size:13px;color:var(--stone-600);line-height:1.6;margin-bottom:16px}
.card-link{font-size:13px;font-weight:600;color:var(--terra);display:flex;align-items:center;gap:6px;transition:gap .2s}
.card:hover .card-link{gap:10px}
.card-link svg{width:14px;height:14px;stroke:var(--terra);stroke-width:2;fill:none}

/* ── Stat Grid ── */
.stat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.stat-card{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.1);border-radius:var(--radius);padding:24px}
.stat-card.on-light{background:var(--linen);border-color:var(--stone-200)}
.stat-val{font-family:'Fraunces',serif;font-size:36px;font-weight:900;line-height:1}
.stat-val span{color:var(--terra-light)}
.stat-card.on-light .stat-val{color:var(--esp)}
.stat-card.on-light .stat-val span{color:var(--terra)}
.stat-label{font-size:12px;margin-top:4px;opacity:.6}
.stat-card.on-light .stat-label{color:var(--stone-400)}

/* ── Checklist ── */
.checklist{display:flex;flex-direction:column;gap:10px;margin-bottom:28px}
.checklist li{display:flex;align-items:center;gap:12px;font-size:14px;color:var(--stone-800);padding:12px 16px;background:#fff;border-radius:10px;border:1px solid var(--stone-200)}
.checklist li::before{content:'';width:8px;height:8px;border-radius:50%;background:var(--forest);flex-shrink:0}

/* ── Journey Steps ── */
.journey-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.journey-step{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);border-radius:var(--radius-lg);padding:28px 24px;transition:all .35s ease}
.journey-step:hover{background:rgba(255,255,255,.1);transform:translateY(-4px)}
.journey-num{font-family:'Fraunces',serif;font-size:48px;font-weight:900;color:var(--terra);opacity:.4;line-height:1;margin-bottom:12px}
.journey-step-title{font-family:'Fraunces',serif;font-size:18px;font-weight:600;color:#FAFAF9;margin-bottom:8px}
.journey-step-desc{font-size:13px;color:var(--stone-400);line-height:1.6}
.journey-tags{display:flex;flex-wrap:wrap;gap:6px;margin-top:14px}
.journey-tag{font-size:10px;font-weight:600;letter-spacing:.5px;padding:4px 10px;border-radius:20px;background:rgba(194,113,79,.15);color:var(--terra-light)}

/* ── Process Steps ── */
.process-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;counter-reset:step}
.process-step{text-align:center;counter-increment:step}
.process-step::before{content:counter(step);display:flex;width:48px;height:48px;border-radius:50%;background:var(--terra);color:#FFF7ED;font-family:'Fraunces',serif;font-size:20px;font-weight:900;align-items:center;justify-content:center;margin:0 auto 16px}
.process-step h3{font-family:'Fraunces',serif;font-size:18px;font-weight:600;color:var(--esp);margin-bottom:8px}
.process-step p{font-size:13px;color:var(--stone-600);line-height:1.6}

/* ── Testimonials ── */
.test-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.test-card{background:#fff;border-radius:var(--radius-lg);padding:28px;border:1px solid var(--stone-200)}
.test-stars{color:var(--terra);font-size:14px;letter-spacing:2px;margin-bottom:14px}
.test-quote{font-size:14px;color:var(--stone-600);line-height:1.65;margin-bottom:18px;font-style:italic}
.test-author{font-size:13px;font-weight:600;color:var(--esp)}
.test-role{font-size:12px;color:var(--stone-400)}

/* ── CTA Section ── */
.cta-section{background:var(--esp);color:#FAFAF9;padding:100px 0;text-align:center;position:relative;overflow:hidden}
.cta-section::before{content:'';position:absolute;top:-200px;left:50%;transform:translateX(-50%);width:800px;height:800px;border-radius:50%;background:radial-gradient(circle,rgba(194,113,79,.12) 0%,transparent 70%)}
.cta-section h2{font-family:'Fraunces',serif;font-size:clamp(32px,4vw,48px);font-weight:900;color:#FAFAF9;line-height:1.1;letter-spacing:-.5px;margin-bottom:16px;position:relative;z-index:2}
.cta-section h2 span{color:var(--terra-light)}
.cta-section p{font-size:17px;color:var(--stone-400);max-width:480px;margin:0 auto 32px;line-height:1.6;position:relative;z-index:2}
.cta-btns{display:flex;gap:12px;justify-content:center;position:relative;z-index:2}

/* ── Trust Strip ── */
.trust{padding:40px 0;border-bottom:1px solid var(--stone-200);background:var(--warm)}
.trust-inner{display:flex;align-items:center;gap:40px;justify-content:center;flex-wrap:wrap}
.trust-label{font-size:12px;font-weight:600;color:var(--stone-400);letter-spacing:1px;text-transform:uppercase;white-space:nowrap}
.trust-item{display:flex;align-items:center;gap:8px;color:var(--stone-400);font-size:13px;font-weight:500}
.trust-dot{width:6px;height:6px;border-radius:50%;background:var(--terra-light)}
.trust-stars{color:var(--terra);letter-spacing:2px}

/* ── Form ── */
.form-group{margin-bottom:20px}
.form-group label{display:block;font-size:13px;font-weight:600;color:var(--esp);margin-bottom:6px}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:12px 16px;border:1.5px solid var(--stone-200);border-radius:10px;font-family:inherit;font-size:14px;color:var(--esp);background:#fff;transition:border-color .2s}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:var(--terra)}
.form-group textarea{resize:vertical;min-height:120px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.form-note{font-size:12px;color:var(--stone-400);margin-top:4px}

/* ── Timeline ── */
.timeline{position:relative;padding-left:24px;border-left:2px solid var(--stone-200)}
.timeline-event{position:relative;padding:0 0 32px 24px}
.timeline-event::before{content:'';position:absolute;left:-29px;top:4px;width:12px;height:12px;border-radius:50%;background:var(--terra);border:3px solid var(--linen)}
.timeline-event:last-child{padding-bottom:0}
.timeline-event h4{font-family:'Fraunces',serif;font-size:16px;font-weight:600;color:var(--esp);margin-bottom:4px}
.timeline-event p{font-size:13px;color:var(--stone-600);line-height:1.6}

/* ── Legal Pages ── */
.legal-content{max-width:720px;margin:0 auto}
.legal-content h2{font-family:'Fraunces',serif;font-size:22px;font-weight:700;color:var(--esp);margin:40px 0 12px}
.legal-content h3{font-size:16px;font-weight:600;color:var(--esp);margin:28px 0 8px}
.legal-content p{font-size:14px;color:var(--stone-600);line-height:1.7;margin-bottom:16px}
.legal-content ul{margin:0 0 16px 20px;list-style:disc}
.legal-content li{font-size:14px;color:var(--stone-600);line-height:1.7;margin-bottom:6px}
.legal-content a{color:var(--terra);text-decoration:underline}
.legal-updated{font-size:13px;color:var(--stone-400);margin-bottom:32px}

/* ── Blog/Resources ── */
.resource-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.resource-card{background:#fff;border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--stone-200);transition:all .3s}
.resource-card:hover{transform:translateY(-3px);box-shadow:0 8px 30px rgba(0,0,0,.06)}
.resource-img{height:180px;background:var(--sand);display:flex;align-items:center;justify-content:center}
.resource-img .ri-label{font-size:11px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:var(--terra);background:var(--warm);padding:6px 14px;border-radius:20px}
.resource-body{padding:20px}
.resource-cat{font-size:10px;font-weight:600;letter-spacing:1.5px;text-transform:uppercase;color:var(--terra);margin-bottom:8px}
.resource-title{font-family:'Fraunces',serif;font-size:16px;font-weight:600;color:var(--esp);margin-bottom:8px;line-height:1.3}
.resource-excerpt{font-size:13px;color:var(--stone-600);line-height:1.5;margin-bottom:12px}
.resource-meta{font-size:11px;color:var(--stone-400)}

/* ── Footer ── */
.footer{background:var(--esp);border-top:1px solid rgba(255,255,255,.06);padding:60px 0 40px;color:var(--stone-400)}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;margin-bottom:40px}
.footer-brand p{font-size:13px;color:var(--stone-400);line-height:1.6;max-width:280px;margin-top:12px}
.footer-col h4{font-size:11px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:var(--stone-400);margin-bottom:16px}
.footer-col a{display:block;font-size:13px;color:var(--stone-400);padding:4px 0;transition:color .2s}
.footer-col a:hover{color:#FAFAF9}
.footer-bottom{border-top:1px solid rgba(255,255,255,.06);padding-top:24px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px}
.footer-bottom p{font-size:12px;color:rgba(255,255,255,.25)}
.footer-legal{display:flex;gap:20px}
.footer-legal a{font-size:12px;color:rgba(255,255,255,.25);transition:color .2s}
.footer-legal a:hover{color:var(--stone-400)}

/* ── Platform Mock ── */
.plat-mockup{background:#fff;border-radius:var(--radius);box-shadow:0 8px 40px rgba(0,0,0,.08);overflow:hidden}
.plat-bar{background:var(--esp);padding:10px 16px;display:flex;align-items:center;gap:8px}
.plat-dot{width:8px;height:8px;border-radius:50%;background:var(--stone-600)}
.plat-dot:first-child{background:var(--terra)}
.plat-body{padding:20px}
.plat-row{display:flex;gap:12px;margin-bottom:12px}
.plat-card-sm{flex:1;border-radius:8px;padding:14px}
.plat-card-sm h4{font-size:11px;font-weight:600;letter-spacing:1px;text-transform:uppercase;margin-bottom:4px}
.plat-card-sm .plat-val{font-family:'Fraunces',serif;font-size:22px;font-weight:700}
.plat-progress{height:4px;border-radius:2px;background:rgba(0,0,0,.08);margin-top:8px;overflow:hidden}
.plat-progress-fill{height:100%;border-radius:2px}
.plat-table{width:100%;border-collapse:collapse;margin-top:8px}
.plat-table th{text-align:left;font-size:10px;font-weight:600;color:var(--stone-400);letter-spacing:1px;text-transform:uppercase;padding:8px 0;border-bottom:1px solid var(--stone-200)}
.plat-table td{font-size:12px;padding:10px 0;border-bottom:1px solid var(--stone-100);color:var(--stone-600)}
.plat-badge{font-size:10px;font-weight:600;padding:3px 8px;border-radius:20px;display:inline-block}

/* ── Sign-in Cards ── */
.signin-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;max-width:800px;margin:0 auto}
.signin-card{background:#fff;border-radius:var(--radius-lg);padding:40px 28px;border:2px solid var(--stone-200);text-align:center;transition:all .3s}
.signin-card:hover{border-color:var(--terra);transform:translateY(-4px)}
.signin-card h3{font-family:'Fraunces',serif;font-size:20px;font-weight:600;color:var(--esp);margin-bottom:8px}
.signin-card p{font-size:13px;color:var(--stone-600);margin-bottom:20px;line-height:1.5}

/* ── Responsive ── */
@media(max-width:900px){
  .split{grid-template-columns:1fr}
  .cards-grid-3,.cards-grid-4,.journey-grid,.stat-grid,.test-grid,.process-steps,.resource-grid,.signin-grid{grid-template-columns:1fr}
  .cards-grid-2{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .nav-links{display:none}
  .nav-mobile{display:flex}
  .form-row{grid-template-columns:1fr}
  .hero-btns,.cta-btns{flex-direction:column;align-items:flex-start}
}
@media(min-width:601px) and (max-width:900px){
  .cards-grid-3,.test-grid,.resource-grid,.signin-grid{grid-template-columns:repeat(2,1fr)}
  .journey-grid,.stat-grid{grid-template-columns:repeat(2,1fr)}
}

/* ── Dropdown Nav ── */
.nav-links{display:flex;align-items:center;gap:4px}
.nav-links>a,.nav-dd{font-size:13.5px;font-weight:500;color:var(--stone-600);padding:8px 14px;border-radius:8px;cursor:pointer;transition:all .15s;position:relative;white-space:nowrap}
.nav-links>a:hover,.nav-dd:hover{color:var(--esp);background:var(--stone-100)}
.nav-links>a.active{color:var(--esp)}
.nav-dd svg.dd-arrow{width:10px;height:10px;margin-left:2px;vertical-align:middle;stroke:var(--stone-400);stroke-width:2;fill:none;transition:transform .2s}
.nav-dd:hover svg.dd-arrow{stroke:var(--esp);transform:rotate(180deg)}
.dd-panel{display:none;position:absolute;top:100%;left:0;padding-top:10px;z-index:50}
.nav-dd:hover .dd-panel{display:block}
.dd-card{background:#fff;border:1px solid var(--stone-200);border-radius:12px;padding:8px;min-width:240px;box-shadow:0 8px 30px rgba(0,0,0,.08)}
.dd-item{display:flex;align-items:flex-start;gap:10px;padding:10px 12px;border-radius:8px;cursor:pointer;transition:background .1s;text-decoration:none;color:inherit}
.dd-item:hover{background:var(--linen)}
.dd-icon{width:32px;height:32px;border-radius:8px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.dd-icon svg{width:16px;height:16px;stroke-width:1.8;fill:none}
.dd-title{font-size:13px;font-weight:600;color:var(--esp)}
.dd-desc{font-size:11px;color:var(--stone-400);line-height:1.3;margin-top:1px}
.dd-divider{height:1px;background:var(--stone-100);margin:4px 8px}
.tag-new{font-size:9px;font-weight:700;background:var(--mint);color:var(--forest);padding:2px 6px;border-radius:10px;margin-left:4px;letter-spacing:.5px}
@media(max-width:900px){.dd-panel{display:none !important}}

/* ── Sign-in Button ── */
.nav-signin{padding:8px 18px;border-radius:8px;font-size:13px;font-weight:500;color:var(--esp);border:1.5px solid var(--stone-200);transition:all .2s;white-space:nowrap;background:transparent}
.nav-signin:hover{border-color:var(--stone-400);background:var(--stone-100)}
