@font-face {
  font-family: 'Sephora Hayden';
  src: url('Sephora & Hayden.ttf') format('truetype');
  font-display: block;
  font-weight: 400;
  font-style: normal;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root{
  --ink:#1a1a1a;
  --ink-soft:#2d2d2d;
  --sage:#4A7C5C;
  --sage-hover:#3D6A4E;
  --sage-bg:#EDF2EF;
  --sage-text:#6B8A75;
  --petal:#D4A574;
  --petal-warm:#C49A6C;
  --cream:#FAFAF8;
  --warm:#F5F3EF;
  --border:#E5E3E0;
  --border-light:#EEEDEA;
  --body:#5a5a5a;
  --muted:#8a8a8a;
  --faint:#aaa;
  --white:#fff;
  --font:'DM Sans',system-ui,sans-serif;
  --display:'Fraunces',Georgia,serif;
}

html{scroll-behavior:smooth}
body{
  font-family:var(--font);font-size:16px;line-height:1.65;
  color:var(--body);
  background:
    radial-gradient(ellipse 70% 45% at 12% 0%, rgba(74,124,92,.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 88% 28%, rgba(212,165,116,.05) 0%, transparent 55%),
    radial-gradient(ellipse 80% 35% at 50% 100%, rgba(74,124,92,.04) 0%, transparent 60%),
    linear-gradient(180deg, #F8F6F1 0%, var(--cream) 35%, #F6F3EC 70%, var(--cream) 100%);
  background-attachment:fixed;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:clip;
  /* Disable browser scroll-anchoring so layout shifts inside the hero
     iframe (call demo entering "in-call" view, post-call overlays, etc.)
     never pull the parent landing page back up to the mockup. */
  overflow-anchor:none;
}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:0;background:0}
ul{list-style:none}
img{display:block;max-width:100%}
h1,h2,h3{font-family:var(--display);color:var(--ink)}

.container{max-width:1180px;margin:0 auto;padding:0 56px}

.rv{opacity:0;transform:translateY(18px);transition:opacity .6s cubic-bezier(.23,1,.32,1),transform .6s cubic-bezier(.23,1,.32,1);transition-delay:var(--d,0s)}
.rv.show{opacity:1;transform:none}

.btn-primary{
  display:inline-flex;align-items:center;justify-content:center;
  height:48px;padding:0 28px;border-radius:10px;
  background:var(--sage);color:var(--white);
  font-family:var(--font);
  font-size:15px;font-weight:600;line-height:1;letter-spacing:.01em;
  box-shadow:0 1px 2px rgba(74,124,92,.12),0 4px 12px -2px rgba(74,124,92,.18);
  transition:filter .18s ease,box-shadow .2s ease;
  text-decoration:none;border:0;white-space:nowrap;
}
.btn-primary:hover{filter:brightness(1.08);box-shadow:0 2px 4px rgba(74,124,92,.16),0 8px 20px -3px rgba(74,124,92,.24)}
.btn-primary:active{filter:brightness(.95);box-shadow:0 1px 2px rgba(74,124,92,.1)}
.btn-primary.sm{height:40px;padding:0 18px;font-size:13.5px;border-radius:8px}
.btn-primary.lg{height:56px;padding:0 40px;font-size:16px;border-radius:12px}
.btn-primary.light{background:var(--white);color:var(--sage);box-shadow:0 1px 2px rgba(0,0,0,.04),0 4px 12px -2px rgba(0,0,0,.08)}
.btn-primary.light:hover{box-shadow:0 2px 4px rgba(0,0,0,.06),0 8px 20px -3px rgba(0,0,0,.12)}
.btn-primary.disabled{opacity:.35;pointer-events:none;box-shadow:none}

.btn-outline{
  display:inline-flex;align-items:center;justify-content:center;
  height:48px;padding:0 28px;border-radius:10px;
  border:1.5px solid var(--border);color:var(--ink);
  font-family:var(--font);
  font-size:15px;font-weight:600;line-height:1;letter-spacing:.01em;
  background:var(--white);white-space:nowrap;
  transition:border-color .2s ease,background .2s ease,color .2s ease;
}
.btn-outline:hover{border-color:var(--ink);background:var(--cream)}
.btn-outline:active{filter:brightness(.97)}

.section{padding:96px 0;position:relative}
.bg-white{background:var(--white)}
.bg-warm{background:var(--warm)}
.section+.section,
.hero+.section{border-top:1px solid var(--border-light)}
.cta-section{border-top:0 !important}

.section-head{text-align:center;margin-bottom:56px}
.section-head h2{
  font-size:clamp(28px,3.2vw,40px);font-weight:400;
  line-height:1.15;letter-spacing:-.035em;
}
.section-sub{
  font-size:17px;color:var(--body);margin-top:16px;
  max-width:560px;margin-left:auto;margin-right:auto;line-height:1.65;
}

.tag{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--font);font-size:11.5px;font-weight:700;
  text-transform:uppercase;letter-spacing:.14em;
  color:var(--sage);margin-bottom:20px;
}
.tag::before{
  content:'';display:block;width:20px;height:1.5px;
  background:var(--petal);border-radius:1px;
}

.nav{
  position:sticky;top:0;z-index:100;
  background:rgba(250,250,248,.92);
  backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);
  border-bottom:1px solid rgba(0,0,0,.06);
  transition:box-shadow .3s ease;
}
.nav .container{
  display:flex;align-items:center;height:64px;
  flex-wrap:nowrap;gap:0;overflow:visible;
}
.nav-logo{
  display:flex;align-items:center;gap:7px;
  font-family:var(--display);font-size:21px;font-weight:600;color:var(--ink);
  flex-shrink:0;
}
.nav-logo i{color:var(--sage);font-size:19px}
.nav-logo svg{fill:var(--sage);flex-shrink:0}
.nav-logo em,.nav-logo .logo-accent{font-style:normal;color:inherit}

.nav-links{
  display:flex;gap:32px;margin-left:auto;margin-right:32px;
}
.nav-links a{
  font-size:14px;font-weight:500;color:var(--muted);
  transition:color .2s;position:relative;
}
.nav-links a:hover{color:var(--ink)}
.nav-links a::after{
  content:'';position:absolute;bottom:-4px;left:0;right:0;
  height:1.5px;background:var(--ink);
  transform:scaleX(0);transition:transform .25s ease;
  border-radius:1px;
}
.nav-links a:hover::after{transform:scaleX(1)}

.nav-cta{display:flex;align-items:center;gap:12px;flex-shrink:0}
.nav-login{font-size:14px;font-weight:500;color:var(--muted);transition:color .2s}
.nav-login:hover{color:var(--ink)}

.nav.scrolled{box-shadow:0 1px 8px rgba(0,0,0,.05)}

.hamburger{
  display:none;flex-direction:column;justify-content:center;align-items:center;
  gap:5px;margin-left:auto;
  width:44px;height:44px;
  background:none;border:none;cursor:pointer;
  padding:10px;overflow:visible;flex-shrink:0;
}
.hamburger span{
  display:block;width:20px;height:2px;
  background:var(--ink);border-radius:2px;
  transition:transform .35s cubic-bezier(.4,0,.2,1),opacity .2s ease;
  transform-origin:center center;
}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0;transform:scaleX(0)}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.mob-overlay{
  position:fixed;inset:0;z-index:98;
  background:rgba(0,0,0,.4);
  opacity:0;pointer-events:none;
  transition:opacity .35s ease;
  backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px);
}
.mob-overlay.open{opacity:1;pointer-events:auto}

.mob-menu{
  position:fixed;top:64px;right:0;bottom:0;width:320px;
  background:var(--cream);z-index:99;
  display:flex;flex-direction:column;
  transform:translateX(100%);
  transition:transform .4s cubic-bezier(.4,0,.2,1);
  box-shadow:-8px 0 40px rgba(0,0,0,.12);
}
.mob-menu.open{transform:translateX(0)}

.mob-menu-inner{
  display:flex;flex-direction:column;
  padding:28px 32px;flex:1;
}

.mob-link{
  display:block;padding:16px 0;
  font-size:18px;font-weight:500;color:var(--ink);
  border-bottom:1px solid var(--border-light);
  transition:color .15s,transform .4s cubic-bezier(.23,1,.32,1),opacity .4s ease;
  opacity:0;transform:translateX(24px);
}
.mob-menu.open .mob-link{opacity:1;transform:translateX(0)}
.mob-menu.open .mob-link:nth-child(1){transition-delay:.06s}
.mob-menu.open .mob-link:nth-child(2){transition-delay:.12s}
.mob-menu.open .mob-link:nth-child(3){transition-delay:.18s}
.mob-menu.open .mob-link:nth-child(4){transition-delay:.24s}
.mob-menu.open .mob-link:nth-child(5){transition-delay:.3s}
.mob-link:hover{color:var(--sage)}

.mob-btns{
  display:flex;flex-direction:column;gap:10px;
  margin-top:auto;padding-bottom:env(safe-area-inset-bottom,24px);
  opacity:0;transform:translateY(12px);
  transition:all .4s ease .3s;
}
.mob-menu.open .mob-btns{opacity:1;transform:translateY(0)}
.mob-btns .btn-primary,.mob-btns .btn-outline{width:100%;height:48px;font-size:15px}

.hero{
  padding:40px 0 64px;text-align:center;overflow:visible;
  position:relative;background:transparent;
}
.hero-content{max-width:760px;margin:0 auto 44px;position:relative}

.hero-badge{
  display:inline-flex;align-items:center;gap:7px;
  padding:8px 18px;border-radius:20px;
  background:var(--sage-bg);color:var(--sage);
  font-size:13px;font-weight:600;margin-bottom:22px;
  border:1px solid rgba(74,124,92,.1);
}
.hero-badge i{font-size:13px;line-height:1;transform:translateY(-0.5px)}

.hero-content h1{
  font-size:clamp(34px,5.2vw,62px);font-weight:400;
  line-height:1.06;letter-spacing:-.04em;margin-bottom:22px;
}
.hero-content h1 em{
  font-style:italic;
  font-weight:400;
  color:var(--petal-warm);
  letter-spacing:-.02em;
}

.hero-sub{
  font-size:18px;line-height:1.7;color:var(--body);
  max-width:600px;margin:0 auto 28px;
}
.hero-btns{display:flex;flex-direction:column;align-items:center;gap:14px}
.hero-note{font-size:13.5px;font-weight:500;color:var(--muted)}

.hero-mockup-wrap{
  position:relative;
  max-width:100%;margin:0 auto;
  padding:0;
  perspective:1800px;
  perspective-origin:50% 30%;
  opacity:0;
  transition:opacity .7s cubic-bezier(.23,1,.32,1);
}
.hero-mockup-wrap.show{opacity:1}

@media(max-width:900px){
  .hero-mockup-wrap{perspective:none}
}

.hero-device-stage{
  display:flex;align-items:center;justify-content:center;
  width:100%;
}
.hero-device-stage-desktop{display:flex}
.hero-device-stage-mobile{display:none}

@media(max-width:900px){
  .hero-device-stage-desktop{display:none}
  .hero-device-stage-mobile{display:flex}
  .hero-float{display:none !important}
}

.hero-device-stage-desktop{perspective:2400px;perspective-origin:50% 45%}
.hero-device-stage-mobile{perspective:1600px;perspective-origin:50% 35%}

.hero-device-stage-desktop .device.device-macbook-pro-2018{
  --mb-scale:1.4;
  transform:scale(var(--mb-scale));
  transform-origin:top center;
  transform-style:preserve-3d;
  margin-top:40px;
  margin-bottom:210px;
}
.hero-device-stage-desktop .device.device-macbook-pro-2018 .device-power{
  transform:translateZ(2px);
  transform-style:preserve-3d;
  position:relative;
  z-index:10;
}
@media(max-width:1180px){
  .hero-device-stage-desktop .device.device-macbook-pro-2018{
    --mb-scale:1.3;margin-top:36px;margin-bottom:200px;
  }
}
@media(max-width:1040px){
  .hero-device-stage-desktop .device.device-macbook-pro-2018{
    --mb-scale:1.15;margin-top:20px;margin-bottom:140px;
  }
}

.hero-device-stage-desktop .device.device-macbook-pro-2018 .device-frame{
  transform-origin:center bottom;
  transform:rotateX(-25deg) translateZ(-1px);
  backface-visibility:hidden;
  will-change:transform;
  animation:mbLidOpen 1s cubic-bezier(.2,.8,.2,1) 0s both paused;
}
.hero-mockup-wrap--ready .hero-device-stage-desktop .device.device-macbook-pro-2018 .device-frame{
  animation-play-state:running;
}
@keyframes mbLidOpen{
  0%  {transform:rotateX(-25deg) translateZ(-1px)}
  100%{transform:rotateX(0deg)   translateZ(-1px)}
}

.hero-device-stage-mobile .device.device-iphone-14-pro{
  --ph-scale:.82;
  --ph-native-h:868px;
  transform:rotateX(35deg) scale(var(--ph-scale));
  transform-origin:center bottom;
  transform-style:preserve-3d;
  margin-top:calc(-1 * var(--ph-native-h) * (1 - var(--ph-scale)) + 56px);
  margin-bottom:0;
  will-change:transform;
  animation:phoneRise .95s cubic-bezier(.2,.8,.2,1) 0s both paused;
}
.hero-mockup-wrap--ready .hero-device-stage-mobile .device.device-iphone-14-pro{
  animation-play-state:running;
}
@keyframes phoneRise{
  0%  {transform:rotateX(35deg) scale(var(--ph-scale))}
  100%{transform:rotateX(0deg)  scale(var(--ph-scale))}
}
@media(max-width:420px){
  .hero-device-stage-mobile .device.device-iphone-14-pro{--ph-scale:.74}
}
@media(max-width:360px){
  .hero-device-stage-mobile .device.device-iphone-14-pro{--ph-scale:.66}
}

@media (prefers-reduced-motion: reduce){
  .hero-device-stage-desktop .device.device-macbook-pro-2018 .device-frame{
    animation:none !important;
    transform:rotateX(0deg) translateZ(-1px) !important;
  }
  .hero-device-stage-mobile .device.device-iphone-14-pro{
    animation:none !important;
    transform:rotateX(0deg) scale(var(--ph-scale)) !important;
  }
  .hero-mockup-wrap{opacity:1;transition:none}
  .hero-device-iframe{opacity:1 !important;transition:none !important}
}

.hero-device-iframe{
  display:block;border:0;background:#FAFAF8;color-scheme:light;
  opacity:1;
  pointer-events:none;
  user-select:none;
  /* prevent the browser from auto-scrolling the parent landing page back
     up to the iframe whenever the demo inside it programmatically scrolls
     or focuses something. paired with `inert` + `tabindex="-1"` on the
     iframe element. */
  overflow-anchor:none;
  /* Cut every layout/paint/scroll connection between this cross-origin
     iframe and the parent document. The Join Now step inside the demo
     triggers a browser-internal scroll-into-view in the parent that
     bypasses every JS scroll API; full containment kills that trigger at
     the layout level. */
  contain:strict;
  transform:translateZ(0);
  isolation:isolate;
}
.hero-mockup-wrap, .hero-device-stage{overflow-anchor:none}
.hero-device-stage{contain:layout paint;isolation:isolate}

.hero-device-stage-mobile .hero-device-iframe{
  width:100%;height:100%;
}

.hero-device-stage-desktop .device-macbook-pro-2018 .device-frame{
  overflow:hidden;
}
.hero-device-stage-desktop .hero-device-iframe{
  display:block;
  width:1280px;height:800px;
  transform:scale(0.45);
  transform-origin:top left;
}

