@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root{
  --bg:#f6f4ef;
  --surface:#ffffff;
  --surface-2:#f0eee9;
  --ink:#111114;
  --muted:#6d6b70;
  --line:#dedbd4;
  --brand:#d7ae65;
  --brand-2:#bf8730;
  --violet:#6757ff;
  --dark:#0b0b0d;
  --radius:28px;
  --shadow:0 30px 80px rgba(20,18,15,.12);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:var(--bg);
  font-family:"DM Sans",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  -webkit-font-smoothing:antialiased;
}
body.menu-open{overflow:hidden}
a{color:inherit;text-decoration:none}
button,input{font:inherit}
button{color:inherit}
svg{display:block}
.container{width:min(1180px,calc(100% - 40px));margin:0 auto}
.site-shell{overflow:hidden}

.topbar{
  position:sticky;top:0;z-index:100;
  border-bottom:1px solid rgba(17,17,20,.07);
  background:rgba(246,244,239,.88);
  backdrop-filter:blur(18px);
}
.nav-wrap{height:76px;display:flex;align-items:center;gap:32px}
.brand{display:inline-flex;align-items:center;gap:10px;font-family:"Manrope",sans-serif;font-weight:800;letter-spacing:-.04em}
.landing-logo{width:56px;height:56px;display:block;object-fit:cover;border-radius:13px;background:#fff;box-shadow:0 5px 18px rgba(22,18,12,.08)}
.brand-mark{width:31px;height:31px;border-radius:10px;background:var(--dark);display:grid;grid-template-columns:repeat(3,4px);justify-content:center;align-items:center;gap:3px;transform:rotate(-4deg)}
.brand-mark span{width:4px;background:var(--brand);border-radius:10px;display:block}
.brand-mark span:nth-child(1){height:10px}.brand-mark span:nth-child(2){height:18px}.brand-mark span:nth-child(3){height:14px}
.brand-name{font-size:20px}.brand-name span{font-weight:600}
.main-nav{margin-left:auto;display:flex;align-items:center;gap:27px}
.main-nav a{font-size:14px;color:#4a484c;font-weight:600;transition:.2s ease}
.main-nav a:hover{color:#000}
.nav-actions{display:flex;gap:8px}
.nav-toggle{display:none;border:0;background:transparent;padding:10px}
.nav-toggle span{display:block;width:24px;height:2px;background:#111;margin:5px 0;transition:.2s}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  min-height:44px;padding:0 18px;border-radius:999px;font-weight:700;
  font-size:14px;border:1px solid transparent;transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn svg{width:17px;fill:none;stroke:currentColor;stroke-width:1.8}
.btn-small{padding:0 17px}
.btn-large{min-height:54px;padding:0 23px;font-size:15px}
.btn-primary{background:var(--brand);color:#121212;border-color:var(--brand);box-shadow:0 12px 28px rgba(191,135,48,.2)}
.btn-primary:hover{background:var(--brand-2)}
.btn-dark{background:var(--dark);color:white;border-color:var(--dark)}
.btn-white{background:#fff;color:#111}
.btn-light{background:#fff;border-color:#d9d6d0;color:#19191c}
.btn-ghost{background:transparent}
.btn-block{width:100%}

.hero{
  position:relative;
  padding:86px 0 36px;
  background:
    radial-gradient(circle at 12% 4%,rgba(201,150,62,.22),transparent 26%),
    linear-gradient(180deg,#f8f6f1 0%,#f6f4ef 100%);
}
.hero-glow{position:absolute;border-radius:50%;filter:blur(80px);pointer-events:none}
.hero-glow-a{width:400px;height:400px;background:rgba(201,150,62,.12);top:80px;left:-240px}
.hero-glow-b{width:480px;height:480px;background:rgba(103,87,255,.08);right:-280px;top:170px}
.hero-grid{display:grid;grid-template-columns:.92fr 1.35fr;gap:38px;align-items:center}
.hero-copy{position:relative;z-index:3;padding-bottom:60px}
.eyebrow,.section-kicker{
  display:inline-flex;align-items:center;gap:9px;
  font-size:12px;text-transform:uppercase;letter-spacing:.12em;
  font-weight:800;color:#55525a;
}
.eyebrow-dot{width:8px;height:8px;border-radius:50%;background:var(--brand-2);box-shadow:0 0 0 5px rgba(191,135,48,.18)}
.hero h1{
  font-family:"Manrope",sans-serif;
  font-size:clamp(48px,5.2vw,78px);
  line-height:.98;letter-spacing:-.065em;
  margin:24px 0 26px;
  max-width:720px;
}
.hero h1 span{position:relative;white-space:nowrap}
.hero h1 span:after{
  content:"";position:absolute;left:0;right:0;bottom:3px;height:11px;
  background:var(--brand);z-index:-1;transform:rotate(-1deg);border-radius:30px;
}
.hero-lead{font-size:18px;line-height:1.68;color:#59575d;max-width:590px;margin:0 0 31px}
.hero-actions{display:flex;gap:10px;flex-wrap:wrap}
.hero-proof{display:flex;gap:20px;flex-wrap:wrap;margin-top:24px;color:#69676b;font-size:13px;font-weight:600}
.hero-proof i{font-style:normal;color:#111;margin-right:5px}

.product-stage{position:relative;min-height:650px}
.app-window{
  position:absolute;left:0;top:10px;width:720px;max-width:100%;
  border-radius:23px;background:#fff;border:1px solid rgba(20,20,23,.09);
  box-shadow:0 36px 90px rgba(22,19,16,.18);
  overflow:hidden;transform:rotate(1.2deg);
}
.app-bar{height:59px;border-bottom:1px solid #ece9e4;display:flex;align-items:center;gap:18px;padding:0 19px;background:#fbfaf8}
.app-brand{font-family:"Manrope",sans-serif;font-weight:800;font-size:12px;display:flex;align-items:center;gap:7px}
.mini-mark{width:18px;height:18px;border-radius:5px;background:#111;display:block;position:relative}
.mini-mark:after{content:"";position:absolute;width:4px;height:9px;border-radius:5px;background:var(--brand);left:7px;top:4px}
.app-search{height:31px;min-width:250px;flex:1;border-radius:9px;background:#f0eeeb;color:#9a9691;font-size:10px;display:flex;align-items:center;padding:0 12px}
.app-user{width:29px;height:29px;border-radius:50%;background:#19191c;color:white;display:grid;place-items:center;font-size:9px;font-weight:800}
.app-layout{display:grid;grid-template-columns:54px 1fr;min-height:470px}
.app-sidebar{border-right:1px solid #eeebe7;padding:18px 0;display:flex;flex-direction:column;align-items:center;gap:17px}
.side-logo,.side-item{display:block;width:24px;height:24px;border-radius:8px;background:#efede8}
.side-item{width:22px;height:22px;border-radius:7px}
.side-item.active{background:#111;position:relative}
.side-item.active:after{content:"";position:absolute;width:6px;height:6px;border-radius:50%;background:var(--brand);inset:0;margin:auto}
.app-main{padding:23px 25px;background:#f9f8f5}
.app-heading{display:flex;align-items:center;justify-content:space-between}
.app-heading small{font-size:9px;color:#99958f}.app-heading h3{font-family:"Manrope";font-size:22px;margin:4px 0 0}
.app-heading button{background:#151517;border:0;color:white;border-radius:9px;font-size:9px;font-weight:800;padding:10px 13px}
.metrics{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin:18px 0}
.metrics>div{background:#fff;border:1px solid #ece9e5;border-radius:12px;padding:12px}
.metrics small{display:block;color:#8c8984;font-size:8px}.metrics strong{display:inline-block;font-size:18px;margin-top:5px}.metrics em{float:right;font-size:7px;font-style:normal;background:#effbd9;padding:4px 6px;border-radius:10px;margin-top:5px}
.calendar-card{background:white;border:1px solid #e9e6e1;border-radius:14px;padding:13px}
.calendar-tools{display:flex;justify-content:space-between;align-items:center;font-size:9px;margin-bottom:10px}
.calendar-tools div{display:flex;gap:5px;align-items:center}.calendar-tools span,.calendar-tools b{padding:5px 7px;background:#f5f3ef;border-radius:6px}
.calendar-grid{display:grid;grid-template-columns:42px repeat(3,1fr);height:280px;overflow:hidden}
.time-col{padding-top:34px;display:flex;flex-direction:column;justify-content:space-around;color:#aaa69f;font-size:7px}
.staff-col{position:relative;border-left:1px solid #f0ede8;background:repeating-linear-gradient(to bottom,transparent 0,transparent 45px,#f3f1ee 46px)}
.staff-name{height:34px;text-align:center;border-bottom:1px solid #eeeae5}.staff-name b{display:block;font-size:8px}.staff-name small{font-size:6px;color:#a19d96}
.appointment{position:absolute;left:8px;right:8px;border-radius:8px;padding:7px;background:#f7eddb;border-left:3px solid #c7943d;box-shadow:0 4px 10px rgba(0,0,0,.03)}
.appointment b{display:block;font-size:7px}.appointment span{font-size:6px;color:#74716c}
.appt-1{top:52px;height:55px}.appt-2{top:142px;height:70px;background:#eeeaff;border-left-color:#7869ff}
.appt-3{top:85px;height:55px;background:#e9f5ff;border-left-color:#5da5df}.appt-4{top:184px;height:52px;background:#fff0dc;border-left-color:#e4a34d}
.appt-5{top:66px;height:54px;background:#ffe9ee;border-left-color:#e16f88}.appt-6{top:207px;height:50px;background:#ebf8f5;border-left-color:#55b99f}

.phone-mock{
  position:absolute;right:-24px;bottom:20px;width:226px;height:446px;
  border:8px solid #111;border-radius:34px;background:#111;box-shadow:0 28px 55px rgba(16,16,19,.22);
  transform:rotate(-4.4deg);z-index:5;
}
.phone-speaker{position:absolute;top:8px;left:50%;transform:translateX(-50%);width:65px;height:17px;background:#111;border-radius:0 0 11px 11px;z-index:2}
.phone-screen{height:100%;border-radius:26px;background:linear-gradient(160deg,#f7f6f2,#fff);padding:34px 15px 14px;overflow:hidden}
.phone-brand{font-family:"Manrope";font-weight:800;font-size:12px;margin-bottom:30px}.phone-brand span{font-weight:600}
.phone-screen>small{font-size:8px;color:#918e87}.phone-screen h4{font:700 18px "Manrope";letter-spacing:-.03em;margin:5px 0 14px}
.service-row{display:flex;justify-content:space-between;gap:8px;padding:12px 0;border-bottom:1px solid #eceae6;font-size:8px}.service-row b{font-size:8px}
.phone-date{display:grid;grid-template-columns:repeat(3,1fr);gap:5px;margin:15px 0}.phone-date span{font-size:7px;text-align:center;padding:8px 3px;border:1px solid #ddd9d3;border-radius:8px}.phone-date .selected{background:#111;color:white}
.phone-screen button{width:100%;border:0;background:var(--brand);border-radius:10px;padding:11px;font-weight:800;font-size:9px}

.team-photo-stage{min-height:520px}
.team-photo-frame{
  position:absolute;left:50%;top:10px;transform:translateX(-50%) rotate(-1.4deg);
  width:min(430px,92%);aspect-ratio:4/5;border-radius:28px;background:#fff;
  border:1px solid rgba(20,20,23,.09);box-shadow:0 36px 90px rgba(22,19,16,.18);overflow:hidden;
}
.team-photo-image{display:block;width:100%;height:100%;object-fit:cover;object-position:center top}
.product-image-placeholder.team{border-radius:28px}

.stage-chip{position:absolute;z-index:7;background:#fff;border:1px solid #e5e1dc;box-shadow:0 12px 30px rgba(24,22,20,.12);border-radius:12px;padding:11px 14px;font-size:9px;font-weight:700}
.stage-chip strong{display:block;font-size:12px;margin-top:2px}.chip-a{left:-18px;bottom:80px}.chip-b{right:8px;top:-20px;background:#111;color:white;border-color:#111}

.trust-line{display:flex;align-items:center;justify-content:center;gap:31px;flex-wrap:wrap;padding:24px 0 8px;border-top:1px solid #dfdcd7;color:#7d7974;font-size:12px}
.trust-line strong{color:#353337;font-weight:700}

.section{padding:110px 0}
.section-soft{background:#eeece6}
.section-heading{max-width:580px}
.section-heading.narrow{max-width:730px}
.section-heading.center{text-align:center;margin:0 auto}
.section-kicker{margin-bottom:16px;color:#7b7771}
.section-kicker-light{color:#b9b7b1}
.section-heading h2,.tv-copy h2,.switch-copy h2,.final-box h2{
  font:800 clamp(38px,4.5vw,64px)/1.03 "Manrope",sans-serif;
  letter-spacing:-.055em;margin:0 0 20px;
}
.section-heading p,.tv-copy>p,.switch-copy>p{font-size:17px;line-height:1.68;color:#6b6864;margin:0}

.feature-bento{display:grid;grid-template-columns:repeat(12,1fr);gap:15px;margin-top:55px}
.feature-card{
  grid-column:span 4;min-height:340px;border:1px solid #dcd8d1;background:#faf9f6;border-radius:24px;padding:30px;overflow:hidden;position:relative;
}
.feature-card.feature-large{grid-column:span 8;display:grid;grid-template-columns:.85fr 1.15fr;gap:30px;align-items:center}
.feature-card.feature-wide{grid-column:span 8;display:grid;grid-template-columns:.8fr 1.2fr;gap:25px;align-items:center}
.feature-card.feature-dark{background:#111;color:white;border-color:#111}
.feature-icon{display:grid;place-items:center;width:34px;height:34px;border-radius:10px;background:#e9e6df;font-size:10px;font-weight:800;margin-bottom:24px}
.feature-dark .feature-icon{background:#26262a;color:var(--brand)}
.feature-card h3{font:700 24px/1.15 "Manrope";letter-spacing:-.035em;margin:0 0 13px}
.feature-card p{color:#6f6c67;line-height:1.6;font-size:14px;margin:0}
.feature-dark p{color:#aaa7a1}
.feature-card a{display:inline-block;margin-top:25px;font-size:13px;font-weight:800;border-bottom:1px solid #222;padding-bottom:3px}
.feature-card a span{margin-left:5px}

.mini-calendar-ui{background:#fff;border:1px solid #dedbd4;border-radius:16px;box-shadow:0 18px 50px rgba(33,30,27,.1);padding:15px;transform:rotate(1deg)}
.mc-head,.mc-tabs,.mc-row{display:flex;align-items:center}
.mc-head{justify-content:space-between;font-size:10px}.mc-tabs{gap:5px;margin:12px 0}.mc-tabs span,.mc-tabs b{font-size:7px;padding:5px 8px;border-radius:8px;background:#f1efeb}.mc-tabs b{background:#111;color:#fff}
.mc-row{gap:8px;border-top:1px solid #eeeae5;padding:9px 0}.mc-row time{font-size:7px;color:#8e8a84}.mc-row i{width:6px;height:24px;background:#d7ae65;border-radius:4px}.mc-row div{flex:1}.mc-row b,.mc-row small{display:block}.mc-row b{font-size:8px}.mc-row small{font-size:6px;color:#8c8882;margin-top:2px}.mc-row em{font-style:normal;font-size:6px;background:#f6ead5;padding:4px 5px;border-radius:7px}.mc-row em.wait{background:#fff0d9}

.client-pills{display:flex;flex-wrap:wrap;gap:6px;margin-top:42px}.client-pills span{font-size:8px;font-weight:800;border:1px solid #dbd8d2;background:#fff;padding:7px 9px;border-radius:999px}
.loyalty-ui{margin-top:28px;border-radius:17px;background:linear-gradient(135deg,#202024,#08080a);border:1px solid #303035;padding:18px}
.loyalty-ui>div{display:flex;justify-content:space-between;align-items:center}.loyalty-ui>div span{font:800 11px "Manrope";color:var(--brand)}.loyalty-ui>div small{font-size:7px;color:#969398}.loyalty-ui strong{display:block;font-size:24px;margin-top:23px}.loyalty-ui strong small{font-size:8px;color:#aaa;font-weight:500}.loyalty-ui progress{width:100%;height:5px;accent-color:var(--brand)}.loyalty-ui p{font-size:7px;color:#8e8a91;margin-top:6px}
.team-stack{display:flex;margin-top:50px}.team-stack span{width:38px;height:38px;border-radius:50%;display:grid;place-items:center;background:#111;color:white;border:3px solid #faf9f6;margin-right:-8px;font-size:9px;font-weight:800}.team-stack span:last-child{background:var(--brand);color:#111}
.chart-ui{height:230px;background:#fff;border:1px solid #e1ddd7;border-radius:16px;padding:18px}.chart-head{display:flex;align-items:end;gap:10px}.chart-head span{font-size:8px;color:#8c8983}.chart-head b{font-size:18px}.chart-head em{font-size:7px;font-style:normal;background:#eef8dc;padding:4px 6px;border-radius:8px}
.bars{height:130px;display:flex;align-items:end;gap:8px;border-bottom:1px solid #eae7e2;padding-top:15px}.bars span{display:block;flex:1;height:var(--h);background:#19191b;border-radius:5px 5px 0 0}.bars span:nth-last-child(-n+2){background:var(--brand-2)}
.chart-days{display:grid;grid-template-columns:repeat(7,1fr);text-align:center;font-size:6px;color:#98948e;margin-top:6px}
.message-ui{margin-top:31px;background:#fff;border:1px solid #e1ddd7;border-radius:15px;padding:14px;box-shadow:0 10px 25px rgba(0,0,0,.04)}.message-ui span{font-size:7px;color:#999}.message-ui p{font-size:9px;color:#333;line-height:1.4;margin:7px 0 10px}.message-ui b{font-size:7px;color:#111;background:var(--brand);border-radius:6px;padding:6px 8px;display:inline-block}

.sector-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:70px;align-items:center}
.sector-tabs{display:flex;flex-wrap:wrap;gap:7px;margin-top:33px}
.sector-tabs button{border:1px solid #d8d4ce;background:transparent;border-radius:999px;padding:10px 14px;font-size:12px;font-weight:700;cursor:pointer}
.sector-tabs button.active{background:#111;color:white;border-color:#111}
.sector-visual{min-height:520px;background:#151517;color:white;border-radius:32px;position:relative;overflow:hidden;padding:55px;display:flex;align-items:end}
.sector-panel{display:none;position:relative;z-index:3;max-width:520px}.sector-panel.active{display:block;animation:sectorIn .35s ease}
.visual-label{font-size:10px;letter-spacing:.12em;text-transform:uppercase;color:var(--brand);font-weight:800}
.sector-panel h3{font:700 clamp(32px,4vw,52px)/1.06 "Manrope";letter-spacing:-.05em;margin:16px 0 25px}
.sector-panel ul{list-style:none;padding:0;margin:0;display:grid;gap:11px}.sector-panel li{font-size:13px;color:#bebbc1}.sector-panel li:before{content:"→";color:var(--brand);margin-right:9px}
.sector-orbit span{position:absolute;border:1px solid rgba(201,150,62,.17);border-radius:50%;right:-100px;top:-80px}.orbit-a{width:420px;height:420px}.orbit-b{width:320px;height:320px;right:-50px!important;top:-30px!important}.orbit-c{width:170px;height:170px;right:24px!important;top:46px!important;background:radial-gradient(circle,rgba(201,150,62,.18),transparent 65%)}
@keyframes sectorIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}

.tv-section{background:#0d0d0f;color:white}
.tv-grid{display:grid;grid-template-columns:1.12fr .72fr;gap:88px;align-items:center}
.tv-copy>p{color:#a9a6aa;max-width:600px}
.check-list{list-style:none;padding:0;margin:31px 0;display:grid;gap:12px}.check-list li{color:#c6c3c8;font-size:14px}.check-list span{display:inline-grid;place-items:center;width:20px;height:20px;border-radius:50%;background:rgba(201,150,62,.12);color:var(--brand);font-size:10px;margin-right:8px}
.tv-price{display:flex;align-items:baseline;gap:7px}.tv-price strong{font:800 37px "Manrope";letter-spacing:-.05em}.tv-price span{color:#858289;font-size:12px}
.tv-device{padding:20px 0 0;max-width:510px;justify-self:end;width:100%}
.tv-frame{background:#030303;border:8px solid #1c1c20;border-radius:18px;padding:6px;box-shadow:0 34px 85px rgba(0,0,0,.45)}
.tv-content{--tv-accent:#c9963e;aspect-ratio:16/9;border-radius:7px;background:#101013;overflow:hidden;display:grid;grid-template-rows:23% 1fr 11%;isolation:isolate}
.tv-display-head{background:#f7f6f4;color:#272628;display:grid;grid-template-columns:1fr 1.15fr 1fr;align-items:center;padding:7px 11px}.tv-display-brand{display:flex;align-items:center;gap:6px;min-width:0}.tv-display-brand img{width:28px;height:28px;object-fit:cover;background:#fff;border-radius:6px}.tv-display-brand strong{font:800 7px "Manrope";white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.tv-display-time{text-align:center}.tv-display-time strong,.tv-display-time small{display:block}.tv-display-time strong{font:800 clamp(16px,2.1vw,28px)/1 "Manrope";color:#bf2430;letter-spacing:-.055em}.tv-display-time small{font-size:5px;color:#6f6b68;margin-top:3px;white-space:nowrap}.tv-display-weather{justify-self:end;display:grid;grid-template-columns:auto auto;align-items:center;column-gap:5px}.tv-display-weather>span{grid-row:span 2;color:#e9aa00;font-size:20px}.tv-display-weather strong{font:800 11px "Manrope"}.tv-display-weather small{font-size:4px;color:#777;white-space:nowrap}.tv-display-weather small b{font-weight:800;color:#4d4a48}
.tv-display-stage{display:grid;grid-template-columns:3fr 1.08fr;gap:6px;padding:6px;background:#111}.tv-display-video,.tv-display-poster{position:relative;overflow:hidden;border-radius:6px;background:#202023}.tv-display-video video{width:100%;height:100%;object-fit:cover;filter:saturate(.82) contrast(1.04)}.tv-display-video:after{content:"";position:absolute;inset:45% 0 0;background:linear-gradient(transparent,rgba(0,0,0,.82))}.tv-display-video>strong{position:absolute;z-index:2;left:10px;bottom:9px;max-width:72%;font:800 11px "Manrope"}.tv-display-video>span{position:absolute;z-index:2;right:8px;bottom:8px;padding:4px 6px;border-radius:999px;background:rgba(0,0,0,.63);font-size:4px}.tv-display-video>span i{display:inline-block;width:4px;height:4px;border-radius:50%;background:#e24848;margin-right:3px;animation:tv-live 1.4s infinite}.tv-display-poster{display:grid;place-items:center}.tv-display-poster img{width:100%;height:100%;object-fit:contain;background:#202023}
.tv-display-ticker{display:block;background:var(--tv-ticker-bg,var(--tv-accent));color:var(--tv-ticker-text,#17130f);overflow:hidden}.tv-display-ticker>div{display:flex;width:max-content;min-width:200%;height:100%;align-items:center;white-space:nowrap;animation:tv-ticker 23s linear infinite}.tv-display-ticker span{min-width:50%;font-size:6px;font-weight:800;padding-left:18px}
@keyframes tv-ticker{to{transform:translateX(-50%)}}@keyframes tv-live{50%{opacity:.35;transform:scale(.8)}}
.tv-stand{width:100px;height:25px;margin:0 auto;border-bottom:5px solid #26262b;position:relative}.tv-stand:before{content:"";position:absolute;left:46px;top:0;width:8px;height:22px;background:#26262b}

.pricing-section{background:#f7f5f0}
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:15px;margin-top:55px;align-items:start}
.price-card{position:relative;border:1px solid #dcd8d1;background:#fff;border-radius:25px;padding:29px}
.price-card.featured{border:2px solid #111;box-shadow:0 26px 60px rgba(17,17,20,.1);transform:translateY(-10px)}
.recommended{position:absolute;right:20px;top:20px;font-size:8px;text-transform:uppercase;letter-spacing:.1em;background:var(--brand);padding:6px 9px;border-radius:999px;font-weight:800}
.plan-tag{font-size:10px;color:#77736e;font-weight:800;text-transform:uppercase;letter-spacing:.12em}
.price-head h3{font:700 24px "Manrope";letter-spacing:-.04em;margin:11px 0 7px}.price-head p{font-size:12px;color:#7d7974;line-height:1.5;min-height:54px}
.price-value{display:flex;align-items:baseline;gap:5px;margin:27px 0 20px}.price-value strong{font:800 40px "Manrope";letter-spacing:-.055em}.price-value span{font-size:11px;color:#817d78}
.price-card ul{list-style:none;padding:0;margin:25px 0 0;display:grid;gap:12px}.price-card li{font-size:12px;color:#4f4c49}.price-card li:before{content:"✓";display:inline-grid;place-items:center;width:18px;height:18px;border-radius:50%;background:#eff7df;color:#111;font-size:8px;font-weight:900;margin-right:8px}
.price-note{display:block;margin-top:25px;color:#99958f;font-size:9px;line-height:1.5}
.tax-note{text-align:center;color:#9b9792;font-size:9px;max-width:760px;margin:28px auto 0;line-height:1.5}

.switch-section{background:#e8e5de}
.switch-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:70px}
.steps{display:grid;gap:10px}.steps article{display:flex;gap:15px;background:#f7f5f1;border:1px solid #d8d4cd;border-radius:18px;padding:21px}.steps article>span{width:36px;height:36px;flex:0 0 36px;border-radius:10px;background:#111;color:var(--brand);display:grid;place-items:center;font-weight:800;font-size:11px}.steps h3{font:700 16px "Manrope";margin:1px 0 5px}.steps p{font-size:12px;color:#79756f;margin:0;line-height:1.5}

.faq-section{background:#f8f6f1}
.faq-grid{display:grid;grid-template-columns:.75fr 1.25fr;gap:80px;align-items:start}
.faq-list{border-top:1px solid #d7d3cd}
.faq-list details{border-bottom:1px solid #d7d3cd;padding:0}
.faq-list summary{cursor:pointer;list-style:none;padding:22px 38px 22px 0;font-weight:700;font-size:15px;position:relative}
.faq-list summary::-webkit-details-marker{display:none}
.faq-list summary:after{content:"+";position:absolute;right:4px;top:21px;font-size:20px;font-weight:400}
.faq-list details[open] summary:after{content:"−"}
.faq-list p{font-size:13px;line-height:1.65;color:#77736e;margin:0;padding:0 42px 22px 0}

.final-cta{padding:35px 0 90px;background:#f8f6f1}
.final-box{background:#111;color:white;border-radius:32px;padding:54px;display:flex;justify-content:space-between;gap:40px;align-items:end;position:relative;overflow:hidden}
.final-box:after{content:"";position:absolute;width:500px;height:500px;border-radius:50%;right:-240px;top:-250px;background:radial-gradient(circle,rgba(201,150,62,.22),transparent 66%)}
.final-box h2{max-width:760px;font-size:clamp(35px,4vw,58px);position:relative;z-index:2}.final-box p{color:#a7a4aa;margin:0;position:relative;z-index:2}
.final-actions{position:relative;z-index:2;display:grid;gap:10px;text-align:center;min-width:180px}.final-actions span{font-size:8px;color:#858289}

.footer{background:#0b0b0d;color:white;padding:65px 0 25px}
.footer-top{display:flex;justify-content:space-between;gap:50px}
.brand-footer .brand-mark{background:#1f1f23}.brand-footer .landing-logo{width:82px;height:82px}.footer-brand p{font-size:11px;color:#88858c;margin:14px 0 0}
.footer-links{display:grid;grid-template-columns:repeat(3,1fr);gap:70px}.footer-links div{display:grid;gap:10px}.footer-links strong{font-size:10px;color:#aaa7ad;margin-bottom:4px}.footer-links a{font-size:10px;color:#77747b}.footer-links a:hover{color:#fff}
.footer-bottom{border-top:1px solid #202024;margin-top:55px;padding-top:22px;display:flex;justify-content:space-between;color:#66636a;font-size:9px}

.reveal{opacity:0;transform:translateY(22px);transition:opacity .7s ease,transform .7s ease}
.reveal.is-visible{opacity:1;transform:none}
.reveal-delay{transition-delay:.12s}

@media(max-width:1080px){
  .main-nav{display:none}
  .hero-grid{grid-template-columns:1fr}
  .hero-copy{padding-bottom:15px;max-width:760px}
  .product-stage{min-height:610px}
  .app-window{left:3%;width:80%}
  .phone-mock{right:4%}
  .team-photo-stage{min-height:460px}
  .feature-card{grid-column:span 6}
  .feature-card.feature-large,.feature-card.feature-wide{grid-column:span 12}
  .sector-grid,.tv-grid,.switch-grid,.faq-grid{grid-template-columns:1fr;gap:45px}
  .tv-device{justify-self:center}
  .sector-visual{min-height:450px}
}

@media(max-width:760px){
  .container{width:min(100% - 28px,1180px)}
  .topbar .container{width:calc(100% - 20px)}
  .nav-wrap{height:66px}
  /* La cabecera se solapa con el hero (margin-top negativo) para subirlo
     más en móvil; su borde inferior quedaba como una línea encima de la
     foto, así que se quita solo en esta vista. */
  .topbar{border-bottom:0}
  .nav-actions .btn-ghost{display:none}
  .nav-actions .btn-dark{display:none}
  .nav-toggle{display:block;margin-left:auto}
  .main-nav{
    display:none;position:fixed;left:10px;right:10px;top:74px;background:#fff;
    padding:15px;border:1px solid #dedad3;border-radius:18px;box-shadow:var(--shadow);
    flex-direction:column;align-items:stretch;gap:2px;
  }
  .main-nav.open{display:flex}
  .main-nav a{padding:12px;border-radius:10px}
  .hero{padding-top:10px;margin-top:-30px}
  .hero h1{font-size:48px}
  .hero-lead{font-size:16px}
  .hero-proof{gap:10px 15px}
  .product-stage{min-height:485px;margin-top:28px}
  .team-photo-stage{min-height:400px;margin-top:8px}
  .team-photo-frame{top:-18px}
  .app-window{left:0;top:5px;width:92%;transform:none}
  .app-search{display:none}
  .app-layout{grid-template-columns:40px 1fr}
  .app-main{padding:15px}
  .metrics>div:nth-child(2){display:none}
  .metrics{grid-template-columns:1fr 1fr}
  .calendar-grid{grid-template-columns:34px repeat(2,1fr);height:230px}
  .desktop-only{display:none}
  .phone-mock{width:165px;height:330px;right:-3px;bottom:0;border-width:6px;border-radius:27px}
  .phone-screen{padding:28px 10px 10px}.phone-brand{margin-bottom:17px}.phone-screen h4{font-size:14px}.service-row{padding:8px 0}.phone-date{margin:10px 0}.phone-screen button{padding:8px}
  .chip-a{display:none}.chip-b{right:0;top:-15px}
  .trust-line{justify-content:flex-start;gap:13px 19px;margin-top:22px;border-top:0!important;padding-top:0}.trust-line span{width:100%}
  .section{padding:78px 0}
  .section-heading h2,.tv-copy h2,.switch-copy h2{font-size:40px}
  .section-heading p,.tv-copy>p,.switch-copy>p{font-size:15px}
  .feature-bento{grid-template-columns:1fr;margin-top:35px}
  .feature-card,.feature-card.feature-large,.feature-card.feature-wide{grid-column:auto;display:block;min-height:0}
  .mini-calendar-ui,.chart-ui{margin-top:28px}
  .feature-card{padding:24px}
  .sector-visual{padding:35px 25px;min-height:410px}
  .sector-panel h3{font-size:38px}
  .tv-display-head{padding:6px 8px}.tv-display-time strong{font-size:23px}.tv-display-weather>span{font-size:17px}.tv-display-weather strong{font-size:9px}.tv-display-video>strong{font-size:9px}
  .pricing-grid{grid-template-columns:1fr}.price-card.featured{transform:none}.price-head p{min-height:0}
  .final-box{padding:34px 25px;display:block}.final-actions{margin-top:26px}
  .footer-top{display:grid}.footer-links{gap:25px}.footer-bottom{gap:14px;flex-direction:column}
}

@media(max-width:430px){
  .hero{padding-top:0;margin-top:-30px}
  .hero h1{font-size:42px}
  .hero-actions .btn{width:100%}
  .product-stage{min-height:420px}
  .team-photo-stage{min-height:340px;margin-top:4px}
  .team-photo-frame{top:-22px}
  .app-window{width:95%}
  .app-bar{height:46px}.app-layout{min-height:350px}.app-main{padding:11px}.app-heading h3{font-size:16px}.app-heading button{display:none}
  .metrics{margin:10px 0}.metrics>div{padding:8px}.metrics strong{font-size:14px}
  .calendar-card{padding:8px}.calendar-grid{height:190px}
  .phone-mock{width:140px;height:282px}.phone-screen{padding-top:25px}.phone-screen>small,.phone-screen h4{display:none}
  .service-row{font-size:6px}.phone-date span{padding:5px 1px}.phone-screen button{font-size:7px}
  .trust-line{margin-top:5px}
  .section-heading h2,.tv-copy h2,.switch-copy h2{font-size:35px}
  .pricing-section .container{width:calc(100% - 20px)}
  .tv-content{grid-template-rows:25% 1fr 12%}.tv-display-brand strong{display:none}.tv-display-weather small{display:none}.tv-display-stage{grid-template-columns:2.4fr 1fr}.tv-display-video>span{display:none}.tv-display-ticker span{font-size:5px}
}

@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{scroll-behavior:auto!important;animation:none!important;transition:none!important}
  .reveal{opacity:1;transform:none}
}

.tv-display-stage,.tv-display-video,.tv-display-poster{min-height:0}.tv-display-video video,.tv-display-poster img{display:block}
.product-stage .app-window{aspect-ratio:720/529;display:grid;place-items:center;background:#f7f5f0}.product-desktop-image,.product-mobile-image{display:block;width:100%;height:100%;object-fit:contain;object-position:center;background:#f7f5f0}.product-image-placeholder{width:100%;height:100%;display:grid;place-items:center;align-content:center;gap:9px;padding:25px;text-align:center;background:radial-gradient(circle at 70% 20%,rgba(201,150,62,.15),transparent 30%),linear-gradient(145deg,#faf9f6,#efebe4);color:#80786e}.product-image-placeholder i{font-style:normal;font-size:48px;color:#c1944b}.product-image-placeholder strong{font:800 16px Manrope}.product-image-placeholder small{font-size:10px}.product-phone-screen{padding:0;background:#f5f1eb;display:grid;place-items:center}.product-mobile-image{border-radius:25px}.product-image-placeholder.mobile{border-radius:25px;padding:18px}.product-image-placeholder.mobile i{font-size:34px}.product-image-placeholder.mobile strong{font-size:12px}.product-image-placeholder.mobile small{font-size:8px}
.tv-display-video iframe{display:block;width:100%;height:100%;border:0}.tv-display-poster img{transition:opacity .35s ease}
.tv-content.tv-hide-header{grid-template-rows:0 1fr 11%}.tv-content.tv-hide-ticker{grid-template-rows:23% 1fr 0}.tv-content.tv-hide-header.tv-hide-ticker{grid-template-rows:1fr}.tv-hide-header .tv-display-head,.tv-hide-ticker .tv-display-ticker,.tv-hide-weather .tv-display-time,.tv-hide-weather .tv-display-weather{display:none!important}.tv-hide-weather .tv-display-head{grid-template-columns:1fr}.tv-video-only .tv-display-stage{grid-template-columns:1fr}.tv-video-only .tv-display-poster{display:none}.tv-template-posters .tv-display-video{display:none}.tv-template-posters .tv-display-stage{grid-template-columns:1fr}