.hero-float{
  position:absolute;z-index:4;
  display:flex;align-items:center;gap:11px;
  padding:12px 16px 12px 12px;
  background:linear-gradient(180deg,#FFFFFF 0%,#FDFBF7 100%);
  border:1px solid rgba(255,255,255,.8);
  border-radius:14px;
  font-family:var(--font);
  white-space:nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 1px 2px rgba(26,26,26,.06),
    0 6px 14px -4px rgba(26,26,26,.1),
    0 18px 40px -8px rgba(26,26,26,.16),
    0 30px 60px -16px rgba(26,26,26,.2);
  transition:box-shadow .4s ease,filter .25s ease;
  will-change:transform;
}
.hero-float:hover{
  filter:brightness(1.02);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    0 1px 2px rgba(26,26,26,.08),
    0 10px 22px -4px rgba(26,26,26,.14),
    0 28px 56px -8px rgba(26,26,26,.22),
    0 50px 90px -18px rgba(26,26,26,.24);
}
.hero-float-left{
  top:44%;left:-12%;
  min-width:168px;
  animation:floatBobLeft 6s ease-in-out infinite;
}
.hero-float-right{
  top:22%;right:-12%;
  min-width:168px;
  animation:floatBobRight 6s ease-in-out infinite -3s;
}
@media(max-width:1180px){
  .hero-float-left{left:-4%}
  .hero-float-right{right:-4%}
}
@media(max-width:1040px){
  .hero-float-left{left:0%;top:48%}
  .hero-float-right{right:0%;top:18%}
}
.hero-float-icon{
  width:36px;height:36px;border-radius:11px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  font-size:18px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.5);
}
.hero-float-icon.sage{
  background:linear-gradient(135deg,#D5E4DB 0%,rgba(74,124,92,.35) 100%);
  color:var(--sage);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.6),0 3px 8px rgba(74,124,92,.2);
}
.hero-float-icon.petal{
  background:linear-gradient(135deg,#FAEEDD 0%,rgba(212,165,116,.4) 100%);
  color:var(--petal-warm);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.6),0 3px 8px rgba(212,165,116,.22);
}
.hero-float-text{display:flex;flex-direction:column;gap:1px;line-height:1.2}
.hero-float-label{font-size:13px;font-weight:600;color:var(--ink);letter-spacing:-.005em}
.hero-float-sub{font-size:11px;font-weight:500;color:var(--muted)}

@keyframes floatBobLeft{
  0%,100%{transform:rotateY(6deg) rotateZ(-5deg) translate3d(0,0,0)}
  50%{transform:rotateY(6deg) rotateZ(-5deg) translate3d(0,-10px,0)}
}
@keyframes floatBobRight{
  0%,100%{transform:rotateY(-6deg) rotateZ(4deg) translate3d(0,0,0)}
  50%{transform:rotateY(-6deg) rotateZ(4deg) translate3d(0,-10px,0)}
}

.hero-glow{
  position:absolute;
  top:40%;left:50%;
  width:90%;height:80%;
  transform:translate(-50%,-50%);
  background:radial-gradient(ellipse at center,rgba(74,124,92,.12) 0%,rgba(74,124,92,.04) 45%,transparent 70%);
  filter:blur(80px);
  pointer-events:none;z-index:0;
}

.hero-mockup{
  position:relative;z-index:1;
  border-radius:6px;overflow:hidden;
  -webkit-mask-image:linear-gradient(to bottom,#000 65%,transparent 98%);
  mask-image:linear-gradient(to bottom,#000 65%,transparent 98%);
}

.laptop-frame{
  position:relative;z-index:1;
  filter:drop-shadow(0 8px 24px rgba(0,0,0,.1)) drop-shadow(0 24px 48px rgba(0,0,0,.08));
}
.laptop-screen{
  background:#222;
  border-radius:12px 12px 0 0;
  padding:8px 8px 0;
  border:2px solid #333;
  border-bottom:none;
}
.laptop-base{
  width:108%;margin-left:-4%;
  height:14px;
  background:linear-gradient(180deg,#ccc 0%,#b8b8b8 40%,#aaa 100%);
  border-radius:0 0 8px 8px;
  position:relative;
  border:1px solid #999;
  border-top:1px solid #bbb;
}
.laptop-notch{
  position:absolute;top:-1px;left:50%;transform:translateX(-50%);
  width:80px;height:4px;
  background:linear-gradient(180deg,#bbb,#aaa);
  border-radius:0 0 4px 4px;
}

.browser-chrome{
  display:flex;align-items:center;gap:12px;
  padding:11px 16px;
  background:linear-gradient(180deg,#F0EEEA 0%,#E8E6E2 100%);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.chrome-dots{display:flex;gap:6px}
.chrome-dots span{width:10px;height:10px;border-radius:50%}
.chrome-dots span:nth-child(1){background:#FF5F57}
.chrome-dots span:nth-child(2){background:#FEBC2E}
.chrome-dots span:nth-child(3){background:#28C840}
.chrome-url{
  flex:1;height:26px;border-radius:6px;
  background:var(--white);border:1px solid rgba(0,0,0,.06);
  display:flex;align-items:center;gap:6px;
  padding:0 12px;font-size:12px;color:var(--muted);
  box-shadow:inset 0 1px 2px rgba(0,0,0,.03);
}
.chrome-url i{font-size:10px;color:var(--sage)}

.app-preview{
  display:flex;background:#111111;
  font-family:'DM Sans',sans-serif;color:#1C1C1C;
  height:680px;
}

.ap-side{
  width:232px;flex-shrink:0;height:100%;
  background:#111111;
  display:flex;flex-direction:column;
  user-select:none;
}

.ap-logo{
  height:56px;flex-shrink:0;
  display:flex;align-items:center;
  padding:0 20px;
  font-family:'Fraunces',serif;
  font-size:20px;font-weight:300;letter-spacing:-.02em;
}
.ap-logo-bloom{color:#fff}
.ap-logo-desk{color:#D4A574}

.ap-spacer{height:8px;flex-shrink:0}

.ap-nav{
  display:flex;flex-direction:column;gap:2px;
  padding:0 10px;
}
.ap-nav-bottom{margin-bottom:6px}

.ap-item{
  display:flex;align-items:center;gap:10px;
  width:100%;height:36px;padding:0 12px;border-radius:8px;
  font-family:'DM Sans',sans-serif;
  font-size:13.5px;font-weight:400;letter-spacing:.005em;
  color:rgba(255,255,255,0.35);
  background:transparent;border:0;
  text-align:left;cursor:pointer;
  transition:all 0.15s ease;
}
.ap-item i{font-size:17px;color:currentColor;flex-shrink:0;font-weight:300}
.ap-item:hover{color:rgba(255,255,255,0.6)}
.ap-item.on{
  color:#fff;font-weight:500;
  background:rgba(255,255,255,0.07);
}
.ap-item.on i{color:#D4A574}

.ap-grow{flex:1}

.ap-side .ap-sep{
  height:1px;background:rgba(255,255,255,0.05);
  margin:0 18px 6px;
}

.ap-user-wrap{
  padding:0 10px 14px;
  position:relative;
}
.ap-user-card{
  display:flex;align-items:center;gap:10px;
  padding:8px 10px;border-radius:10px;
  cursor:pointer;transition:background .15s;
}
.ap-user-card:hover{background:rgba(255,255,255,0.04)}

.ap-user-av-wrap{position:relative;flex-shrink:0}
.ap-user-av{
  width:32px;height:32px;border-radius:9px;
  background:#2A2A2A;
  display:flex;align-items:center;justify-content:center;
  font-size:11px;font-weight:600;color:rgba(255,255,255,0.6);
}
.ap-user-status{
  position:absolute;bottom:-2px;right:-2px;
  width:10px;height:10px;border-radius:50%;
  background:#3E8A5E;
  border:2px solid #111111;
  transition:background 0.3s;
}

.ap-user-text{flex:1;min-width:0}
.ap-user-name{
  font-family:'DM Sans',sans-serif;
  font-size:13px;color:rgba(255,255,255,0.75);
  line-height:1;font-weight:400;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.ap-user-plan{
  font-family:'DM Sans',sans-serif;
  font-size:11px;color:rgba(255,255,255,0.25);
  line-height:1;margin-top:4px;
  transition:color 0.2s;
}

.ap-user-logout{
  background:transparent;border:0;border-radius:6px;
  width:28px;height:28px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;transition:background .15s;
}
.ap-user-logout i{font-size:15px;color:rgba(255,255,255,0.15)}
.ap-user-logout:hover{background:rgba(255,255,255,0.08)}
.ap-user-logout:hover i{color:rgba(255,255,255,0.5)}

.ap-main{
  flex:1;display:flex;flex-direction:column;min-width:0;
  background:#FAFAF8;
  border-top-left-radius:16px;
  overflow:hidden;
}

.ap-top{
  height:56px;flex-shrink:0;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 24px;
  border-bottom:1px solid #E8E8E6;
  background:#fff;
  position:relative;
  transition:border-color .15s;
}

.ap-title{
  font-family:'Fraunces',serif;
  font-size:18px;font-weight:300;letter-spacing:-.01em;
  color:#1C1C1C;
  margin:0;
}

.ap-top-r{display:flex;align-items:center;gap:8px}

.ap-search{
  display:flex;align-items:center;gap:6px;
  height:32px;width:240px;padding:0 8px 0 10px;
  border-radius:8px;border:1px solid #E8E8E6;
  background:#fff;cursor:text;
  transition:border-color .15s;
}
.ap-search:hover{border-color:#D0CEC8}
.ap-search i{font-size:14px;color:#999;flex-shrink:0}
.ap-search-ph{
  flex:1;font-family:'DM Sans',sans-serif;
  font-size:12.5px;color:#bbb;
  white-space:nowrap;overflow:hidden;
}
.ap-kbd{
  display:inline-flex;align-items:center;
  height:16px;padding:0 4px;border-radius:3px;
  background:#F5F5F3;border:1px solid #EEEDEB;
  font-family:'DM Sans',sans-serif;
  font-size:9px;color:#bbb;font-weight:500;
  flex-shrink:0;margin-left:2px;
}

.ap-iconbtn{
  position:relative;
  width:32px;height:32px;min-width:32px;
  border-radius:8px;border:1px solid transparent;
  background:transparent;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:background .15s,border-color .15s;
  flex-shrink:0;
}
.ap-iconbtn i{font-size:17px;color:#999}
.ap-iconbtn:hover{background:#f5f5f3;border-color:#E8E8E6}
.ap-iconbtn:hover i{color:#1C1C1C}

.ap-bell-dot{
  position:absolute;top:4px;right:4px;
  width:7px;height:7px;min-width:7px;
  background:#D4A574;border-radius:50%;
  box-shadow:0 0 0 2px #FAFAF8;
}

.ap-schedule-btn{
  display:inline-flex;align-items:center;gap:6px;
  height:32px;padding:0 14px 0 10px;border-radius:8px;
  background:#1C1C1C;color:#fff;border:0;
  font-family:'DM Sans',sans-serif;
  font-size:13px;font-weight:500;letter-spacing:.005em;
  flex-shrink:0;cursor:pointer;
  transition:background .15s;
  white-space:nowrap;
}
.ap-schedule-btn:hover{background:#333}
.ap-schedule-btn i{font-size:15px;color:#fff}

.ap-body{
  flex:1;
  padding:28px 36px 64px;
  overflow:hidden;
  display:flex;flex-direction:column;
  font-family:'DM Sans',sans-serif;color:#1C1C1C;
  max-width:100%;
}

.ap-greet-row{
  display:flex;align-items:center;gap:8px;margin-bottom:2px;
}
.ap-greet-h{
  font-family:'Fraunces',serif;
  font-size:22px;font-weight:300;letter-spacing:-.02em;
  color:#1C1C1C;line-height:1.2;
  margin:0;
}
.ap-greet-emoji{font-size:18px;line-height:1}

.ap-date{
  font-size:12.5px;color:#aaa;
  margin:0 0 14px 0;
}

.ap-attention{
  display:flex;gap:10px;margin-bottom:24px;flex-wrap:wrap;
}
.ap-chip{
  display:inline-flex;align-items:center;gap:6px;
  padding:6px 12px;border-radius:8px;
  font-family:'DM Sans',sans-serif;
  font-size:12px;font-weight:600;
  cursor:pointer;transition:background .15s;
}
.ap-chip i{font-size:13px}
.ap-chip-petal{background:rgba(212,165,116,.0625);color:#D4A574}
.ap-chip-petal:hover{background:rgba(212,165,116,.1)}
.ap-chip-sage{background:rgba(74,124,92,.0625);color:#4A7C5C}
.ap-chip-sage:hover{background:rgba(74,124,92,.1)}

.ap-quicks{
  display:flex;gap:10px;margin-bottom:24px;flex-wrap:wrap;
}
.ap-quick{
  display:inline-flex;align-items:center;gap:6px;
  height:34px;padding:0 14px;border-radius:9px;
  background:#fff;border:1px solid #E9E7E3;
  font-family:'DM Sans',sans-serif;
  font-size:12.5px;font-weight:500;color:#555;
  white-space:nowrap;cursor:pointer;
  transition:background .15s,border-color .15s;
}
.ap-quick i{font-size:15px;color:#4A7C5C;display:flex}
.ap-quick:hover{background:#F5F3F0;border-color:#d8d6d3}

.ap-stats{
  display:grid;grid-template-columns:repeat(4,1fr);
  background:#fff;border:1px solid #E9E7E3;border-radius:12px;
  overflow:hidden;margin-bottom:24px;flex-shrink:0;
}
.ap-stat{padding:16px 20px}
.ap-stat+.ap-stat{border-left:1px solid #E9E7E3}
.ap-stat-l{
  font-size:11px;color:#999;margin-bottom:6px;letter-spacing:.01em;
}
.ap-stat-line{display:flex;align-items:baseline;gap:6px}
.ap-stat-v{
  font-family:'Fraunces',serif;
  font-size:22px;font-weight:300;letter-spacing:-.02em;
  color:#1C1C1C;line-height:1;
}
.ap-stat-v.gold{color:#D4A574}
.ap-stat-d{
  display:inline-flex;align-items:center;gap:1px;
  font-size:11px;font-weight:500;color:#999;
}
.ap-stat-d i{font-size:10px}
.ap-stat-d.up{color:#3E8A5E}
.ap-stat-d.down{color:#C05545}

.ap-section{
  margin-bottom:24px;
  display:flex;flex-direction:column;min-width:0;
}

.ap-header{
  display:flex;align-items:baseline;justify-content:space-between;
  margin-bottom:10px;
}
.ap-header h3{
  font-family:'DM Sans',sans-serif;
  font-size:11px;font-weight:500;color:#bbb;
  letter-spacing:.05em;text-transform:uppercase;
  margin:0;
}
.ap-header-count{
  font-size:11px;font-weight:600;color:#D4A574;
  padding:2px 8px;border-radius:8px;
}
.ap-header-count-sage{
  font-size:11px;font-weight:600;
  padding:2px 8px;border-radius:8px;
  background:#EDF2EF;color:#4A7C5C;
}
.ap-header-count-petal{
  font-size:11px;font-weight:600;
  padding:2px 8px;border-radius:8px;
  background:#FFF8F0;color:#D4A574;
}
.ap-header-action{
  font-size:11px;color:#8A9E91;cursor:pointer;
  transition:color .15s;
}
.ap-header-action:hover{color:#3D5A47}
.ap-header-trail{font-size:11.5px;color:#bbb}

.ap-card{
  background:#fff;border:1px solid #E9E7E3;border-radius:12px;
  overflow:hidden;min-width:0;
}

.ap-today-row{
  display:flex;align-items:center;gap:12px;
  padding:14px 20px;
}
.ap-today-row+.ap-today-row{border-top:1px solid #F0EEEB}

.ap-avatar{
  width:36px;height:36px;border-radius:50%;flex-shrink:0;
  background:#EDF2EF;
  display:flex;align-items:center;justify-content:center;
  font-family:'DM Sans',sans-serif;
  font-size:11.5px;font-weight:500;color:#4A7C5C;
}
.ap-avatar-sm{width:32px;height:32px;font-size:11.5px}

.ap-today-info{flex:1;min-width:0}
.ap-today-name{
  font-size:14px;font-weight:500;color:#1C1C1C;
  line-height:1.3;
}
.ap-today-type{
  font-size:12px;color:#999;margin-top:1px;
  line-height:1.3;
}
.ap-today-time{
  font-family:'DM Sans',sans-serif;
  font-size:14px;font-weight:600;color:#D4A574;
  margin-right:8px;flex-shrink:0;
}
.ap-call-btn{
  display:inline-flex;align-items:center;gap:5px;
  height:30px;padding:0 14px;border-radius:8px;
  background:#3D5A47;color:#fff;border:0;
  font-family:'DM Sans',sans-serif;
  font-size:12px;font-weight:600;
  flex-shrink:0;cursor:pointer;
  transition:background .15s;
}
.ap-call-btn:hover{background:#2E4838}
.ap-call-btn i{font-size:13px}

.ap-up-row{
  display:flex;align-items:center;
  padding:12px 18px;
  cursor:pointer;transition:background .1s;
}
.ap-up-row+.ap-up-row{border-top:1px solid #F0EEEB}
.ap-up-row:hover{background:#FAFAF8}

.ap-up-info{flex:1;min-width:0;margin-left:12px}
.ap-up-name{font-size:13px;font-weight:500;color:#1C1C1C;line-height:1.3}
.ap-up-type{font-size:11.5px;color:#999;margin-top:1px;line-height:1.3}
.ap-up-right{text-align:right;width:70px;flex-shrink:0}
.ap-up-time{font-size:12.5px;font-weight:500;color:#555;line-height:1.3}
.ap-up-time.hi{color:#D4A574}
.ap-up-date{font-size:11px;color:#bbb;margin-top:1px;line-height:1.2}
.ap-up-date.hi{color:#D4A574}
.ap-caret{font-size:11px;color:#ccc;flex-shrink:0;margin-left:8px}

.ap-grid{
  display:grid;grid-template-columns:5fr 3fr;gap:20px;
  margin-bottom:24px;overflow:hidden;
}
.ap-grid .ap-section{margin-bottom:0}

.ap-rev{
  padding:16px 16px 10px;
  display:flex;flex-direction:column;
  flex:1;
}
.ap-rev-head{display:flex;align-items:baseline;gap:6px;margin-bottom:14px}
.ap-rev-n{
  font-family:'Fraunces',serif;
  font-size:20px;font-weight:300;letter-spacing:-.02em;
  color:#1C1C1C;
}
.ap-rev-lbl{font-size:11px;color:#bbb}

.ap-chart{
  display:flex;align-items:flex-end;gap:6px;
  flex:1;min-height:120px;padding-bottom:2px;
}
.ap-bar-g{
  flex:1;display:flex;flex-direction:column;align-items:center;
  gap:6px;height:100%;justify-content:flex-end;
}
.ap-bar-g span{
  font-family:'DM Sans',sans-serif;
  font-size:10.5px;color:#bbb;
}
.ap-bar{
  width:100%;border-radius:3px 3px 0 0;
  background:#E2E8E4;
  transition:height .6s cubic-bezier(.23,1,.32,1);
  min-height:6px;
}
.ap-bar.cur{background:#3D5A47}

.ap-task-row{
  display:flex;align-items:flex-start;gap:10px;
  padding:10px 16px;
}
.ap-task-row+.ap-task-row{border-top:1px solid #F0EEEB}
.ap-task-check{
  width:16px;height:16px;margin-top:1px;flex-shrink:0;
  border-radius:50%;
  border:1.5px solid #ccc;
  background:transparent;cursor:pointer;
  transition:border-color .15s;
}
.ap-task-check:hover{border-color:#4A7C5C}
.ap-task-body{flex:1;min-width:0}
.ap-task-text{
  font-family:'DM Sans',sans-serif;
  font-size:13px;font-weight:450;line-height:1.4;
  color:#1C1C1C;
}
.ap-task-client{
  font-size:11px;color:#bbb;margin-top:2px;
}

.ap-note-row{
  display:flex;align-items:center;
  padding:12px 18px;
  cursor:pointer;transition:background .1s;
}
.ap-note-row+.ap-note-row{border-top:1px solid #F0EEEB}
.ap-note-row:hover{background:#FAFAF8}
.ap-note-icon{
  width:28px;height:28px;border-radius:7px;flex-shrink:0;
  background:#F5F3F0;
  display:flex;align-items:center;justify-content:center;
}
.ap-note-icon i{font-size:14px;color:#bbb}
.ap-note-body{flex:1;min-width:0;margin-left:12px}
.ap-note-head{
  display:flex;justify-content:space-between;margin-bottom:2px;gap:8px;
}
.ap-note-name{font-size:12.5px;font-weight:500;color:#1C1C1C}
.ap-note-date{font-size:10.5px;color:#bbb;flex-shrink:0}
.ap-note-summary{
  font-size:11.5px;color:#999;line-height:1.5;
  margin:0;
  overflow:hidden;white-space:nowrap;text-overflow:ellipsis;
}

.ap-clients-grid{display:grid;grid-template-columns:repeat(2,1fr)}
.ap-client-row{
  display:flex;align-items:center;gap:10px;
  padding:10px 16px;
  cursor:pointer;transition:background .1s;
}
.ap-client-row:nth-child(n+3){border-top:1px solid #F0EEEB}
.ap-client-row:nth-child(even){border-left:1px solid #F0EEEB}
.ap-client-row:hover{background:#FAFAF8}
.ap-avatar-xs{width:28px;height:28px;font-size:10px}
.ap-client-name{flex:1;font-size:13px;font-weight:450;color:#1C1C1C}
.ap-client-status{display:flex;align-items:center;gap:5px;flex-shrink:0}
.ap-client-dot{width:5px;height:5px;border-radius:50%;flex-shrink:0}
.ap-client-dot.active{background:#3E8A5E}
.ap-client-dot.checkin{background:#D4A574}
.ap-client-dot.inactive{background:#D0CEC9}
.ap-client-label{font-size:11px;color:#999}

@media(max-width:1100px){
  .app-preview{height:640px}
  .ap-side{width:220px}
  .ap-body{padding:26px 30px 32px}
  .ap-search{width:210px}
  .ap-schedule-btn span{display:inline}
}
@media(max-width:900px){
  .app-preview{height:580px}
  .ap-side{width:200px}
  .ap-item{height:34px;padding:0 10px;font-size:12.5px;gap:9px}
  .ap-item i{font-size:16px}
  .ap-top{height:52px;padding:0 20px}
  .ap-title{font-size:17px}
  .ap-search{width:160px;height:30px}
  .ap-search-ph{font-size:11.5px}
  .ap-iconbtn{width:30px;height:30px;min-width:30px}
  .ap-iconbtn i{font-size:16px}
  .ap-schedule-btn{height:30px;padding:0 12px 0 9px;font-size:12px}
  .ap-schedule-btn i{font-size:14px}
  .ap-body{padding:22px 24px 32px}
  .ap-greet-h{font-size:20px}
  .ap-greet-emoji{font-size:17px}
  .ap-attention{gap:8px;margin-bottom:18px}
  .ap-quicks{gap:8px;margin-bottom:20px}
  .ap-quick{height:32px;padding:0 12px;font-size:12px}
  .ap-stats{margin-bottom:20px}
  .ap-stat{padding:13px 16px}
  .ap-stat-v{font-size:20px}
  .ap-stat-l{font-size:10.5px}
  .ap-section{margin-bottom:20px}
  .ap-today-row{padding:12px 16px;gap:10px}
  .ap-avatar{width:32px;height:32px;font-size:11px}
  .ap-today-name{font-size:13px}
  .ap-today-type{font-size:11.5px}
  .ap-today-time{font-size:13px}
  .ap-call-btn{height:28px;padding:0 12px;font-size:11.5px}
  .ap-up-row{padding:10px 14px}
  .ap-rev-n{font-size:18px}
  .ap-grid{gap:14px}
  .ap-task-row,.ap-note-row,.ap-client-row{padding:10px 14px}
}
@media(max-width:720px){
  .app-preview{height:540px}
  .ap-main{border-top-left-radius:0}
  .ap-side{width:60px;overflow:hidden}
  .ap-logo{padding:0;justify-content:center}
  .ap-logo-bloom{font-size:0}
  .ap-logo-desk{font-size:0}
  .ap-logo::before{
    content:"B";font-family:'Fraunces',serif;
    font-size:20px;font-weight:300;color:#fff;
  }
  .ap-item>span{display:none}
  .ap-nav{padding:0 10px}
  .ap-item{justify-content:center;padding:0;width:40px;margin:0 auto;gap:0}
  .ap-user-wrap{padding:0 0 14px}
  .ap-user-card{justify-content:center;padding:8px 0}
  .ap-user-text,.ap-user-logout{display:none}
  .ap-search{display:none}
  .ap-schedule-btn span{display:none}
  .ap-schedule-btn{width:32px;padding:0;justify-content:center}
  .ap-grid{grid-template-columns:1fr}
  .ap-stats{grid-template-columns:repeat(2,1fr)}
  .ap-stat+.ap-stat{border-left:0}
  .ap-stat:nth-child(odd){border-right:1px solid #E9E7E3}
  .ap-stat:nth-child(n+3){border-top:1px solid #E9E7E3}
  .ap-stat:nth-last-child(-n+2){border-right:0}
  .ap-clients-grid{grid-template-columns:1fr}
  .ap-client-row:nth-child(even){border-left:0}
  .ap-client-row:nth-child(n+2){border-top:1px solid #F0EEEB}
}
@media(max-width:520px){
  .app-preview{height:480px}
  .ap-top{padding:0 16px;height:48px}
  .ap-title{font-size:16px}
  .ap-body{padding:18px 16px 24px}
  .ap-greet-h{font-size:17px}
  .ap-greet-emoji{font-size:15px}
  .ap-date{font-size:11.5px;margin-bottom:12px}
  .ap-attention,.ap-quicks{margin-bottom:14px}
  .ap-stat{padding:11px 13px}
  .ap-stat-v{font-size:17px}
  .ap-stat-l{font-size:10px}
  .ap-header h3{font-size:10.5px}
  .ap-chart{min-height:80px}
}


/* Pain section: asymmetric editorial split. Left column is a numbered prose
   list with a single lede sentence (no per-item resolves; the whole site is
   the resolve). Right column is a single composed visual artifact: a fan of
   five overlapping tool-tab mockups (scheduling, doc, payments, video, sheet)
   tilted at slight angles, answering "Sound familiar?" with a picture of the
   chaos the rest of the site replaces. Deliberately not a 3-up card grid
   (that's the archetypes section directly below). */
.pain-split{
  display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.05fr);
  gap:72px;align-items:center;
}
.pain-text .tag{display:inline-flex;margin-bottom:14px}
.pain-text h2{
  font-family:var(--display);font-size:clamp(28px,3.2vw,40px);
  font-weight:400;line-height:1.15;letter-spacing:-.035em;color:var(--ink);
  margin:0 0 16px;
}
.pain-lede{
  font-family:var(--font);font-size:17px;font-weight:400;
  line-height:1.65;color:var(--body);letter-spacing:0;
  margin:0 0 32px;max-width:560px;
}
.pain-points{list-style:none;margin:0;padding:0;display:flex;flex-direction:column}
.pain-points li{
  display:grid;grid-template-columns:auto 1fr;gap:18px;
  padding:20px 0;border-top:1px solid var(--border-light);
}
.pain-points li:last-child{border-bottom:1px solid var(--border-light)}
.pain-num{
  font-family:var(--display);font-size:14px;font-weight:400;font-style:italic;
  color:var(--petal);line-height:1.3;padding-top:2px;letter-spacing:.02em;
}
.pain-points h3{
  font-family:var(--font);font-size:13.5px;font-weight:600;
  color:var(--ink);margin:0 0 6px;letter-spacing:.005em;line-height:1.3;
}
.pain-points p{font-size:14.5px;line-height:1.6;color:var(--body);margin:0}

/* Visual artifact: stacked competitor tabs */
.pain-visual{position:relative}
.pain-stage{
  position:relative;
  aspect-ratio:1 / 1.02;
  width:100%;max-width:560px;margin:0 auto;
  background:none;
}
.tab-card{
  position:absolute;border-radius:10px;overflow:hidden;
  background:#fff;border:1px solid rgba(0,0,0,.07);
  /* Layered depth: inner top highlight, tight ambient, wider floor shadow */
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 0 0 .5px rgba(26,26,26,.04),
    0 2px 4px rgba(26,26,26,.05),
    0 10px 20px -8px rgba(26,26,26,.14),
    0 28px 48px -20px rgba(26,26,26,.22);
  font-family:var(--font);
  transition:transform .4s cubic-bezier(.22,1,.36,1),box-shadow .4s ease;
}
.tab-card header{
  position:relative;
  display:flex;align-items:center;gap:5px;padding:7px 10px;
  background:linear-gradient(180deg,#F4F2ED 0%,#E9E6E0 100%);
  border-bottom:1px solid rgba(0,0,0,.05);
}
.tab-card header::after{
  /* subtle inner top highlight on the chrome itself */
  content:'';position:absolute;left:0;right:0;top:0;height:1px;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.7),transparent);
}
.tc-body{padding:11px 12px;display:flex;flex-direction:column;gap:7px}
.tc-row{display:flex;align-items:center;gap:8px;font-size:10.5px;color:var(--ink-soft)}
.tc-name{color:var(--body);font-size:10.5px;line-height:1.3;flex:1;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}

/* ============ Scheduling app: blue accents, date block, slot list ============ */
.tc-calendly{background:#fff;border-color:rgba(0,107,255,.12)}
.tc-calendly header{display:none}
.tc-body-calendly{padding:13px 14px 12px;gap:5px}
.tc-cal-head{
  display:flex;align-items:center;gap:11px;
  padding-bottom:9px;margin-bottom:4px;
  border-bottom:1px solid #eef1f5;
}
.tc-cal-datebox{
  display:flex;flex-direction:column;align-items:center;line-height:1;
  border:1.5px solid #006BFF;border-radius:6px;padding:4px 8px 5px;
  background:#fff;min-width:34px;
}
.tc-cal-day{font-size:7.5px;font-weight:700;color:#006BFF;letter-spacing:.14em;margin-bottom:2px}
.tc-cal-date{font-family:var(--font);font-size:15px;font-weight:700;color:#0a1f3d;letter-spacing:-.02em}
.tc-cal-headmeta{display:flex;flex-direction:column;gap:2px;line-height:1.2}
.tc-cal-eyebrow{font-size:10px;font-weight:600;color:#0a1f3d}
.tc-cal-tz{font-size:8.5px;color:#6b7280}
.tc-slot{
  position:relative;display:flex;align-items:center;gap:9px;
  padding:7px 9px;border-radius:6px;
  font-size:10.5px;line-height:1.3;
  border:1px solid transparent;
}
.tc-slot.booked{background:rgba(0,107,255,.07);border-color:rgba(0,107,255,.18)}
.tc-slot.booked::before{
  content:'';position:absolute;left:0;top:6px;bottom:6px;width:3px;
  background:#006BFF;border-radius:0 2px 2px 0;
}
.tc-slot.open{border:1px solid #006BFF;background:#fff;color:#006BFF}
.tc-slot-time{font-weight:600;color:#0a1f3d;font-size:10.5px;min-width:34px;font-variant-numeric:tabular-nums}
.tc-slot.open .tc-slot-time{color:#006BFF;font-weight:600}
.tc-slot-name{color:#3a4258;font-size:10px;flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-weight:500}
.tc-slot-cta{
  margin-left:auto;font-size:9px;font-weight:700;color:#fff;
  background:#006BFF;padding:4px 9px;border-radius:4px;letter-spacing:.02em;
  line-height:1;display:inline-flex;align-items:center;
}
.tc-avi{
  width:16px;height:16px;border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  font-size:8.5px;font-weight:700;flex-shrink:0;
}

/* ============ Doc app: monochrome, emoji-led, doc-like body ============ */
.tc-notion{background:#fff}
.tc-body-notion{padding:14px 16px 13px;gap:5px;font-family:'Segoe UI',ui-sans-serif,system-ui,sans-serif}
.tc-notion-crumbs{
  font-size:8.5px;color:#9b9690;letter-spacing:.01em;
  display:flex;gap:4px;align-items:center;margin-bottom:6px;
}
.tc-notion-crumbs span{color:#cfcac3;font-size:9px}
.tc-notion-title{
  display:flex;align-items:center;gap:8px;
  font-size:15px;font-weight:700;color:#37352f;
  letter-spacing:-.015em;line-height:1.15;margin-bottom:6px;
}
.tc-notion-icon{
  font-size:14px;line-height:1;color:#37352F;
  flex-shrink:0;
}
.tc-notion-callout{
  display:flex;align-items:flex-start;gap:8px;
  padding:7px 9px;border-radius:3px;
  background:#f7f6f3;font-size:10px;color:#37352f;line-height:1.45;
  margin-bottom:4px;
}
.tc-notion-callout-icon{
  font-size:12px;line-height:1;color:#D9730D;
  flex-shrink:0;margin-top:1px;
}
.tc-notion-h3{
  font-size:11px;font-weight:700;color:#37352f;letter-spacing:-.01em;
  margin-top:3px;margin-bottom:1px;
}
.tc-notion-todo{
  display:flex;align-items:center;gap:8px;
  font-size:10px;color:#37352f;line-height:1.4;
}
.tc-cb{
  width:11px;height:11px;border-radius:3px;
  border:1.2px solid #c7c3bd;background:#fff;flex-shrink:0;position:relative;
}
.tc-cb.checked{background:#2383e2;border-color:#2383e2}
.tc-cb.checked::after{
  content:'';position:absolute;left:2.5px;top:.5px;
  width:3px;height:6px;border-right:1.5px solid #fff;border-bottom:1.5px solid #fff;
  transform:rotate(45deg);
}
.tc-strike{color:#9b9690;text-decoration:line-through}

/* ============ Payments app: purple accent strip, tabs, status pills ============ */
.tc-stripe{background:#fff;border-color:rgba(99,91,255,.14)}
.tc-stripe header{display:none}
.tc-stripe-accent{
  height:3px;background:linear-gradient(90deg,#635BFF 0%,#7A5CFF 50%,#635BFF 100%);
}
.tc-body-stripe{padding:10px 13px 12px;gap:5px;position:relative}
.tc-stripe-tabs{
  display:flex;gap:13px;font-size:9.5px;font-weight:600;
  color:#697386;border-bottom:1px solid #ebeef3;
  padding-bottom:7px;margin-bottom:4px;
}
.tc-stripe-tabs .active{
  color:#0a2540;position:relative;
}
.tc-stripe-tabs .active::after{
  content:'';position:absolute;left:0;right:0;bottom:-8px;height:2px;
  background:#635BFF;border-radius:1px;
}
.tc-stat-label{
  font-size:8.5px;font-weight:600;letter-spacing:.04em;
  color:#697386;
}
.tc-stat{
  font-family:var(--font);font-size:22px;font-weight:600;color:#0a2540;
  line-height:1.05;letter-spacing:-.025em;
  display:flex;align-items:baseline;
  padding-bottom:8px;border-bottom:1px solid #ebeef3;margin-bottom:4px;
  font-variant-numeric:tabular-nums;
}
.tc-stat-cur{font-size:14px;font-weight:500;color:#425466;margin-right:2px}
.tc-stat-cents{font-size:13px;font-weight:500;color:#697386}
.tc-trend{
  margin-left:auto;font-size:9px;color:#0E6027;font-weight:600;
  background:#D7F7E0;padding:3px 7px;border-radius:3px;letter-spacing:.02em;
  align-self:center;line-height:1;
}
.tc-stripe .tc-row{gap:7px;padding:1px 0;align-items:center;line-height:1.2}
.tc-pill{
  font-size:8.5px;font-weight:600;letter-spacing:.01em;
  padding:3px 7px;border-radius:10px;flex-shrink:0;text-align:center;
  line-height:1;display:inline-flex;align-items:center;justify-content:center;
}
.tc-pill.paid{background:#D7F7E0;color:#0E6027}
.tc-pill.sent{background:#E3E8EE;color:#3F4B5B}
.tc-pill.due{background:#FBE4E4;color:#A41C1C}
.tc-stripe .tc-name{font-size:10px;color:#425466;font-weight:500}
.tc-amt{
  margin-left:auto;font-family:var(--font);font-variant-numeric:tabular-nums;
  font-size:10px;font-weight:600;color:#0a2540;
}
.tc-amt::before{content:'€\00a0';font-size:9.5px;color:#697386;font-weight:500}

/* ============ Video call app: light Teams-style, centered video tile, pill controls ============ */
.tc-zoom{background:#F5F5F5;border-color:rgba(0,0,0,.08)}
.tc-zoom-head{
  background:#FFFFFF;border-bottom:1px solid #EAEAEA;
  padding:7px 11px;display:flex;align-items:center;gap:10px;
}
.tc-zoom-head::after{display:none}
.tc-zoom-title{
  display:inline-flex;align-items:center;gap:6px;
  font-size:9.5px;font-weight:600;color:#242424;letter-spacing:.01em;
  font-variant-numeric:tabular-nums;line-height:1;
}
.tc-live-dot{
  width:7px;height:7px;border-radius:50%;background:#13A10E;
  box-shadow:0 0 0 2px rgba(19,161,14,.18);
}
.tc-zoom-meta{
  font-size:8.5px;font-weight:500;color:#616161;letter-spacing:.01em;
  line-height:1;
}
.tc-zoom-rec{
  margin-left:auto;display:inline-flex;align-items:center;gap:5px;
  font-size:8px;font-weight:600;color:#C4314B;letter-spacing:.04em;
  padding:3px 8px;background:rgba(196,49,75,.08);border-radius:10px;
  line-height:1;
}
.tc-zoom-rec span{
  width:5px;height:5px;border-radius:50%;background:#C4314B;
  animation:tc-rec-pulse 1.8s ease-in-out infinite;
}
@keyframes tc-rec-pulse{0%,100%{opacity:1}50%{opacity:.35}}

.tc-body-zoom{padding:10px;gap:0;background:#F5F5F5;display:flex;flex-direction:column}
.tc-vid{
  position:relative;aspect-ratio:16/10;border-radius:8px;overflow:hidden;
  background:linear-gradient(160deg,#F0F0F0 0%,#E4E4E4 100%);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 1px 2px rgba(0,0,0,.04),inset 0 0 0 1px rgba(0,0,0,.04);
}
.tc-avatar{
  position:relative;z-index:1;
  width:44%;aspect-ratio:1;border-radius:50%;
  background:linear-gradient(140deg,#D4D4D4 0%,#BABABA 100%);
  color:#fff;display:flex;align-items:center;justify-content:center;
  font-family:var(--font);font-size:24px;font-weight:600;
  box-shadow:
    0 0 0 2px rgba(255,255,255,.4) inset,
    0 4px 10px rgba(0,0,0,.1);
}
.tc-name-tag{
  position:absolute;bottom:7px;left:7px;z-index:2;
  display:inline-flex;align-items:center;gap:5px;
  font-size:9px;font-weight:500;color:#242424;letter-spacing:.01em;
  background:rgba(255,255,255,.85);padding:4px 8px 4px 6px;border-radius:4px;
  backdrop-filter:blur(6px);line-height:1;
  box-shadow:0 1px 2px rgba(0,0,0,.06);
}
.tc-name-tag i{font-size:10px;color:#C4314B;opacity:.9;line-height:1}

.tc-bar{
  display:flex;align-items:center;justify-content:center;gap:5px;
  padding:10px 8px 4px;background:transparent;border-top:0;
}
.tc-bar-btn{
  width:24px;height:24px;border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  background:transparent;color:#424242;font-size:11.5px;
  transition:background .15s ease;
}
.tc-bar-btn:hover{background:rgba(91,95,199,.08)}
.tc-bar-btn.end{
  background:#C4314B;color:#fff;
  width:auto;padding:0 11px;height:24px;border-radius:12px;gap:5px;
  font-family:var(--font);font-size:9.5px;font-weight:600;letter-spacing:.01em;
  line-height:1;
  box-shadow:0 1px 3px rgba(196,49,75,.3);
}
.tc-bar-btn.end:hover{background:#A12338}
.tc-bar-btn.end i{font-size:11px;line-height:1}

/* ============ Spreadsheet app: green title bar, grid, cell selection ============ */
.tc-excel{background:#fff}
.tc-excel-titlebar{
  background:#107C41;
  padding:5px 10px;color:#fff;
  display:flex;align-items:center;gap:9px;
  border-bottom:1px solid rgba(0,0,0,.12);
}
.tc-excel-fname{
  font-size:9.5px;font-weight:600;color:#fff;letter-spacing:.01em;
}
.tc-excel-autosave{
  margin-left:auto;display:inline-flex;align-items:center;gap:6px;
  font-size:8.5px;font-weight:500;color:rgba(255,255,255,.9);
  line-height:1;
}
.tc-excel-autosave span{
  flex-shrink:0;
  width:16px;height:9px;border-radius:5px;background:rgba(255,255,255,.4);
  position:relative;
}
.tc-excel-autosave span::after{
  content:'';position:absolute;right:1.5px;top:1.5px;width:6px;height:6px;
  border-radius:50%;background:#fff;
}
.tc-excel-formulabar{
  background:#fafafa;border-bottom:1px solid #d4d4d4;
  padding:3px 6px;display:flex;align-items:center;gap:6px;
  font-size:9px;color:#444;
}
.tc-excel-namebox{
  min-width:30px;padding:2px 5px;background:#fff;border:1px solid #d4d4d4;
  font-weight:600;color:#1a1a1a;text-align:center;
  font-variant-numeric:tabular-nums;
}
.tc-excel-fx{
  font-style:italic;color:#888;font-family:'Cambria Math',Georgia,serif;
  padding-right:3px;border-right:1px solid #d4d4d4;
}
.tc-excel-fcell{
  font-family:Consolas,'Courier New',monospace;font-size:9px;color:#1a1a1a;
}
.tc-body-excel{padding:0;gap:0}
.tc-excel-grid{
  display:grid;grid-template-columns:22px 1.3fr 1fr .8fr;
  font-size:10px;color:#1a1a1a;background:#fff;
}
.tc-excel-grid>span{
  padding:4px 7px;border-right:1px solid #d4d4d4;border-bottom:1px solid #d4d4d4;
  line-height:1.2;
}
.tc-excel-grid>span:nth-child(4n){border-right:0}
.tc-col-h,.tc-row-h{
  background:#f0f0f0;color:#444;
  font-size:9px;font-weight:500;text-align:center;
}
.tc-col-h{border-bottom:1px solid #b8b8b8 !important}
.tc-row-h{border-right:1px solid #b8b8b8 !important}
.tc-row-h.sel{background:#caead8;color:#0a3d22;font-weight:700}
.tc-cell.th{font-weight:600;color:#1a1a1a;background:#fff}
.tc-cell.num{text-align:right;font-variant-numeric:tabular-nums}
.tc-cell.selected{
  position:relative;box-shadow:inset 0 0 0 2px #107C41;
  background:#fff;font-weight:600;z-index:1;
}
.tc-excel-sheettabs{
  display:flex;align-items:stretch;gap:0;
  background:#f7f7f7;border-top:1px solid #d4d4d4;
  font-size:9px;color:#444;
}
.tc-excel-sheettabs span{
  padding:4px 12px;border-right:1px solid #d4d4d4;
}
.tc-excel-sheettabs .active{
  background:#fff;color:#107C41;font-weight:700;
  border-top:1.5px solid #107C41;margin-top:-1px;padding-top:3px;
}
.tc-excel-sheettabs .plus{color:#888;padding:4px 8px}

/* Layout of the five cards. Sizes are percentages of the square stage so
   the composition scales cleanly. Rotations vary by 2-3 degrees and the
   z-order interleaves so the stack reads as "found on a desk", not fanned. */
.tc-calendly{top:0;left:-2%;width:46%;transform:rotate(-7deg);z-index:3}
.tc-notion{top:5%;right:-2%;width:45%;transform:rotate(5.5deg);z-index:5}
.tc-stripe{bottom:2%;left:-1%;width:46%;transform:rotate(3deg);z-index:4}
.tc-zoom{bottom:6%;right:-1%;width:44%;transform:rotate(-5deg);z-index:6}
.tc-excel{top:34%;left:22%;width:52%;transform:rotate(-1.5deg);z-index:7}

.pain-stage:hover .tc-calendly{transform:rotate(-8.5deg) translate(-5px,-4px)}
.pain-stage:hover .tc-notion{transform:rotate(7deg) translate(5px,-4px)}
.pain-stage:hover .tc-stripe{transform:rotate(4deg) translate(-5px,3px)}
.pain-stage:hover .tc-zoom{transform:rotate(-6.5deg) translate(5px,3px)}
.pain-stage:hover .tc-excel{transform:rotate(-2.5deg) translate(0,2px)}

@media (prefers-reduced-motion:reduce){
  .tc-rec span{animation:none}
  .tab-card{transition:none}
}

.pain-stage-caption{
  position:absolute;left:50%;bottom:-32px;transform:translateX(-50%);
  font-family:var(--font);font-size:11px;font-weight:600;
  text-transform:uppercase;letter-spacing:.16em;color:var(--faint);
  white-space:nowrap;
}

@media(max-width:1040px){
  .pain-split{grid-template-columns:1fr;gap:56px}
  .pain-text{max-width:620px}
  .pain-stage{max-width:480px}
}

/* Archetype cards: honest "who it's for" panels. Same editorial vocabulary
   as the pain cards (Fraunces headlines, petal accent rule, cream gradient)
   so the two sections read as a paired arc - the problem, then the people
   it's solved for. No fake quotes, no disclaimer. */
.archetypes .section-head{margin-bottom:48px}
.archetype-grid{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;
}
.archetype-card{
  position:relative;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%,rgba(212,165,116,.05) 0%,transparent 65%),
    linear-gradient(168deg,#FFFFFF 0%,#FBFAF6 60%,#F6F2EA 100%);
  border:1px solid var(--border-light);border-radius:18px;
  padding:32px 28px 30px;
  display:flex;flex-direction:column;gap:12px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.7) inset,
    0 1px 2px rgba(26,26,26,.02);
  transition:border-color .25s ease,transform .3s cubic-bezier(.22,1,.36,1),box-shadow .25s ease;
}
.archetype-card:hover{
  border-color:#d5d2cd;
  transform:translateY(-3px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.7) inset,
    0 1px 2px rgba(26,26,26,.02),
    0 18px 40px -12px rgba(26,26,26,.1);
}
.archetype-head{
  display:flex;align-items:center;gap:12px;margin-bottom:6px;
}
.archetype-icon{
  display:inline-flex;align-items:center;justify-content:center;
  width:36px;height:36px;border-radius:10px;
  background:linear-gradient(135deg,var(--sage-bg) 0%,rgba(74,124,92,.18) 100%);
  color:var(--sage);font-size:17px;flex-shrink:0;
  box-shadow:0 1px 4px rgba(74,124,92,.08);
}
.archetype-label{
  font-family:var(--font);font-size:11.5px;font-weight:700;
  text-transform:uppercase;letter-spacing:.14em;color:var(--sage);
}
.archetype-card h3{
  font-family:var(--display);font-size:21px;font-weight:400;
  color:var(--ink);letter-spacing:-.02em;line-height:1.2;margin:0;
}
.archetype-card p{font-size:14.5px;line-height:1.7;color:var(--body);margin:0}

@media(max-width:900px){
  .archetype-grid{grid-template-columns:1fr;gap:14px}
}

.showcase{
  display:grid;grid-template-columns:1fr 1fr;gap:56px;
  align-items:center;margin-bottom:72px;
}
.showcase:last-child{margin-bottom:0}
.showcase.reverse{direction:rtl}
.showcase.reverse>*{direction:ltr}

.showcase-step{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--font);font-size:11.5px;font-weight:700;
  text-transform:uppercase;letter-spacing:.14em;
  color:var(--sage);margin-bottom:16px;
}
.showcase-step::before{
  content:'';display:block;width:20px;height:1.5px;
  background:var(--petal);border-radius:1px;
}
.showcase-text h3{
  font-family:var(--display);font-size:clamp(24px,2.5vw,32px);
  font-weight:400;line-height:1.2;letter-spacing:-.02em;
  margin-bottom:18px;
}
.showcase-text p{font-size:15px;line-height:1.7;color:var(--body);margin-bottom:22px}

.showcase-checks{display:flex;flex-direction:column;gap:14px}
.showcase-checks li{
  display:flex;align-items:flex-start;gap:10px;
  font-size:14.5px;font-weight:500;color:var(--ink-soft);line-height:1.45;
}
.showcase-checks i{
  font-size:14px;color:var(--sage);flex-shrink:0;margin-top:2px;
}

.mock-frame{
  border-radius:12px;overflow:hidden;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 2px 8px rgba(0,0,0,.04),0 12px 36px rgba(0,0,0,.07);
}
.mock-bar{
  display:flex;gap:5px;padding:9px 12px;
  background:linear-gradient(180deg,#F0EEEA 0%,#E8E6E2 100%);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.mock-dot{width:7px;height:7px;border-radius:50%;background:#ccc}
.mock-content{background:var(--white);font-family:var(--font)}

.mock-sessions{padding:18px}
.ms-header{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:16px}
.ms-title{font-family:var(--display);font-size:15px;font-weight:300;color:var(--ink)}
.ms-count{font-size:10.5px;color:var(--muted)}
.ms-today-label{font-size:9px;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--petal);margin-bottom:10px}
.ms-today-card{border:1.5px solid var(--border);border-radius:10px;padding:14px;margin-bottom:16px}
.ms-today-row{display:flex;align-items:center;gap:10px;margin-bottom:10px}
.ms-av{
  width:30px;height:30px;border-radius:50%;background:var(--sage-bg);color:var(--sage);
  display:flex;align-items:center;justify-content:center;font-size:9.5px;font-weight:600;flex-shrink:0;
}
.ms-info{flex:1}
.ms-info b{display:block;font-size:12.5px;font-weight:500;color:var(--ink)}
.ms-info span{font-size:10.5px;color:var(--muted)}
.ms-right{text-align:right}
.ms-time{font-size:11px;font-weight:500;color:var(--petal-warm)}
.ms-amount{font-size:10px;color:var(--muted);margin-top:2px}
.ms-join-btn{
  display:flex;align-items:center;justify-content:center;gap:6px;
  height:30px;border-radius:8px;background:var(--sage);color:var(--white);
  font-size:11px;font-weight:600;
}
.ms-list{display:flex;flex-direction:column}
.ms-row{
  display:flex;align-items:center;gap:10px;padding:9px 0;
  border-top:1px solid var(--border-light);
}
.ms-dot{width:6px;height:6px;border-radius:50%;flex-shrink:0}
.ms-dot.green{background:var(--sage)}
.ms-dot.gray{background:var(--faint)}
.ms-row-info{flex:1}
.ms-row-info b{display:block;font-size:11.5px;font-weight:500;color:var(--ink)}
.ms-row-info span{font-size:9.5px;color:var(--muted)}
.ms-row-amt{font-size:11px;font-weight:500;color:var(--body)}

.mock-notes{padding:18px;font-size:11px}
.mn-header{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:16px;gap:12px}
.mn-title{display:block;font-family:var(--display);font-size:14px;font-weight:300;color:var(--ink)}
.mn-sub{display:block;font-size:10px;color:var(--muted);margin-top:4px}
.mn-badge{font-size:9px;font-weight:600;padding:4px 10px;border-radius:10px;white-space:nowrap;flex-shrink:0;background:#FFF8F0;color:var(--petal-warm)}
.mn-section{margin-bottom:16px}
.mn-label{font-size:9px;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--faint);margin-bottom:8px}
.mn-text{font-size:11.5px;line-height:1.65;color:var(--body)}
.mn-action{
  display:flex;align-items:center;gap:8px;
  padding:6px 0;font-size:11px;color:var(--ink);
}
.mn-action+.mn-action{border-top:1px solid var(--border-light)}
.mn-check{
  width:14px;height:14px;border-radius:4px;
  border:1.5px solid var(--border);flex-shrink:0;
}
.mn-owner{font-size:9px;font-weight:600;padding:2px 8px;border-radius:8px;margin-left:auto;flex-shrink:0}
.mn-owner.client{background:#F0F0EE;color:var(--muted)}
.mn-owner.coach{background:var(--sage-bg);color:var(--sage)}
.mn-themes{display:flex;gap:6px;flex-wrap:wrap}
.mn-themes span{font-size:9.5px;font-weight:500;padding:3px 9px;border-radius:8px;background:var(--sage-bg);color:var(--sage)}
.mn-ai-bar{
  display:flex;align-items:center;gap:8px;
  padding:9px 12px;border-radius:9px;
  background:var(--cream);border:1px solid var(--border);
  font-size:10.5px;color:var(--muted);margin:16px 0 14px;
}
.mn-ai-bar i{color:var(--sage);font-size:13px}
.mn-actions{display:flex;align-items:center;gap:10px}
.mn-approve{
  display:inline-flex;align-items:center;gap:5px;
  height:28px;padding:0 14px;border-radius:8px;
  background:var(--sage);color:var(--white);
  font-size:10.5px;font-weight:600;
}
.mn-regen{font-size:10.5px;color:var(--muted);font-weight:500}

.mock-invoice{padding:18px;font-size:11px}
.mi-header{margin-bottom:16px}
.mi-title{font-family:var(--display);font-size:15px;font-weight:300;color:var(--ink)}
.mi-header .mi-stat{display:block;font-size:10px;color:var(--muted);margin-top:4px}
.mi-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-bottom:16px}
.mi-stat-box{padding:10px 11px;border:1px solid var(--border);border-radius:9px}
.mi-stat-l{font-size:8.5px;color:var(--muted);margin-bottom:3px;font-weight:500}
.mi-stat-v{font-family:var(--display);font-size:13px;font-weight:300;color:var(--ink)}
.mi-stat-v.green{color:var(--sage)}
.mi-stat-v.gold{color:var(--petal-warm)}
.mi-table{border:1px solid var(--border);border-radius:9px;overflow:hidden}
.mi-row{
  display:flex;align-items:center;gap:8px;padding:9px 11px;
  font-size:10.5px;
}
.mi-row+.mi-row{border-top:1px solid var(--border-light)}
.mi-num{color:var(--muted);width:90px;font-size:9.5px;font-family:'DM Sans',monospace}
.mi-client{flex:1;font-weight:500;color:var(--ink)}
.mi-amt{font-weight:500;color:var(--ink);margin-right:6px;min-width:48px;text-align:right}
.mi-status{display:flex;align-items:center;gap:4px;font-size:9.5px;font-weight:600;width:60px}
.mi-status .mi-dot{width:6px;height:6px;border-radius:50%}
.mi-status.paid{color:var(--sage)}.mi-status.paid .mi-dot{background:var(--sage)}
.mi-status.sent{color:var(--muted)}.mi-status.sent .mi-dot{background:var(--muted)}
.mi-status.overdue{color:#C44040}.mi-status.overdue .mi-dot{background:#C44040}

/* mindmap: a minimal node-and-path diagram visualising how the coach's
   recent notes and tasks flow through the assistant and shape each AI
   surface (notes, action items, chat, edits). Sage curves, soft cream
   tile, geometry locked to the SVG viewBox via percentage positioning
   so endpoints meet node edges at every breakpoint. Hub breathes; paths
   draw in on reveal. Stacks to a vertical diagram below 480px. */
.mindmap{
  position:relative;
  width:100%;
  max-width:480px;
  margin:0 auto;
  padding:24px 24px 20px;
  border-radius:20px;
  border:1px solid var(--border-light);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(74,124,92,.05) 0%, transparent 60%),
    linear-gradient(168deg,#FFFFFF 0%,#FBFAF6 60%,#F6F2EA 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,.7) inset,
    0 1px 2px rgba(26,26,26,.03),
    0 24px 56px -18px rgba(26,26,26,.16);
  box-sizing:border-box;
  isolation:isolate;
}

.mindmap-head{
  display:flex;flex-direction:column;gap:6px;
  padding:0 0 16px;
  text-align:left;
}
.mindmap-eyebrow{
  font-family:var(--font);
  font-size:10.5px;font-weight:700;
  letter-spacing:.16em;text-transform:uppercase;
  color:var(--sage);
}
.mindmap-title{
  font-family:var(--display);
  font-size:18px;font-weight:400;letter-spacing:-.012em;
  color:var(--ink);line-height:1.3;
}

.mindmap-canvas{
  position:relative;
  width:100%;
  aspect-ratio:480 / 360;
  margin:0 auto;
}
.mindmap-paths{
  position:absolute;inset:0;
  width:100%;height:100%;
  pointer-events:none;
  overflow:visible;
}

/* path-draw on reveal: paths stagger in left to right.
   stroke length 360 covers the longest curve comfortably. */
.mm-path{
  stroke-dasharray:360;
  stroke-dashoffset:360;
  transition:stroke-dashoffset 1.1s cubic-bezier(.65,0,.35,1);
}
.rv.show .mm-path-in{stroke-dashoffset:0}
.rv.show .mm-path-in:nth-of-type(1){transition-delay:.20s}
.rv.show .mm-path-in:nth-of-type(2){transition-delay:.30s}
.rv.show .mm-path-in:nth-of-type(3){transition-delay:.40s}
.rv.show .mm-path-out{stroke-dashoffset:0}
.rv.show .mm-path-out:nth-of-type(4){transition-delay:.55s}
.rv.show .mm-path-out:nth-of-type(5){transition-delay:.65s}
.rv.show .mm-path-out:nth-of-type(6){transition-delay:.75s}
.rv.show .mm-path-out:nth-of-type(7){transition-delay:.85s}

/* Memory pulses: a small dash travels along each connection in ~1.5s, then
   the path rests for ~3.5s. Seven paths with prime-ish durations desync so
   the overall feel is organic rather than choreographed. pathLength="100"
   on each <path> normalises the dasharray math regardless of actual curve
   length. */
.mm-pulse{
  fill:none;
  opacity:0;
  stroke-dasharray:5 95;
  stroke-dashoffset:0;
  pointer-events:none;
}
.rv.show .mm-pulse{
  animation:
    mm-pulse-flow var(--mm-dur,5s) cubic-bezier(.55,.08,.45,.92) var(--mm-delay,1.4s) infinite,
    mm-pulse-fade var(--mm-dur,5s) ease-in-out var(--mm-delay,1.4s) infinite;
}
.rv.show .mm-pulse-1{--mm-dur:4.6s; --mm-delay:1.5s}
.rv.show .mm-pulse-2{--mm-dur:5.3s; --mm-delay:2.8s}
.rv.show .mm-pulse-3{--mm-dur:4.9s; --mm-delay:1.2s}
.rv.show .mm-pulse-4{--mm-dur:5.8s; --mm-delay:3.7s}
.rv.show .mm-pulse-5{--mm-dur:6.4s; --mm-delay:4.4s}
.rv.show .mm-pulse-6{--mm-dur:5.5s; --mm-delay:5.2s}
.rv.show .mm-pulse-7{--mm-dur:7.1s; --mm-delay:3.1s}

@keyframes mm-pulse-flow{
  0%   {stroke-dashoffset:0}
  30%  {stroke-dashoffset:-100}
  100% {stroke-dashoffset:-100}
}
@keyframes mm-pulse-fade{
  0%, 30%, 100% {opacity:0}
  4%, 26%       {opacity:.78}
}

.mm-node{
  position:absolute;
  display:inline-flex;align-items:center;gap:9px;
  padding:8px 12px 8px 9px;
  max-width:calc(35% - 8px);
  background:#FFFFFF;
  border:1px solid var(--border-light);
  border-radius:11px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 1px 2px rgba(26,26,26,.04),
    0 8px 20px -10px rgba(26,26,26,.08);
  z-index:2;
}
.mm-ico{
  display:inline-flex;align-items:center;justify-content:center;
  width:26px;height:26px;
  border-radius:7px;
  background:linear-gradient(135deg,var(--sage-bg) 0%,rgba(74,124,92,.16) 100%);
  color:var(--sage);
  font-size:14px;
  flex-shrink:0;
}
.mm-label{
  font-family:var(--font);
  font-size:12.5px;font-weight:600;
  color:var(--ink);
  letter-spacing:-.01em;
  line-height:1.25;
  min-width:0;
  overflow-wrap:break-word;
  word-break:keep-all;
}

/* nodes anchor to the same coordinate space as the SVG paths.
   path starts at x=168 (35% of 480 viewBox) on the input side and
   ends at x=312 (65%) on the output side. anchoring node edges
   against those exact percentages means the path port and node
   plug-dot land on the same pixel at every breakpoint, and leaves
   ~150px outside the anchor for the node body to fit. */
.mm-node-in{right:65%;transform:translateY(-50%)}
.mm-pos-in1{top:25%}   /* 90/360  */
.mm-pos-in2{top:50%}   /* 180/360 */
.mm-pos-in3{top:75%}   /* 270/360 */

.mm-node-out{left:65%;transform:translateY(-50%)}
.mm-pos-out1{top:16.667%}  /* 60/360  */
.mm-pos-out2{top:38.889%}  /* 140/360 */
.mm-pos-out3{top:61.111%}  /* 220/360 */
.mm-pos-out4{top:83.333%}  /* 300/360 */

/* hub: a 44px disc placed exactly at canvas centre (50%/50%) so the
   path endpoints at viewBox (220, 180) and (260, 180) land precisely on
   the disc edges. Two concentric breathing rings sit centred on the
   disc, not stacked above it. The label is a caption positioned below
   the disc so it never offsets the disc's geometric centre. */
.mm-hub{
  position:absolute;
  left:50%;top:50%;
  width:44px;height:44px;
  transform:translate(-50%,-50%);
  z-index:3;
}
.mm-hub-ring{
  position:absolute;
  top:50%;left:50%;
  border-radius:50%;
  pointer-events:none;
  transform:translate(-50%,-50%);
}
.mm-hub-ring-1{
  width:64px;height:64px;
  background:rgba(74,124,92,.12);
  animation:mindmap-breath 3.4s ease-in-out infinite;
}
.mm-hub-ring-2{
  width:84px;height:84px;
  background:rgba(74,124,92,.06);
  animation:mindmap-breath 3.4s ease-in-out infinite;
  animation-delay:.5s;
}
.mm-hub-core{
  position:absolute;
  inset:0;
  display:flex;align-items:center;justify-content:center;
  border-radius:50%;
  background:radial-gradient(circle at 30% 28%, #6FA17F 0%, var(--sage) 55%, var(--sage-hover) 100%);
  color:var(--white);
  font-size:22px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.32) inset,
    0 0 0 1px rgba(74,124,92,.16),
    0 10px 24px -8px rgba(74,124,92,.55);
  z-index:1;
}
@keyframes mindmap-breath{
  0%,100% {transform:translate(-50%,-50%) scale(.94); opacity:.55}
  50%     {transform:translate(-50%,-50%) scale(1.06); opacity:.20}
}

.mindmap-foot{
  display:flex;align-items:center;gap:10px;
  padding:16px 0 0;
  margin-top:8px;
  border-top:1px solid var(--border-light);
  font-family:var(--font);
  font-size:11.5px;font-weight:500;
  color:var(--sage-text);
  line-height:1.4;
  letter-spacing:.005em;
}
.mindmap-foot i{
  font-size:13px;color:var(--sage);
  flex-shrink:0;
}

@media (prefers-reduced-motion:reduce){
  .mm-hub-ring{animation:none; opacity:.30; transform:translate(-50%,-50%) scale(1)}
  .mm-path{transition:none; stroke-dashoffset:0}
  .mm-pulse{animation:none !important; opacity:0 !important}
}

@media (max-width:900px){
  .mindmap{max-width:460px;padding:20px 20px 16px}
  .mindmap-title{font-size:16.5px}
}

@media (max-width:560px){
  .mindmap{max-width:100%;border-radius:16px;padding:20px 18px 16px}
  .mindmap-title{font-size:16px}
  .mm-node{padding:7px 10px 7px 8px;border-radius:10px;gap:8px}
  .mm-ico{width:24px;height:24px;font-size:13px;border-radius:6px}
  .mm-label{font-size:12px}
  .mm-hub{width:40px;height:40px}
  .mm-hub-core{font-size:20px}
  .mm-hub-ring-1{width:58px;height:58px}
  .mm-hub-ring-2{width:76px;height:76px}
}

/* Below 480px we keep the same horizontal mindmap shape (paths, nodes,
   hub all in their desktop positions) and only shrink sizes so it fits
   a phone canvas. Aspect-ratio stays 480/360 so the SVG paths and node
   anchors line up identically to desktop. */
@media (max-width:480px){
  .mindmap{padding:18px 14px 14px;border-radius:14px}
  .mindmap-head{padding:0 0 14px;gap:5px}
  .mindmap-eyebrow{font-size:9.5px;letter-spacing:.14em}
  .mindmap-title{font-size:14.5px;line-height:1.25}
  .mm-node{
    padding:5px 8px 5px 6px;
    border-radius:9px;
    gap:6px;
  }
  .mm-ico{
    width:20px;height:20px;
    border-radius:5px;
    font-size:11px;
  }
  .mm-label{
    font-size:10.5px;
    letter-spacing:-.012em;
    line-height:1.2;
  }
  .mm-hub{width:32px;height:32px}
  .mm-hub-core{font-size:15px}
  .mm-hub-ring-1{width:46px;height:46px}
  .mm-hub-ring-2{width:60px;height:60px}
  .mindmap-foot{
    font-size:10px;
    padding:12px 0 0;
    margin-top:6px;
    gap:8px;
  }
  .mindmap-foot i{font-size:11.5px}
}

/* Tighter still on the smallest phones (≤360px). Same layout, just
   shaved sizes so labels keep fitting on a single line. */
@media (max-width:360px){
  .mindmap{padding:16px 12px 12px;border-radius:12px}
  .mindmap-eyebrow{font-size:9px}
  .mindmap-title{font-size:13.5px}
  .mm-node{padding:4px 7px 4px 5px;gap:5px;border-radius:8px}
  .mm-ico{width:18px;height:18px;font-size:10px;border-radius:4px}
  .mm-label{font-size:10px}
  .mm-hub{width:28px;height:28px}
  .mm-hub-core{font-size:13px}
  .mm-hub-ring-1{width:40px;height:40px}
  .mm-hub-ring-2{width:54px;height:54px}
}

.feat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}

.feat{
  padding:26px 24px;
  border:1px solid var(--border);border-radius:16px;
  background:linear-gradient(165deg,#FFFFFF 0%,#F8F4EC 100%);
  box-shadow:0 1px 2px rgba(0,0,0,.02);
  position:relative;
  transition:border-color .25s ease,transform .3s cubic-bezier(.22,1,.36,1),box-shadow .25s ease;
}
.feat:hover{
  border-color:#d5d2cd;
  transform:translateY(-3px);
  box-shadow:0 1px 2px rgba(0,0,0,.02),0 16px 36px -8px rgba(26,26,26,.1);
}

.feat-ico{
  width:44px;height:44px;border-radius:12px;
  background:linear-gradient(135deg,var(--sage-bg) 0%,rgba(74,124,92,.22) 100%);
  color:var(--sage);
  display:flex;align-items:center;justify-content:center;
  font-size:20px;margin-bottom:16px;
  box-shadow:0 2px 8px rgba(74,124,92,.08);
  transition:transform .3s cubic-bezier(.22,1,.36,1);
}
.feat:hover .feat-ico{transform:scale(1.05)}
.feat h3{font-family:var(--font);font-size:15px;font-weight:600;color:var(--ink);margin-bottom:8px;letter-spacing:-.01em;line-height:1.3}
.feat p{font-size:14px;line-height:1.65;color:var(--body)}

.ai-demo{max-width:540px;margin:0 auto}
.ai-mock{
  display:flex;flex-direction:column;
  width:100%;
  height:clamp(460px,56vh,560px);
  border:1px solid rgba(0,0,0,.07);border-radius:16px;
  overflow:hidden;background:var(--white);
  box-shadow:0 1px 2px rgba(0,0,0,.03),0 12px 44px -8px rgba(0,0,0,.10);
  contain:layout paint;
}

.ai-head{
  display:flex;align-items:center;gap:8px;flex-shrink:0;
  height:52px;padding:0 20px;border-bottom:1px solid var(--border-light);
  font-size:13.5px;font-weight:600;color:var(--ink);
  background:#fafaf9;
}
.ai-head i{color:var(--sage);font-size:15px;line-height:1;display:flex;align-items:center}
.ai-new{
  margin-left:auto;font-size:11px;font-weight:500;color:#aaa;
  display:flex;align-items:center;gap:4px;
  padding:4px 10px;border-radius:6px;
  border:1px solid #eee;
  background:#fff;
  cursor:default;
}
.ai-new i{font-size:10px}

.ai-msgs{
  position:relative;flex:1;min-height:0;
  padding:20px 20px 16px;display:flex;flex-direction:column;gap:10px;
  overflow-y:auto;
  transition:opacity .5s ease;
  scrollbar-width:none;
  scroll-behavior:smooth;
}
.ai-msgs::-webkit-scrollbar{display:none}
.ai-msgs.fading{opacity:0}

.ai-empty{
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  flex:1;min-height:220px;text-align:center;
  opacity:0;transition:opacity .5s ease;
}
.ai-empty.show{opacity:1}
.ai-empty-icon{font-size:28px;color:#ccc;margin-bottom:14px;display:block;line-height:1}
.ai-empty-title{font-size:15.5px;color:#2a2a2a;margin-bottom:7px;font-family:'Fraunces',serif;font-weight:400;letter-spacing:-.01em}
.ai-empty-sub{font-size:12px;color:#b0b0b0;line-height:1.65;max-width:240px}

.ai-msg{
  max-width:82%;
  transition:opacity .35s ease,transform .35s ease;
}
.ai-msg.enter{opacity:0;transform:translateY(6px)}
.ai-msg.user{
  align-self:flex-end;
  padding:10px 15px;
  background:var(--sage);color:#fff;
  border-radius:18px 18px 4px 18px;
  font-size:13.5px;line-height:1.5;
  word-break:break-word;overflow-wrap:break-word;
}
.ai-msg.bot{align-self:flex-start;width:100%;max-width:100%}
.ai-msg.bot .ai-bubble{
  display:inline-block;max-width:90%;
  padding:10px 15px;
  background:#f3f3f0;color:#333;
  border-radius:4px 18px 18px 18px;
  font-size:13.5px;line-height:1.55;
  white-space:pre-line;
  word-break:break-word;
}

.ai-msg.typing-dots{
  align-self:flex-start;
  display:inline-flex;gap:4px;align-items:center;
  padding:12px 16px;
  background:#f3f3f0;border-radius:4px 18px 18px 18px;
}
.ai-msg.typing-dots span{
  width:5px;height:5px;border-radius:50%;
  background:#aaa;
  animation:dotPulse 1s ease-in-out infinite;
}
.ai-msg.typing-dots .dot-2{animation-delay:.2s}
.ai-msg.typing-dots .dot-3{animation-delay:.4s}
@keyframes dotPulse{
  0%,100%{opacity:.3}
  50%{opacity:1}
}

.ai-card{
  display:block;width:100%;max-width:340px;
  background:#fff;border:1px solid #e8e8e5;border-radius:14px;
  padding:14px 16px;margin-top:8px;
  box-shadow:0 1px 3px rgba(0,0,0,.03);
}
.ai-card-title{
  display:flex;align-items:center;gap:6px;
  font-size:12px;font-weight:600;color:#555;
  margin-bottom:6px;
}
.ai-card-title i{color:var(--sage);font-size:14px}
.ai-card-row{font-size:12px;color:#888;line-height:1.6;margin-top:1px}
.ai-card-btns{display:flex;gap:8px;margin-top:12px}
.ai-confirm{
  display:inline-flex;align-items:center;gap:5px;
  padding:7px 16px;border-radius:8px;
  background:var(--sage);color:#fff;
  font-size:12px;font-weight:600;border:none;
  transition:filter .15s ease;cursor:pointer;
}
.ai-confirm:hover{filter:brightness(1.1)}
.ai-confirm:active,.ai-confirm.pressed{filter:brightness(.92)}
.ai-cancel{
  display:inline-flex;align-items:center;
  padding:7px 14px;border-radius:8px;
  border:1px solid #e0e0dc;
  font-size:12px;font-weight:500;color:#aaa;
  background:#fff;cursor:pointer;
  transition:color .15s,border-color .15s,background .15s;
}
.ai-cancel:hover{background:#f8f8f6;color:#777;border-color:#ccc}

.ai-confirmed{
  display:inline-flex;align-items:center;gap:5px;
  font-size:12px;font-weight:600;color:var(--sage);
  padding:6px 0;
}
.ai-confirmed i{font-size:13px}

.ai-card.done{background:#f0f7f2;border-color:#cce5d4}
.ai-card.done .ai-card-title{color:var(--sage)}

.ai-input-bar{flex-shrink:0;padding:12px 16px 16px;border-top:1px solid #f0efed;background:#fafaf9}
.ai-input-inner{
  display:flex;align-items:center;gap:8px;
  background:#fff;border-radius:14px;
  padding:6px 6px 6px 16px;
  border:1px solid #e8e6e2;
  transition:border-color .2s, box-shadow .2s;
}
.ai-input-inner:hover{border-color:#d0cec9}
.ai-input-inner i{color:#c5c2bc;font-size:14px;flex-shrink:0}
.ai-input-text{
  flex:1;white-space:nowrap;overflow:hidden;
  font-size:13.5px;color:#bbb;padding:6px 0;
  min-height:18px;
  -webkit-mask-image:linear-gradient(to right,black 70%,transparent 100%);
  mask-image:linear-gradient(to right,black 70%,transparent 100%);
}
.ai-input-text.typing{color:var(--ink)}
.ai-input-inner.active{border-color:#b8c8be;box-shadow:0 0 0 3px rgba(61,90,71,.07)}
.ai-send{
  width:34px;height:34px;border-radius:10px;
  background:#e8e6e2;
  display:flex;align-items:center;justify-content:center;
  font-size:14px;flex-shrink:0;color:#aaa;
  transition:background .2s ease,color .2s ease,filter .15s ease;cursor:pointer;
  border:none;
}
.ai-send.dim{background:#e8e6e2;color:#bbb}
.ai-send.ready{
  background:var(--sage);color:#fff;
}
.ai-send.ready:hover{filter:brightness(1.1)}
.ai-send.ready:active{filter:brightness(.92)}

.steps{
  display:grid;grid-template-columns:1fr 1fr 1fr;
  position:relative;padding-top:0;
}
.steps::before{
  content:'';position:absolute;
  top:20px;left:0;right:0;height:1px;
  background:var(--border);
}

.step{
  display:flex;flex-direction:column;align-items:center;
  text-align:center;padding:0 32px;position:relative;
}

.step-connector{display:none}

.step-n{
  width:40px;height:40px;border-radius:10px;flex-shrink:0;
  background:var(--ink);color:var(--white);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--display);font-size:16px;font-weight:400;
  margin-bottom:24px;
  position:relative;z-index:1;
  box-shadow:0 2px 12px rgba(0,0,0,.15);
  transition:transform .3s cubic-bezier(.22,1,.36,1),box-shadow .3s ease;
}
.step:hover .step-n{
  transform:scale(1.06);
  box-shadow:0 4px 16px rgba(0,0,0,.2);
}
.step-body{width:100%}
.step h3{font-family:var(--font);font-size:16px;font-weight:600;color:var(--ink);margin-bottom:8px;letter-spacing:-.01em}
.step p{font-size:14px;color:var(--body);line-height:1.72}

.toggle-wrap{
  display:flex;align-items:center;justify-content:center;
  gap:14px;margin-bottom:40px;flex-wrap:wrap;
}
.t-lbl{
  font-size:14.5px;font-weight:500;color:var(--muted);
  background:transparent;border:0;padding:4px 2px;
  cursor:pointer;transition:color .2s ease;
  font-family:inherit;letter-spacing:.005em;
}
.t-lbl:hover{color:var(--ink)}
.t-lbl.on{color:var(--ink);font-weight:600}

.toggle{
  width:44px;height:24px;border-radius:12px;
  background:var(--border);position:relative;
  transition:background .25s ease;padding:0;border:0;cursor:pointer;
  flex-shrink:0;
}
.toggle.on{background:var(--sage)}
.toggle-dot{
  position:absolute;top:3px;left:3px;
  width:18px;height:18px;border-radius:50%;background:var(--white);
  transition:transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow:0 1px 3px rgba(0,0,0,.14);
}
.toggle.on .toggle-dot{transform:translateX(20px)}

.price-row{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-bottom:32px;align-items:stretch}

.price-card{
  padding:32px;border:1px solid var(--border);border-radius:20px;
  background:var(--white);
  display:flex;flex-direction:column;
  transition:transform .35s cubic-bezier(.22,1,.36,1),box-shadow .3s ease,border-color .25s ease;
}
.price-card .price-list{margin-top:auto}
.price-card:not(.coming-card):hover{
  transform:translateY(-3px);
}

.price-card-head{
  display:flex;align-items:flex-start;justify-content:space-between;
  gap:12px;margin-bottom:20px;
}

.price-tier{
  font-size:11px;font-weight:700;text-transform:uppercase;
  letter-spacing:.14em;margin-bottom:4px;color:var(--petal);
}
.price-who{font-size:13px;color:var(--muted);line-height:1.5}

.price-badge{
  flex-shrink:0;font-size:10px;font-weight:700;letter-spacing:.07em;text-transform:uppercase;
  color:rgba(255,255,255,.72);background:rgba(255,255,255,.1);
  padding:5px 11px;border-radius:20px;border:1px solid rgba(255,255,255,.16);
  white-space:nowrap;
}
.coming{
  flex-shrink:0;font-size:10px;font-weight:700;letter-spacing:.07em;text-transform:uppercase;
  color:var(--muted);background:var(--warm);
  padding:5px 11px;border-radius:20px;border:1px solid var(--border);
  white-space:nowrap;
}

.price-num{display:flex;align-items:baseline;gap:0;margin:20px 0 4px}
.cur{font-size:16px;font-weight:500;color:var(--ink);margin-right:2px;align-self:flex-start;margin-top:8px}
.big{font-family:var(--display);font-size:56px;font-weight:400;color:var(--ink);line-height:1}
.per{font-size:14px;color:var(--muted);margin-left:4px}
.price-sub{
  font-size:12px;color:var(--muted);margin-top:2px;margin-bottom:4px;
  font-weight:500;letter-spacing:.005em;
  transition:opacity .25s ease;
}
.price-alt{font-size:12px;color:var(--muted);margin-bottom:20px}

.price-cta{
  display:flex;align-items:center;justify-content:center;
  width:100%;height:48px;border-radius:10px;
  font-family:var(--font);
  font-size:15px;font-weight:600;line-height:1;letter-spacing:.01em;
  margin-bottom:20px;text-decoration:none;
}
.btn-coming{
  display:flex;align-items:center;justify-content:center;
  width:100%;height:48px;border-radius:10px;
  font-family:var(--font);
  font-size:15px;font-weight:500;line-height:1;letter-spacing:.01em;
  border:1.5px solid var(--border);color:var(--muted);
  background:var(--white);
  margin-bottom:20px;cursor:default;
  transition:border-color .2s ease,background .2s ease;
}
.btn-coming:hover{border-color:#d5d2cd}

.price-list{
  display:grid;grid-template-columns:1fr 1fr;gap:0 16px;
  padding-top:20px;border-top:1px solid var(--border-light);
}
.price-list li{
  display:flex;align-items:center;gap:9px;
  padding:5px 0;font-size:13px;color:var(--body);
}
.price-list i{font-size:12px;color:var(--sage);flex-shrink:0}

.price-card.main{
  background:var(--ink);border-color:var(--ink);
  box-shadow:
    0 8px 40px rgba(26,26,26,.22),
    0 2px 8px rgba(26,26,26,.1),
    0 0 0 8px rgba(74,124,92,.05),
    0 0 80px -10px rgba(74,124,92,.18);
  position:relative;
  z-index:1;
}
.price-card.main:hover{
  box-shadow:
    0 14px 56px rgba(26,26,26,.28),
    0 2px 8px rgba(26,26,26,.12),
    0 0 0 10px rgba(74,124,92,.06),
    0 0 100px -10px rgba(74,124,92,.25);
}
.price-card.main .price-recommend{
  position:absolute;top:-16px;left:50%;transform:translateX(-50%);
  display:inline-flex;align-items:center;gap:6px;
  padding:6px 14px;border-radius:20px;
  background:linear-gradient(135deg,var(--petal) 0%,var(--petal-warm) 100%);
  color:#fff;font-size:10.5px;font-weight:700;
  letter-spacing:.1em;text-transform:uppercase;
  box-shadow:0 4px 14px rgba(212,165,116,.35),0 1px 3px rgba(26,26,26,.1);
  z-index:3;
}
.price-card.main .price-recommend i{font-size:11px}
.price-card.main .price-tier{color:var(--petal)}
.price-card.main .price-who{color:rgba(255,255,255,.45)}
.price-card.main .price-num .cur{color:rgba(255,255,255,.9)}
.price-card.main .price-num .big{color:#fff}
.price-card.main .price-num .per{color:rgba(255,255,255,.4)}
.price-card.main .price-alt{color:rgba(255,255,255,.3)}
.price-card.main .price-sub{color:rgba(255,255,255,.4)}
.price-card.main .price-list{border-top-color:rgba(255,255,255,.08)}
.price-card.main .price-list li{color:rgba(255,255,255,.72)}
.price-card.main .price-list .ph-bold{color:var(--sage-text)}
.price-card.main .price-cta{background:var(--sage);color:#fff}

.price-card.coming-card{background:var(--cream);border-color:var(--border-light)}
.price-card.coming-card .price-tier{color:var(--faint)}
.price-card.coming-card .price-who{color:var(--faint)}
.price-card.coming-card .cur,
.price-card.coming-card .big,
.price-card.coming-card .per{color:var(--border)}
.price-card.coming-card .price-alt{color:var(--border)}
.price-card.coming-card .price-list{opacity:.4}
.price-list.single-col{grid-template-columns:1fr}

.price-foot{text-align:center;font-size:14px;color:var(--muted)}

.faq-list{max-width:none}

.faq-item{border-bottom:1px solid var(--border)}
.faq-item:first-child{border-top:1px solid var(--border)}

.faq-q{
  display:flex;align-items:flex-start;justify-content:space-between;
  width:100%;padding:18px 0;
  font-size:16px;font-weight:600;color:var(--ink);
  text-align:left;transition:color .2s;
  line-height:1.45;
}
.faq-q span{flex:1}
.faq-q:hover{color:var(--sage)}
.faq-q i{
  font-size:12px;color:var(--faint);flex-shrink:0;margin-left:20px;margin-top:2px;
  transition:transform .35s cubic-bezier(.4,0,.2,1),color .2s;
  width:28px;height:28px;border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  background:var(--warm);
}
.faq-q:hover i{color:var(--sage);background:var(--sage-bg)}
.faq-item.open .faq-q i{transform:rotate(180deg);color:var(--sage);background:var(--sage-bg)}

.faq-a{max-height:0;overflow:hidden;transition:max-height .4s cubic-bezier(.4,0,.2,1)}
.faq-a p{padding:0 0 20px;font-size:15px;line-height:1.7;color:var(--body)}

.cta-section{padding:72px 0 96px}

.cta-box{
  text-align:center;
  padding:72px 56px;
  border-radius:24px;
  background:linear-gradient(170deg,#222 0%,var(--ink) 50%,#1a2420 100%);
  color:var(--white);
  position:relative;overflow:hidden;
  box-shadow:
    0 12px 48px -12px rgba(26,26,26,.35),
    0 2px 8px rgba(26,26,26,.1),
    0 0 0 1px rgba(74,124,92,.08),
    0 0 120px -20px rgba(74,124,92,.3);
}
.cta-box::before{
  content:'';position:absolute;
  top:-30%;left:30%;width:50%;height:80%;
  background:radial-gradient(ellipse at center,rgba(74,124,92,.22) 0%,transparent 70%);
  pointer-events:none;
}
.cta-box::after{
  content:'';position:absolute;
  bottom:-20%;right:20%;width:40%;height:60%;
  background:radial-gradient(ellipse at center,rgba(212,165,116,.14) 0%,transparent 70%);
  pointer-events:none;
}
.cta-box h2{
  font-size:clamp(26px,3vw,40px);font-weight:400;
  color:var(--white);margin-bottom:14px;
  letter-spacing:-.035em;line-height:1.15;
  position:relative;
}
.cta-sub{
  font-size:16px;line-height:1.65;color:rgba(255,255,255,.55);
  max-width:520px;margin:0 auto 32px;
  position:relative;
}
.cta-box .btn-primary{position:relative;margin-bottom:18px}
.cta-note{font-size:13.5px;font-weight:500;color:rgba(255,255,255,.38);position:relative}

.foot{
  padding:80px 0 36px;
  border-top:1px solid var(--border);
  background:var(--warm);
  position:relative;
}

.foot-grid{
  display:grid;
  grid-template-columns:minmax(260px,360px) minmax(0,1fr);
  gap:64px 96px;
  margin-bottom:56px;
  align-items:start;
}

.foot-nav{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:48px;
}

.foot-brand{
  display:flex;flex-direction:column;align-items:flex-start;
  gap:20px;
}
.foot-brand .nav-logo{font-size:22px;letter-spacing:-.01em}
.foot-brand .nav-logo i{font-size:20px}
.foot-tagline{
  font-size:14px;line-height:1.7;color:var(--muted);
  max-width:320px;
  margin:0;
}

.foot-col{
  display:flex;flex-direction:column;
  min-width:0;
}
.foot-col-title{
  display:block;
  font-size:11px;font-weight:600;
  text-transform:uppercase;letter-spacing:.14em;
  color:var(--ink);
  line-height:1;
  margin:0 0 22px;
}
.foot-col a{
  font-size:14px;line-height:1.55;
  color:var(--muted);font-weight:400;
  padding:5px 0;
  transition:color .18s ease;
  width:fit-content;
}
.foot-col a + a{margin-top:2px}
.foot-col a:hover,
.foot-col a:focus-visible{color:var(--ink)}
.foot-col a:focus-visible{outline:none;text-decoration:underline;text-underline-offset:3px}

.foot-divider{
  height:1px;background:var(--border-light);
  margin:0 0 28px;
}

.foot-bottom{
  display:flex;align-items:center;justify-content:space-between;
  gap:20px;flex-wrap:wrap;
}
.foot-copy{
  display:inline-flex;align-items:center;gap:10px;
  font-size:12.5px;line-height:1.5;color:var(--muted);
  flex-wrap:wrap;
}
.foot-copy .foot-sep{color:var(--faint)}
.foot-bottom .foot-copy span{font-size:12.5px;color:var(--muted)}
.foot-bottom .lang-switch{border-left:0;padding-left:0;margin-left:0}

@media(max-width:900px){
  .foot{padding:64px 0 32px}
  .foot-grid{
    grid-template-columns:1fr;
    gap:44px;
    margin-bottom:44px;
  }
  .foot-brand{max-width:480px}
  .foot-brand .nav-logo{font-size:20px}
  .foot-tagline{max-width:440px}
  .foot-nav{gap:32px}
  .foot-col-title{margin-bottom:18px}
}

@media(max-width:600px){
  .foot{padding:56px 0 28px}

  .foot-grid{
    gap:36px;
    margin-bottom:36px;
  }

  .foot-brand{
    align-items:center;text-align:center;
    margin:0 auto;
    gap:14px;
  }
  .foot-brand .nav-logo{
    font-size:19px;letter-spacing:-.01em;
    gap:10px;
  }
  .foot-brand .nav-logo img{width:24px;height:24px}
  .foot-brand .nav-logo i{font-size:18px}
  .foot-tagline{
    display:block;
    font-size:13px;line-height:1.55;
    color:var(--muted);
    max-width:280px;
    margin:0 auto;
  }

  .foot-nav{
    grid-template-columns:1fr;
    gap:32px;
    margin:0;
    padding-top:36px;
    border-top:1px solid var(--border-light);
  }
  .foot-col{
    display:flex;flex-direction:column;
    align-items:center;text-align:center;
    padding:0;
    border-top:0;
    gap:14px;
  }
  .foot-col:first-child{padding-top:0}

  .foot-col-title{
    display:block;
    font-size:10px;font-weight:700;
    letter-spacing:.22em;text-transform:uppercase;
    color:var(--ink);
    line-height:1;
    margin:0;
    padding:0 0 12px;
    border:0;
    position:relative;
  }
  .foot-col-title::after{
    content:"";
    position:absolute;left:50%;bottom:0;
    transform:translateX(-50%);
    width:20px;height:1px;
    background:var(--border);
  }

  .foot-col a{
    display:block;
    font-size:14px;line-height:1.5;
    padding:6px 8px;
    color:var(--muted);
    width:auto;
    white-space:normal;
    transition:color .18s ease;
  }
  .foot-col a + a{margin-top:0}
  .foot-col a + a::before{display:none}
  .foot-col a:hover,
  .foot-col a:focus-visible{color:var(--ink)}
  .foot-col a[href="/verwerkersovereenkomst"]{font-size:14px}

  .foot-divider{margin:0 0 22px}
  .foot-bottom{
    flex-direction:column;align-items:center;
    gap:16px;text-align:center;
  }
  .foot-copy{
    font-size:11.5px;justify-content:center;gap:8px;
    letter-spacing:.01em;
  }
  .foot-copy .foot-sep{display:inline}

  .foot-bottom .lang-switch{
    background:rgba(26,26,26,.035);
    border:1px solid var(--border-light);
    border-radius:999px;
    padding:3px;
    gap:0;
  }
  .foot-bottom .lang-switch .lang-sep{display:none}
  .foot-bottom .lang-switch button,
  .foot-bottom .lang-switch a{
    padding:5px 14px;
    border-radius:999px;
    font-size:10.5px;font-weight:600;
    letter-spacing:.1em;
    color:var(--muted);
    background:transparent;
    border:0;
    cursor:pointer;
    transition:background .2s ease,color .2s ease;
  }
  .foot-bottom .lang-switch button.on,
  .foot-bottom .lang-switch a.on,
  .foot-bottom .lang-switch a[href="#"]{
    background:var(--ink);
    color:#fff;
  }
  .foot-bottom .lang-switch button:hover,
  .foot-bottom .lang-switch a:hover{color:var(--ink)}
  .foot-bottom .lang-switch button.on:hover,
  .foot-bottom .lang-switch a.on:hover,
  .foot-bottom .lang-switch a[href="#"]:hover{color:#fff}
}

@media(max-width:360px){
  .foot{padding:44px 0 24px}
  .foot-grid{gap:28px;margin-bottom:28px}
  .foot-tagline{font-size:12.5px;max-width:260px}
  .foot-nav{gap:26px;padding-top:28px}
  .foot-col{gap:12px}
  .foot-col a{font-size:13.5px;padding:5px 6px}
  .foot-col a[href="/verwerkersovereenkomst"]{font-size:13.5px}
}

@media(max-width:1100px){
  .container{padding:0 40px}
  .feat-grid{gap:14px}
  .showcase{gap:56px}
  .ap-side{width:170px}
}

@media(max-width:900px){
  .container{padding:0 32px}
  .nav-links,.nav-cta{display:none!important}
  .hamburger{display:flex!important}

  .hero{padding:48px 0 32px}
  .hero-content{margin-bottom:24px}
  .hero-mockup-wrap{padding:0 0 8px}
  .hero-mockup{
    -webkit-mask-image:linear-gradient(to bottom,#000 70%,transparent 98%);
    mask-image:linear-gradient(to bottom,#000 70%,transparent 98%);
    border-radius:4px;
  }
  .app-preview{height:700px}
  .hero-mockup-inner{
    width:1100px;
    transform-origin:top left;
    transform:scale(calc((100vw - 64px) / 1100px));
    margin-bottom:calc(750px * (100vw - 64px) / 1100px - 750px);
  }
  .hero-glow{display:none}
  .trust{padding-top:24px}

  .section{padding:72px 0}
  .section-head{margin-bottom:48px}

  .pain-split{gap:48px}
  .pain-text h2{font-size:30px}
  .pain-lede{font-size:17px;margin-bottom:24px}
  .pain-points li{padding:18px 0;gap:14px}
  .archetype-grid{gap:14px}

  .showcase{grid-template-columns:1fr;gap:32px;margin-bottom:56px}
  .showcase.reverse{direction:ltr}
  .showcase-visual{order:2}
  .showcase-text{order:1}

  .feat-grid{grid-template-columns:repeat(2,1fr);gap:10px}

  .price-row{grid-template-columns:1fr}

  .ai-demo{max-width:100%}
  .ai-mock{height:440px}

  .cta-box{padding:48px 36px}

}

@media(max-width:600px){
  .container{padding:0 20px}

  .nav .container{height:52px}
  .nav-logo{font-size:18px}
  .nav-logo i{font-size:16px}
  .mob-menu{top:52px;width:100%}

  .hero{padding:28px 0 24px}
  .hero-content h1{font-size:30px;letter-spacing:-.03em;line-height:1.1;margin-bottom:16px}
  .hero-badge{font-size:11px;padding:5px 12px;margin-bottom:16px}
  .hero-content{margin-bottom:20px}
  .hero-sub{font-size:15px;margin-bottom:22px;line-height:1.6}
  .hero-btns .btn-primary.lg{height:48px;padding:0 28px;font-size:15px;border-radius:10px}
  .hero-note{font-size:12px}

  .hero-mockup-inner{
    transform:scale(calc((100vw - 40px) / 1100px));
    margin-bottom:calc(750px * (100vw - 40px) / 1100px - 750px);
  }

  .section{padding:56px 0}
  .section-head{margin-bottom:36px}
  .section-head h2{font-size:26px;line-height:1.2}
  .section-sub{font-size:14.5px;margin-top:12px}
  .tag{font-size:10.5px;margin-bottom:14px}

  .pain-split{gap:48px}
  .pain-text h2{font-size:26px}
  .pain-lede{font-size:15.5px;margin-bottom:20px}
  .pain-points li{padding:16px 0;gap:12px;grid-template-columns:auto 1fr}
  .pain-points h3{font-size:13px}
  .pain-points p{font-size:13.5px;line-height:1.55}
  .pain-num{font-size:12.5px}

  /* Mobile chaos stage: same desktop composition but all 5 cards stay
     fully inside the stage bounds (no negative offsets) and the interior
     content scales down so each card stays legible at narrow widths. */
  .pain-stage{max-width:100%}
  .tc-calendly{top:1%;left:1%;width:44%;transform:rotate(-7deg);z-index:3}
  .tc-notion{top:6%;right:1%;width:43%;transform:rotate(5.5deg);z-index:5}
  .tc-stripe{bottom:2%;left:1%;width:44%;transform:rotate(3deg);z-index:4}
  .tc-zoom{bottom:6%;right:1%;width:42%;transform:rotate(-5deg);z-index:6}
  .tc-excel{top:33%;left:21%;width:50%;transform:rotate(-1.5deg);z-index:7}

  /* Scale down all card interior content so it doesn't overflow on mobile */
  .tab-card{font-size:9px}
  .tc-body{padding:8px 9px;gap:5px}
  .tc-body-calendly{padding:9px 10px 8px;gap:3px}
  .tc-cal-head{gap:7px;padding-bottom:6px;margin-bottom:2px}
  .tc-cal-datebox{padding:3px 6px 4px;min-width:26px}
  .tc-cal-day{font-size:6px;margin-bottom:1px}
  .tc-cal-date{font-size:11px}
  .tc-cal-eyebrow{font-size:8px}
  .tc-cal-tz{font-size:6.5px}
  .tc-slot{padding:4px 6px;font-size:8px;gap:6px}
  .tc-slot-time{font-size:8px;min-width:24px}
  .tc-slot-name{font-size:7.5px}
  .tc-slot-cta{font-size:7px;padding:3px 6px}
  .tc-avi{width:11px;height:11px;font-size:6.5px}

  .tc-body-notion{padding:9px 11px 8px;gap:3px}
  .tc-notion-crumbs{font-size:6.5px;margin-bottom:4px}
  .tc-notion-crumbs span{font-size:7px}
  .tc-notion-title{font-size:11px;margin-bottom:4px;gap:6px}
  .tc-notion-icon{font-size:11px}
  .tc-notion-callout{font-size:7.5px;padding:5px 7px}
  .tc-notion-callout-icon{font-size:9px}
  .tc-notion-h3{font-size:8.5px}
  .tc-notion-todo{font-size:7.5px;gap:6px}
  .tc-cb{width:9px;height:9px}

  .tc-stripe-accent{height:2px}
  .tc-stripe-tabs{font-size:7.5px;gap:9px;padding-bottom:5px}
  .tc-stat-label{font-size:6.5px}
  .tc-stat{font-size:16px;padding-bottom:5px;margin-bottom:3px}
  .tc-stat-cur{font-size:10px}
  .tc-stat-cents{font-size:9px}
  .tc-trend{font-size:7px;padding:2px 5px}
  .tc-pill{font-size:6.5px;padding:2px 6px}
  .tc-stripe .tc-name{font-size:7.5px}
  .tc-amt{font-size:7.5px}
  .tc-amt::before{font-size:7px}

  .tc-zoom-head{padding:5px 8px;gap:7px}
  .tc-zoom-title{font-size:7.5px;gap:5px}
  .tc-zoom-meta{font-size:6.5px}
  .tc-zoom-rec{font-size:6px;padding:2px 6px;gap:4px}
  .tc-live-dot{width:5px;height:5px}
  .tc-zoom-rec span{width:4px;height:4px}
  .tc-body-zoom{padding:7px}
  .tc-name-tag{font-size:7px;padding:3px 6px 3px 5px;bottom:5px;left:5px}
  .tc-name-tag i{font-size:8px}
  .tc-bar{padding:7px 6px 3px;gap:3px}
  .tc-bar-btn{width:18px;height:18px;font-size:8.5px}
  .tc-bar-btn.end{padding:0 8px;height:18px;font-size:7.5px;gap:3px;border-radius:9px}
  .tc-bar-btn.end i{font-size:8.5px}

  .tc-excel-titlebar{padding:4px 8px;gap:7px}
  .tc-excel-fname{font-size:7.5px}
  .tc-excel-autosave{font-size:6.5px;gap:5px}
  .tc-excel-autosave span{width:13px;height:7px}
  .tc-excel-autosave span::after{width:5px;height:5px;right:1px;top:1px}
  .tc-excel-formulabar{padding:2px 5px;gap:5px;font-size:7px}
  .tc-excel-namebox{min-width:22px;padding:1px 4px}
  .tc-excel-fcell{font-size:7px}
  .tc-excel-grid{font-size:7.5px}
  .tc-excel-grid > span{padding:3px 4px}
  .tc-col-h,.tc-row-h{font-size:6.5px}
  .tc-excel-sheettabs{font-size:7px;padding:3px 5px;gap:7px}

  .archetype-grid{grid-template-columns:1fr;gap:12px}
  .archetype-card{padding:26px 22px 24px;border-radius:14px;gap:10px}
  .archetype-icon{width:34px;height:34px;font-size:16px;border-radius:9px}
  .archetype-label{font-size:10.5px}
  .archetype-card h3{font-size:19px}
  .archetype-card p{font-size:14px;line-height:1.65}

  .showcase{margin-bottom:40px;gap:24px}
  .showcase-step{font-size:10px;margin-bottom:10px}
  .showcase-text h3{font-size:21px;margin-bottom:12px}
  .showcase-text p{font-size:14px;margin-bottom:18px;line-height:1.65}
  .showcase-checks{gap:10px}
  .showcase-checks li{font-size:13px;gap:8px}
  .showcase-checks i{font-size:12px}

  .mock-frame{border-radius:10px}
  .mock-bar{padding:7px 10px;gap:4px}
  .mock-dot{width:6px;height:6px}

  .feat-grid{grid-template-columns:1fr;gap:10px}
  .feat{padding:22px 20px;border-radius:12px}
  .feat-ico{width:38px;height:38px;font-size:17px;margin-bottom:12px;border-radius:10px}
  .feat h3{font-size:14.5px;margin-bottom:6px}
  .feat p{font-size:13.5px;line-height:1.6}

  .ai-mock{height:420px;border-radius:14px}
  .ai-head{height:48px;padding:0 16px;font-size:13px}
  .ai-head i{font-size:14px}
  .ai-msg.user,.ai-msg.bot .ai-bubble{font-size:12.5px}
  .ai-card{max-width:100%}

  .steps{grid-template-columns:1fr;padding-top:0;padding-left:0}
  .steps::before{display:none}
  .step{
    flex-direction:row;align-items:flex-start;text-align:left;
    gap:20px;padding:0 0 32px 0;
    position:relative;
  }
  .step:not(:last-child)::before{
    content:'';position:absolute;
    left:19.5px;top:40px;bottom:-8px;
    width:1px;background:var(--border);
  }
  .step:last-child{padding-bottom:0}
  .step-n{flex-shrink:0;margin-bottom:0;width:40px;height:40px;font-size:15px}
  .step h3{font-size:15px;margin-bottom:4px}
  .step p{font-size:13.5px}

  .price-row{grid-template-columns:1fr}
  .price-card{padding:24px;border-radius:16px}
  .price-card-head{margin-bottom:16px}
  .big{font-size:44px}
  .price-list{grid-template-columns:1fr}
  .price-list.single-col{grid-template-columns:1fr}
  .price-alt{font-size:12px;margin-bottom:18px}
  .price-cta{height:48px;font-size:15px;margin-bottom:20px}
  .btn-coming{height:48px;font-size:14.5px;margin-bottom:20px}
  .price-list{grid-template-columns:1fr}
  .price-list li{font-size:13px;padding:4px 0}
  .price-list i{font-size:11px}
  .price-foot{font-size:12.5px}

  .faq-q{font-size:14.5px;padding:16px 0}
  .faq-q i{width:24px;height:24px;border-radius:6px;font-size:10px;margin-left:14px}
  .faq-a p{font-size:13.5px;padding-bottom:16px;line-height:1.65}

  .cta-section{padding:0 0 56px}
  .cta-box{
    padding:0;border-radius:0;
    background:none;box-shadow:none;
  }
  .cta-box::before,.cta-box::after{display:none}
  .cta-box h2{font-size:24px;margin-bottom:10px;color:var(--ink)}
  .cta-sub{font-size:14px;color:var(--muted);margin-bottom:24px}
  .cta-box .btn-primary.lg{height:48px;font-size:15px;padding:0 28px;border-radius:10px}
  .cta-box .btn-primary.lg.light{background:var(--sage);color:var(--white);box-shadow:0 1px 2px rgba(74,124,92,.2)}

  .mi-stats{grid-template-columns:1fr}
  .mi-num{display:none}
}

@media(max-width:380px){
  .container{padding:0 16px}
  .hero-content h1{font-size:26px}
  .hero-sub{font-size:14px}
  .hero-btns .btn-primary.lg{height:48px;padding:0 24px;font-size:14.5px}
  .section{padding:48px 0}
  .section-head h2{font-size:23px}
  .section-head{margin-bottom:32px}
  .cta-box h2{font-size:23px}
  .price-card{padding:22px 18px}
  .big{font-size:38px}
}

/* ── SEO sub-page kit (minimal, flat) ───────────────────────────────
   Used by the footer content pages: coaching-software-nederland,
   praktijksoftware-coaches, about, security and their /en/ versions.
   Additive only — does not modify existing landing/pricing classes. */

.sp-hero{padding:52px 0 20px;text-align:center}
.sp-hero h1{
  font-family:var(--display);font-weight:400;
  font-size:clamp(32px,3.6vw,46px);line-height:1.1;letter-spacing:-.035em;
  color:var(--ink);max-width:880px;margin:0 auto 16px;
}
.sp-hero h1 em{font-style:italic;font-weight:400;color:var(--petal-warm)}
.sp-hero p{font-size:16.5px;line-height:1.7;color:var(--body);max-width:620px;margin:0 auto 24px}
.sp-hero .hero-btns-row{display:flex;align-items:center;justify-content:center;gap:14px;flex-wrap:wrap}
.sp-hero .hero-note{font-size:13px;font-weight:500;color:var(--muted)}

.sp-crumb{max-width:1180px;margin:0 auto;padding:24px 56px 0;font-size:13px;color:var(--muted)}
.sp-crumb a{color:var(--muted);transition:color .2s}
.sp-crumb a:hover{color:var(--ink)}
.sp-crumb .sep{margin:0 8px;color:var(--faint)}

.section-head.sp-left{text-align:left;margin-bottom:32px;max-width:720px;margin-left:auto;margin-right:auto}

.sp-prose{max-width:680px;margin:0 auto}
.sp-prose.left{margin-left:auto;margin-right:auto}
.sp-prose p{font-size:16px;line-height:1.75;color:var(--body);margin:0 0 16px}
.sp-prose p:last-child{margin-bottom:0}
.sp-prose strong{color:var(--ink)}
.sp-prose a{color:var(--sage);text-decoration:underline;text-underline-offset:2px}
.sp-prose a:hover{color:var(--sage-hover)}

.sp-list{max-width:720px;margin:0 auto;border-top:1px solid var(--border-light)}
.sp-list-row{
  display:grid;grid-template-columns:190px 1fr;gap:32px;
  padding:22px 2px;border-bottom:1px solid var(--border-light);
}
.sp-list-row b{font-size:15px;font-weight:600;color:var(--ink);letter-spacing:-.005em}
.sp-list-row p{margin:0;font-size:15px;line-height:1.65;color:var(--body)}
.sp-list-row p a{color:var(--sage);text-decoration:underline;text-underline-offset:2px}
@media(max-width:640px){.sp-list-row{grid-template-columns:1fr;gap:6px}}

.sp-cols{
  max-width:880px;margin:0 auto;display:grid;grid-template-columns:repeat(3,1fr);
  gap:1px;background:var(--border-light);border:1px solid var(--border-light);border-radius:12px;overflow:hidden;
}
.sp-cols.two{grid-template-columns:repeat(2,1fr)}
.sp-col{background:var(--white);padding:24px 22px}
.sp-col b{display:block;font-size:15px;font-weight:600;color:var(--ink);margin-bottom:6px}
.sp-col p{margin:0;font-size:14px;line-height:1.6;color:var(--body)}
@media(max-width:720px){.sp-cols,.sp-cols.two{grid-template-columns:1fr}}

.sp-callout{
  max-width:680px;margin:0 auto;background:var(--cream);
  border:1px solid var(--border-light);border-left:2px solid var(--sage);
  border-radius:10px;padding:20px 24px;
}
.sp-callout p{margin:0;font-size:15px;line-height:1.65;color:var(--ink-soft)}
.sp-callout strong{color:var(--ink)}
.sp-callout a{color:var(--sage);text-decoration:underline;text-underline-offset:2px}

.sp-links{max-width:880px;margin:0 auto;display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.sp-links a{
  display:block;padding:20px 22px;text-decoration:none;background:var(--white);
  border:1px solid var(--border-light);border-radius:12px;transition:border-color .2s ease;
}
.sp-links a:hover{border-color:var(--border)}
.sp-links .cl-tag{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.12em;color:var(--sage);display:block;margin-bottom:8px}
.sp-links .cl-title{font-family:var(--display);font-size:18px;color:var(--ink);display:block;margin-bottom:5px}
.sp-links .cl-desc{font-size:13px;color:var(--body);line-height:1.5}
@media(max-width:720px){.sp-links{grid-template-columns:1fr}}

/* Page-scoped spacing — the shared .section rhythm (96px) is built for the
   dense landing page; these sparse content pages need it tighter. Scoped to
   <body class="sp-page"> so the landing and pricing pages are untouched. */
.sp-page .section{padding:54px 0}
.sp-page .sp-hero + .section{padding-top:36px}
.sp-page .section-head{margin-bottom:30px}
.sp-page .section-head.sp-left{margin-bottom:26px}
.sp-page .cta-section{padding:64px 0}
@media(max-width:640px){
  .sp-page .section{padding:40px 0}
  .sp-page .sp-hero{padding:32px 0 16px}
  .sp-crumb{padding:18px 24px 0}
}

/* ── SEO sub-page kit — Hybrid visual upgrade ───────────────────────
   Two-column hero, CSS-composed visuals, stat band, faux-UI primitives.
   Every selector scoped under .sp-page so landing/pricing are untouched.
   Additive only — does not modify the flat kit above. */

/* Section divider hairline — slightly stronger than the default faint line */
.sp-page .section + .section{border-top:1px solid var(--border-light)}

/* Two-column hero: left text (left-aligned), right visual slot */
.sp-page .sp-hero-split{
  display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;
  max-width:1180px;margin:0 auto;padding:0 56px;text-align:left;
  position:relative;
  background:linear-gradient(160deg,var(--sage-bg) 0%,var(--cream) 55%,var(--white) 100%);
}
.sp-page .sp-hero-split > .sp-hero-text{max-width:none}
.sp-page .sp-hero-split h1{margin:0 0 16px;max-width:none}
.sp-page .sp-hero-split p{margin:0 0 24px;max-width:520px}
.sp-page .sp-hero-split .hero-btns-row{justify-content:flex-start}
.sp-page .sp-hero-split .sp-hero-visual{min-width:0}
@media(max-width:860px){
  .sp-page .sp-hero-split{
    grid-template-columns:1fr;gap:36px;padding:0 24px;
  }
  .sp-page .sp-hero-split .sp-hero-visual{order:2}
}

/* Clean card / browser frame — the ONLY component carrying depth */
.sp-page .sp-frame{
  background:var(--white);border:1px solid var(--border-light);
  border-radius:14px;overflow:hidden;
  box-shadow:0 1px 2px rgba(0,0,0,.03),0 18px 40px -16px rgba(26,26,26,.12);
}

/* Browser variant — frame plus a top chrome bar */
.sp-page .sp-browser-bar{
  display:flex;align-items:center;gap:12px;height:38px;padding:0 14px;
  background:var(--cream);border-bottom:1px solid var(--border-light);
}
.sp-page .sp-browser-dots{display:flex;align-items:center;gap:6px}
.sp-page .sp-browser-dots span{
  width:8px;height:8px;border-radius:50%;background:var(--faint);
}
.sp-page .sp-browser-dots span:nth-child(2){background:var(--muted)}
.sp-page .sp-browser-url{
  font-size:12px;color:var(--muted);background:var(--white);
  border:1px solid var(--border-light);border-radius:999px;
  padding:3px 12px;line-height:1.4;
}

/* Content-section split — text + visual in two columns */
.sp-page .sp-split{
  display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center;
}
.sp-page .sp-split.reverse .sp-split-visual{order:-1}
@media(max-width:860px){
  .sp-page .sp-split,
  .sp-page .sp-split.reverse{grid-template-columns:1fr;gap:32px}
  .sp-page .sp-split.reverse .sp-split-visual{order:0}
  .sp-page .sp-split .sp-split-visual{order:2}
}

/* Horizontal stat band — 3 to 5 short facts with hairline dividers */
.sp-page .sp-stats{
  display:flex;justify-content:center;flex-wrap:wrap;
  max-width:1000px;margin:0 auto;
}
.sp-page .sp-stat{
  position:relative;flex:1;min-width:160px;
  padding:6px 32px;text-align:center;
}
.sp-page .sp-stat + .sp-stat::before{
  content:"";position:absolute;left:0;top:50%;transform:translateY(-50%);
  width:1px;height:38px;background:var(--border-light);
}
.sp-page .sp-stat-value{
  font-family:var(--display);font-weight:400;font-size:24px;
  line-height:1.2;color:var(--ink);
}
.sp-page .sp-stat-label{
  font-size:11.5px;text-transform:uppercase;letter-spacing:.1em;
  color:var(--muted);margin-top:6px;
}
@media(max-width:640px){
  .sp-page .sp-stats{gap:24px 0}
  .sp-page .sp-stat{flex:0 0 50%;min-width:0;padding:6px 16px}
  .sp-page .sp-stat + .sp-stat::before{display:none}
}

/* Faux-UI primitives — compose product fragments inside .sp-frame */
.sp-page .sp-ui{padding:20px 22px}
.sp-page .sp-ui-row{
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  font-size:14px;padding:11px 0;border-bottom:1px solid var(--border-light);
}
.sp-page .sp-ui-row:last-child{border-bottom:0}
.sp-page .sp-ui-row .sp-ui-row-label{color:var(--body)}
.sp-page .sp-ui-row .sp-ui-row-value{color:var(--ink);font-weight:600}
.sp-page .sp-ui-chip{
  display:inline-flex;align-items:center;gap:6px;
  font-size:12.5px;line-height:1;color:var(--ink-soft);
  background:var(--cream);border:1px solid var(--border-light);
  border-radius:999px;padding:6px 11px;
}
.sp-page .sp-ui-chip i{color:var(--muted);font-size:14px}
.sp-page .sp-ui-card{
  background:var(--white);border:1px solid var(--border-light);
  border-radius:10px;padding:14px;
}
.sp-page .sp-ui-card .sp-ui-card-value{
  font-family:var(--display);font-weight:400;font-size:20px;
  line-height:1.2;color:var(--ink);
}
.sp-page .sp-ui-card .sp-ui-card-label{
  font-size:12px;color:var(--muted);margin-top:4px;
}
.sp-page .sp-ui-bar{
  height:4px;border-radius:999px;background:var(--sage);
}
.sp-page .sp-ui-bar.track{background:var(--border-light)}

/* Mobile polish for sp-page — bring hero/buttons/card sizing in line with the main landing's mobile rhythm */
@media(max-width:720px){
  .sp-page .sp-hero{padding:32px 0 12px}
  .sp-page .sp-hero h1{font-size:clamp(26px,7.4vw,34px);line-height:1.12;letter-spacing:-.03em}
  .sp-page .sp-hero h1 br{display:none}
  .sp-page .sp-hero p{font-size:15.5px;line-height:1.65;margin:0 0 20px}
  .sp-page .sp-hero-split{gap:28px;padding:0 20px}
  .sp-page .sp-hero-split p{max-width:none}
  .sp-page .sp-hero .hero-btns-row{gap:10px}
  .sp-page .sp-hero .hero-btns-row .btn-primary.lg{height:50px;padding:0 22px;font-size:14.5px;border-radius:10px}
  .sp-page .sp-hero .hero-note{font-size:12.5px}
  .sp-page .sp-hero-visual,
  .sp-page .sp-frame{max-width:100%;min-width:0}
  .sp-page .sp-ui{padding:16px 18px}
  .sp-page .sp-ui-row{font-size:13.5px;gap:12px;padding:9px 0}
  .sp-page .sp-crumb{font-size:12.5px;padding:14px 20px 0}
  .sp-page .sp-crumb .sep{margin:0 6px}
  .sp-page .section-head h2{font-size:24px;line-height:1.18}
  .sp-page .section-head .section-sub{font-size:15px;line-height:1.65}
  .sp-page .sp-prose p{font-size:15px;line-height:1.7}
  .sp-page .sp-list-row b{font-size:14.5px}
  .sp-page .sp-list-row p{font-size:14.5px;line-height:1.6}
  .sp-page .sp-col{padding:18px 16px}
  .sp-page .sp-col b{font-size:14.5px}
  .sp-page .sp-col p{font-size:13.5px}
  .sp-page .sp-callout{padding:16px 18px}
  .sp-page .sp-callout p{font-size:14.5px}
  .sp-page .sp-links a{padding:16px 18px}
  .sp-page .sp-links .cl-title{font-size:16.5px}
}

@media(max-width:480px){
  .sp-page .sp-hero{padding:24px 0 8px}
  .sp-page .sp-hero h1{font-size:clamp(24px,8.2vw,30px)}
  .sp-page .sp-hero p{font-size:15px}
  .sp-page .sp-hero-split{gap:24px;padding:0 18px}
  .sp-page .sp-hero .hero-btns-row .btn-primary.lg{width:100%;justify-content:center}
  .sp-page .sp-ui{padding:14px 16px}
  .sp-page .sp-ui-row{font-size:13px}
  .sp-page .sp-ui-row .sp-ui-row-value{white-space:nowrap}
  .sp-page .sp-crumb{padding:12px 18px 0;font-size:12px}
  .sp-page .section-head h2{font-size:22px}
  .sp-page .sp-callout{padding:14px 16px}
}
