:root{
  --ivory:#fbf8f3;
  --cream:#f4eadc;
  --cream-2:#fff7ea;
  --gold:#c79a4f;
  --gold-soft:#e9c98a;
  --espresso:#2d231d;
  --coffee:#3c2b22;
  --warm-brown:#7a5736;
  --muted:#76685b;
  --card:#fffdf8;
  --line:rgba(70,48,32,.10);
  --shadow:0 28px 90px rgba(45,35,29,.16);
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--espresso);
  background:#fefcf8;
  overflow-x:hidden;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  display:block;
  max-width:100%;
}

.page{
  width:100%;
  overflow:hidden;
}

/* NAVBAR */

.site-header{
  position:fixed;
  top:0;
  left:0;
  z-index:9999;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  padding:18px 64px;
  border-radius:0;
  background:rgba(255,255,255,0.04);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:none;
  transition:background .35s ease, backdrop-filter .35s ease, border .35s ease, box-shadow .35s ease, padding .35s ease;
}

.site-header.is-scrolled{
  background:rgba(45,35,29,.80);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 14px 44px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.04);
}

.brand img{
  height:46px;
  width:auto;
}

.nav-menu{
  display:flex;
  align-items:center;
  gap:26px;
}

.nav-menu a{
  font-size:14px;
  font-weight:800;
  color:rgba(255,255,255,.80);
  transition:.2s;
}

.nav-menu a:hover,
.site-header.is-scrolled .nav-menu a:hover{
  color:#fff;
}

.site-header.is-scrolled .nav-menu a{
  color:rgba(255,248,240,.82);
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  font-size:14px;
  font-weight:900;
  white-space:nowrap;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border .2s ease;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn-ghost{
  padding:12px 18px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  color:white;
}

.btn-ghost.light{
  background:#fff;
  color:var(--espresso);
  border:1px solid rgba(255,255,255,.42);
}

.site-header.is-scrolled .btn-ghost{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:#fff7ef;
}

.btn-dark{
  padding:13px 22px;
  background:linear-gradient(135deg, var(--espresso), #563b2a);
  color:#fff;
  box-shadow:0 14px 32px rgba(45,35,29,.24);
}

.btn-outline{
  padding:13px 20px;
  color:var(--coffee);
  background:#fffaf2;
  border:1px solid rgba(122,87,54,.18);
}

/* HERO */

.hero{
  width:100%;
  padding:0;
}

.hero-slider{
  width:100vw;
  height:100vh;
  margin:0 auto;
  position:relative;
  overflow:hidden;
  border-radius:0;
  background:#111;
  box-shadow:none;
}

.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  pointer-events:none;
  transition:opacity .7s ease;
}

.hero-slide.is-active{
  opacity:1;
  pointer-events:auto;
}

.hero-slide picture,
.hero-image{
  width:100%;
  height:100%;
}

.hero-slide picture{
  display:block;
}

.hero-image{
  object-fit:cover;
  object-position:center top;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(14,9,7,.88) 0%, rgba(14,9,7,.62) 32%, rgba(14,9,7,.08) 68%, rgba(14,9,7,.12) 100%);
  pointer-events:none;
}

.hero-content{
  position:absolute;
  z-index:5;
  top:50%;
  left:clamp(32px, 8vw, 128px);
  width:min(510px, 42vw);
  transform:translateY(-50%);
  color:#fffaf2;
}

.hero-kicker{
  display:block;
  margin-bottom:18px;
  color:var(--gold-soft);
  font-size:14px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.hero-content h1{
  margin-bottom:20px;
  color:#fffaf2;
  font-size:clamp(44px, 4.7vw, 78px);
  line-height:1.02;
  letter-spacing:-.045em;
}

.hero-content > p:not(.hero-branding){
  max-width:470px;
  margin-bottom:28px;
  color:rgba(255,250,242,.82);
  font-size:19px;
  line-height:1.65;
}

.hero-cta{
  display:inline-flex;
  align-items:center;
  gap:14px;
  padding:14px 19px;
  border:1px solid rgba(233,201,138,.55);
  border-radius:999px;
  background:rgba(199,154,79,.18);
  color:#fffaf2;
  font-size:16px;
  font-weight:900;
  transition:background .2s ease, transform .2s ease;
}

.hero-cta:hover{
  background:rgba(199,154,79,.32);
  transform:translateY(-2px);
}

.hero-branding{
  margin-top:26px;
  color:rgba(255,250,242,.54);
  font-size:13px;
  letter-spacing:.08em;
}

.hero-branding span{
  color:var(--gold-soft);
  font-weight:950;
}

.hero-capabilities{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:10px;
  max-width:500px;
}

.hero-capabilities a{
  display:flex;
  align-items:center;
  gap:10px;
  min-height:54px;
  padding:10px 12px;
  border:1px solid rgba(255,250,242,.18);
  border-radius:12px;
  background:rgba(45,35,29,.34);
  color:rgba(255,250,242,.9);
  font-size:13px;
  line-height:1.3;
  transition:border-color .2s ease, background .2s ease;
}

.hero-capabilities a:hover{
  border-color:rgba(233,201,138,.62);
  background:rgba(199,154,79,.18);
}

.capability-icon{
  display:grid;
  flex:0 0 auto;
  width:26px;
  height:26px;
  place-items:center;
  border:1px solid rgba(233,201,138,.65);
  border-radius:50%;
  color:var(--gold-soft);
  font-size:13px;
  font-weight:900;
}

.hero-trust-list{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px 20px;
  max-width:430px;
  list-style:none;
  color:rgba(255,250,242,.86);
  font-size:14px;
}

.hero-trust-list li::before{
  content:"";
  display:inline-block;
  width:7px;
  height:7px;
  margin:0 10px 1px 0;
  border-radius:50%;
  background:var(--gold-soft);
  box-shadow:0 0 0 4px rgba(233,201,138,.14);
}

.security-heading span{
  display:block;
}

.security-cta{
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin-top:26px;
  border-bottom:1px solid rgba(233,201,138,.55);
  color:var(--gold-soft);
  font-size:15px;
  font-weight:750;
  line-height:1.5;
  text-decoration:none;
  transition:border-color .2s ease, color .2s ease, transform .2s ease;
}

.security-cta:hover,
.security-cta:focus-visible{
  border-color:var(--gold-soft);
  color:#fffaf2;
  transform:translateX(2px);
}

.security-cta:focus-visible{
  outline:2px solid var(--gold-soft);
  outline-offset:5px;
}

@media (min-width:901px){
  .hero-slide:nth-of-type(1) .hero-kicker{
    font-size:18px;
  }

  .hero-slide:nth-of-type(1) .hero-content h1{
    font-size:clamp(48px, calc(4.7vw + 4px), 82px);
  }

  .hero-slide:nth-of-type(1) .hero-content > p:not(.hero-branding){
    font-size:23px;
  }

  .hero-slide:nth-of-type(1) .hero-cta{
    font-size:20px;
  }

  .hero-slide:nth-of-type(1) .hero-branding{
    font-size:17px;
  }

  .hero-slide:nth-of-type(2) .hero-kicker,
  .hero-slide:nth-of-type(3) .hero-kicker,
  .hero-slide:nth-of-type(4) .hero-kicker{
    font-size:20px;
  }

  .hero-slide:nth-of-type(2) .hero-content h1,
  .hero-slide:nth-of-type(3) .hero-content h1,
  .hero-slide:nth-of-type(4) .hero-content h1{
    font-size:clamp(50px, calc(4.7vw + 6px), 84px);
  }

  .hero-slide:nth-of-type(3) .hero-content{
    width:min(680px, 52vw);
  }

  .hero-slide:nth-of-type(3) .hero-content h1{
    text-wrap:balance;
  }

  .hero-slide:nth-of-type(3) .hero-content > p:not(.hero-branding),
  .hero-slide:nth-of-type(3) .hero-trust-list{
    max-width:600px;
  }

  .hero-slide:nth-of-type(2) .hero-content > p:not(.hero-branding),
  .hero-slide:nth-of-type(3) .hero-content > p:not(.hero-branding),
  .hero-slide:nth-of-type(4) .hero-content > p:not(.hero-branding){
    font-size:25px;
  }

  .hero-slide:nth-of-type(2) .hero-capabilities a{
    font-size:19px;
  }

  .hero-slide:nth-of-type(3) .hero-trust-list{
    font-size:20px;
  }

  .hero-slide:nth-of-type(5) .hero-kicker{
    font-size:22px;
  }

  .hero-slide:nth-of-type(5) .hero-content h1{
    font-size:clamp(52px, calc(4.7vw + 8px), 86px);
  }

  .hero-slide:nth-of-type(5) .hero-content > p:not(.hero-branding){
    font-size:27px;
  }
}

/* LEGACY FLOATING CARD STYLES */

.wa-card{
  position:absolute;
  top:120px;
  right:90px;
  width:340px;
  padding:16px;
  border-radius:28px;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:0 20px 60px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.5);
  z-index:30;
  animation:waFloat 5.5s ease-in-out infinite;
}

.wa-sales{ top:120px; right:90px; }
.wa-stock{ top:150px; right:170px; }

.wa-head{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-bottom:12px;
}

.wa-profile{
  width:38px;
  height:38px;
  border-radius:50%;
  object-fit:cover;
  flex:0 0 auto;
}

.wa-user{
  display:flex;
  flex-direction:column;
}

.wa-user strong{
  font-size:15px;
  font-weight:900;
  color:#3c2b22;
  line-height:1.1;
}

.wa-user span{
  font-size:11px;
  color:#94887d;
  margin-top:2px;
}

.wa-meta{
  margin-left:auto;
  padding-right:28px;
}

.wa-meta small{
  font-size:10px;
  color:#9b938c;
}

.wa-icon-img{
  position:absolute;
  top:-10px;
  right:-10px;
  width:42px;
  height:42px;
  object-fit:contain;
  filter:drop-shadow(0 10px 20px rgba(37,211,102,.35)) drop-shadow(0 4px 10px rgba(0,0,0,.18));
  z-index:10;
}

.wa-chat{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.wa-chat p{
  padding:10px 12px;
  border-radius:15px;
  background:#f7f3ed;
  color:#4e4035;
  font-size:12px;
  line-height:1.45;
}

@keyframes waFloat{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-12px); }
}

/* HERO CONTROLS */

.hero-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:58px;
  height:58px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.18);
  color:#fff;
  font-size:40px;
  cursor:pointer;
  z-index:20;
  backdrop-filter:blur(8px);
}

.hero-prev{ left:28px; }
.hero-next{ right:28px; }

.hero-dots{
  position:absolute;
  left:50%;
  bottom:24px;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:20;
}

.hero-dots button{
  width:10px;
  height:10px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.45);
  cursor:pointer;
}

.hero-dots button.is-active{
  background:var(--gold);
}

/* SECTIONS */

.section{
  width:min(1200px, calc(100vw - 80px));
  margin:0 auto;
  padding:14px 0;
}

.section + .section{
  border-top:1px solid rgba(70,48,32,.055);
}

.section-copy{
  max-width:600px;
}

.eyebrow{
  margin-bottom:16px;
  color:var(--gold);
  font-size:13px;
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
}

h1{
  font-size:72px;
  line-height:1;
  letter-spacing:-.06em;
  margin-bottom:24px;
}

h2{
  font-size:56px;
  line-height:1.04;
  letter-spacing:-.05em;
  margin-bottom:22px;
}

h3{
  font-size:24px;
  line-height:1.2;
  margin-bottom:12px;
}

.lead{
  max-width:860px;
  font-size:19px;
  line-height:1.75;
  color:var(--muted);
}

.pill{
  display:inline-flex;
  width:max-content;
  padding:9px 12px;
  margin-bottom:18px;
  border-radius:999px;
  background:rgba(199,154,79,.14);
  color:#8a612e;
  font-size:12px;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.gold-text{
  color:var(--gold);
}

/* PAIN SECTION */

.pain-section{
  width:min(1200px, calc(100vw - 80px));
  margin:0 auto;
  padding:104px 0;
}

.pain-heading{
  max-width:930px;
  margin:0 auto 56px;
  text-align:center;
}

.pain-heading .pill{
  margin-left:auto;
  margin-right:auto;
}

.pain-heading .lead{
  margin:0 auto;
}

.pain-grid{
  width:100%;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:38px 34px;
  align-items:start;
}

.pain-card{
  width:100%;
  background:transparent;
  border:none;
  box-shadow:none;
  overflow:visible;
}

.pain-card img{
  width:100%;
  height:340px;
  object-fit:cover;
  object-position:center;
  border-radius:28px;
  box-shadow:0 18px 44px rgba(45,35,29,.10);
}

.pain-content{
  padding:18px 4px 0;
}

.pain-number{
  display:block;
  margin-bottom:7px;
  color:var(--gold);
  font-size:13px;
  font-weight:950;
  letter-spacing:.08em;
}

.pain-content h3{
  font-size:24px;
  line-height:1.2;
  margin-bottom:10px;
  color:var(--coffee);
}

.pain-content p{
  font-size:17px;
  line-height:1.7;
  color:var(--coffee);
}

.pain-content .pain-intelligence{
  margin-bottom:10px;
  color:var(--gold);
  font-size:13px;
  font-weight:900;
  line-height:1.45;
}

.pain-content strong{
  color:var(--coffee);
}

/* =========================
   FEATURE SECTION
========================= */

.feature-section{
  display:flex;
  flex-direction:column;
  gap:34px;
  padding-top:64;
}

.feature-heading{
  max-width:920px;
  margin:0 auto;
  text-align:center;
}

.feature-heading .pill,
.feature-heading .lead{
  margin-left:auto;
  margin-right:auto;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:26px;
}

.feature-card{
  overflow:hidden;
  border-radius:36px;
  background:#fffdf8;
  border:1px solid rgba(70,48,32,.08);
  box-shadow:0 20px 55px rgba(45,35,29,.08);
}

.feature-card img{
  width:120%;
  height:310px;
  object-fit:contain;
  object-position:center;
}

.feature-content{
  padding:28px;
}

.feature-number{
  display:block;
  margin-bottom:12px;
  color:var(--gold);
  font-size:15px;
  font-weight:950;
  letter-spacing:.08em;
}

.feature-content h3{
  font-size:32px;
  line-height:1.15;
  margin-bottom:12px;
}

.feature-content p{
  font-size:16px;
  line-height:1.7;
  color:var(--coffee);
  margin-bottom:18px;
}

.feature-link{
  display:inline-flex;
  color:var(--gold);
  font-size:14px;
  font-weight:900;
  transition:.2s ease;
}

.feature-link:hover{
  transform:translateX(4px);
  color:var(--warm-brown);
}

@media (max-width:900px){
  .feature-grid{
    grid-template-columns:1fr;
  }

  .feature-card img{
    height:260px;
  }
}

.ecosystem-section{
  display:flex;
  flex-direction:column;
  gap:42px;
}

.ecosystem-heading{
  max-width:980px;
  margin:0 auto;
  text-align:center;
}

.ecosystem-heading .lead{
  max-width:640px;
  margin:0 auto;
}

.ecosystem-visual{
  width:100%;
  overflow:hidden;
  border-radius:34px;
  box-shadow:0 22px 70px rgba(45,35,29,.12);
}

.ecosystem-visual img{
  width:100%;
  height:680px;
  object-fit:cover;
  object-position:center;
}

.ecosystem-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:20px;
}

.ecosystem-grid .info-card{
  padding:28px;
}

.ecosystem-grid .info-card h3{
  font-size:22px;
}

@media (max-width:1100px){
  .ecosystem-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .ecosystem-visual img{
    height:420px;
  }
}

@media (max-width:700px){
  .ecosystem-grid{
    grid-template-columns:1fr;
  }

  .ecosystem-visual img{
    height:300px;
  }
}

/* =========================
   DEMO CHAT SECTION
========================= */

.demo-chat-section{
  padding-top:120px;
}

.demo-chat-layout{
  display:grid;
  grid-template-columns: 1fr 470px;
  gap:72px;
  align-items:center;
}

.demo-chat-copy h2{
  font-size:64px;
  line-height:1.02;
  letter-spacing:-0.05em;
  margin-bottom:28px;
}

.demo-desc{
  font-size:22px;
  line-height:1.8;
  color:#6f6258;
  max-width:620px;
  margin-bottom:42px;
}

.demo-points{
  display:flex;
  flex-direction:column;
  gap:26px;
  margin-bottom:42px;
}

.demo-point{
  display:flex;
  align-items:flex-start;
  gap:18px;
}

.point-icon{
  width:56px;
  height:56px;
  border-radius:50%;
  background:#f7efe6;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  flex-shrink:0;
}

.demo-point strong{
  display:block;
  font-size:20px;
  margin-bottom:6px;
}

.demo-point span{
  color:#7b6f66;
  line-height:1.7;
}

.demo-buttons{
  display:flex;
  gap:18px;
  margin-bottom:28px;
}

.btn-primary{
  background:#1d140f;
  color:white;
  padding:18px 30px;
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
}

.btn-secondary{
  border:1px solid #d9c7b6;
  color:#2b211c;
  padding:18px 30px;
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
}

.demo-security{
  color:#85776d;
  font-size:15px;
}

/* =========================
   PHONE
========================= */

.phone-wrapper{
  display:flex;
  flex-direction:column;
  align-items:center;
}

.phone-frame{
  width:430px;
  height:760px;
  background:#f8f4ef;
  border-radius:42px;
  overflow:hidden;
  border:10px solid #f4ede6;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.08);
  display:flex;
  flex-direction:column;
}

/* TOP BAR */

.phone-topbar{
  height:86px;
  background:white;
  border-bottom:1px solid #eee5dc;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 22px;
}

.phone-left{
  display:flex;
  align-items:center;
  gap:14px;
}

.back-btn{
  font-size:38px;
  line-height:1;
  color:#362922;
}

.profile-img{
  width:48px;
  height:48px;
  border-radius:50%;
  object-fit:cover;
}

.phone-user strong{
  display:block;
  font-size:20px;
}

.phone-user span{
  font-size:13px;
  color:#7b6f66;
}

.phone-actions{
  font-size:28px;
  color:#4d4038;
}

/* CHAT BODY */

.chat-body{
  flex:1;
  padding:26px 18px;
  overflow:auto;
  display:flex;
  flex-direction:column;
  gap:18px;

  background:
    #f8f3ec;
}

/* MESSAGE */

.message-row{
  display:flex;
  width:100%;
}

.message-row.indah{
  justify-content:flex-start;
}

.message-row.user{
  justify-content:flex-end;
}

.message{
  max-width:78%;
  padding:16px 18px;
  border-radius:22px;
  font-size:17px;
  line-height:1.7;
  position:relative;

  animation:fadeUp .35s ease;
}

.message.indah{
  background:white;
  border-top-left-radius:8px;
  color:#2f241e;
}

.message.user{
  background:#d8f8c7;
  border-top-right-radius:8px;
  color:#1f2a1f;
}

.message.file-message{
  max-width:92%;
  padding:10px;
  background:white;
  border-top-left-radius:8px;
  color:#2f241e;
}

.file-card{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
  padding:10px;
  border:1px solid #eadfd4;
  border-radius:16px;
  background:#fffdfb;
  box-shadow:0 3px 12px rgba(65,45,32,.06);
}

.file-icon{
  width:40px;
  height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  position:relative;
  border-radius:7px;
  background:#208b4a;
  color:white;
  font-size:8px;
  font-weight:800;
  letter-spacing:.03em;
  box-shadow:inset 0 -7px 0 rgba(0,0,0,.08);
}

.file-icon::before{
  content:"";
  position:absolute;
  top:0;
  right:0;
  border-top:10px solid #a9dfba;
  border-left:10px solid transparent;
}

.file-details{
  flex:1;
  min-width:0;
}

.file-details strong,
.file-details span{
  display:block;
}

.file-details strong{
  overflow-wrap:anywhere;
  font-size:14px;
  line-height:1.3;
}

.file-details span{
  margin-top:4px;
  color:#9d8e83;
  font-size:12px;
}

.file-download{
  width:32px;
  height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  padding:0;
  border:0;
  border-radius:50%;
  background:#f1e7dc;
  color:#5f4637;
  font-size:20px;
  line-height:1;
}

.file-message .message-time{
  margin-top:5px;
  padding-right:2px;
  font-size:11px;
}

.message-time{
  font-size:12px;
  color:#9d8e83;
  margin-top:8px;
  text-align:right;
}

.typing{
  width:84px;
  height:44px;
  border-radius:18px;
  background:white;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}

.typing span{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#8f8177;
  animation:blink 1.4s infinite;
}

.typing span:nth-child(2){
  animation-delay:.2s;
}

.typing span:nth-child(3){
  animation-delay:.4s;
}

/* INPUT */

.chat-input{
  height:82px;
  background:white;
  border-top:1px solid #eee3d9;
  padding:14px 16px;
}

.fake-input{
  height:52px;
  background:#f7f3ef;
  border-radius:999px;
  display:flex;
  align-items:center;
  padding:0 22px;
  color:#998d84;
}

.demo-running{
  margin-top:18px;
  color:#9d8f85;
  font-size:14px;
}

/* ANIMATION */

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(12px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes blink{
  0%,80%,100%{
    opacity:.3;
  }
  40%{
    opacity:1;
  }
}

/* MOBILE */

@media(max-width:980px){

  .demo-chat-layout{
    grid-template-columns:1fr;
  }

  .demo-chat-copy h2{
    font-size:48px;
  }

  .phone-frame{
    width:100%;
    max-width:430px;
  }

}

/* CARD GRID */

.card-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px;
  margin-top:48px;
}

.info-card{
  padding:34px;
  border-radius:32px;
  background:var(--card);
  border:1px solid var(--line);
  box-shadow:0 14px 40px rgba(45,35,29,.06);
}

.info-card:nth-child(even){
  background:#fff8ee;
}

.info-card span{
  display:inline-flex;
  width:44px;
  height:44px;
  border-radius:14px;
  align-items:center;
  justify-content:center;
  background:#f5ead7;
  color:var(--gold);
  font-weight:900;
  margin-bottom:18px;
}

.info-card small{
  display:block;
  margin-bottom:10px;
  color:var(--gold);
  font-size:12px;
  font-weight:950;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.info-card p{
  color:var(--muted);
  line-height:1.7;
}

/* BEHIND / HOW */

.behind{
  width:100%;
  max-width:none;
  padding:112px max(40px, calc((100vw - 1200px) / 2));
  background:linear-gradient(135deg, #33241b, #5a3c27 58%, #8b6537);
  color:#effff8;
}

.behind .eyebrow{
  color:var(--gold-soft);
}

.behind .lead{
  color:rgba(255,248,239,.76);
}

.behind-layout{
  display:grid;
  grid-template-columns:1fr 460px;
  gap:54px;
  align-items:center;
}

.logic-panel{
  display:grid;
  gap:14px;
}

.logic-item{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:18px 20px;
  border-radius:24px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(12px);
}

.logic-item strong{
  color:#fff;
  min-width:72px;
}

.logic-item span{
  color:rgba(255,248,239,.72);
  line-height:1.45;
}

/* DEMO WA */

.demo-section{
  display:grid;
  grid-template-columns:1fr 440px;
  gap:54px;
  align-items:center;
}

.demo-wa{
  padding:28px;
  border-radius:36px;
  background:#f7f3ec;
  border:1px solid rgba(70,48,32,.08);
  box-shadow:var(--shadow);
}

.demo-wa .wa-head{
  align-items:center;
}

.wa-top-icon{
  margin-left:auto;
  width:34px;
  height:34px;
}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}

.cta-row.center{
  justify-content:center;
}

/* PRICING / CLOSING */

.pricing{
  display:grid;
  grid-template-columns:1fr 390px;
  gap:56px;
  align-items:center;
}

.pricing-card{
  padding:34px;
  border-radius:36px;
  background:linear-gradient(180deg, #fffdf8, #f5ead9);
  border:1px solid rgba(122,87,54,.12);
  box-shadow:0 24px 70px rgba(45,35,29,.10);
}

.pricing-card p{
  color:var(--muted);
  line-height:1.7;
  margin-bottom:22px;
}

.pricing-card ul{
  list-style:none;
  display:grid;
  gap:12px;
  margin:0 0 26px;
}

.pricing-card li{
  position:relative;
  padding-left:26px;
  color:var(--coffee);
  font-weight:750;
}

.pricing-card li::before{
  content:"";
  position:absolute;
  left:0;
  top:.52em;
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--gold);
  box-shadow:0 0 0 5px rgba(199,154,79,.16);
}

.closing{
  text-align:center;
  padding-bottom:140px;
  background:radial-gradient(circle at center top, rgba(233,201,138,.20), transparent 46%);
}

.closing .lead{
  margin:0 auto;
}

/* FOOTER */

.site-footer{
  position:relative;
  overflow:hidden;
  padding:88px max(40px, calc((100vw - 1200px) / 2)) 28px;
  color:#f7efe6;
  background:
    radial-gradient(circle at 82% 12%, rgba(199,154,79,.16), transparent 28%),
    linear-gradient(135deg, #1d140f 0%, #2b1c14 58%, #120d0a 100%);
}

.site-footer::after{
  content:"";
  position:absolute;
  left:8%;
  right:8%;
  bottom:86px;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(231,189,115,.28) 24%, rgba(231,189,115,.46) 50%, rgba(231,189,115,.28) 76%, transparent);
  box-shadow:0 0 12px rgba(231,189,115,.20);
  opacity:.7;
  pointer-events:none;
}

.footer-main,
.footer-bottom{
  position:relative;
  z-index:1;
}

.footer-main{
  display:grid;
  grid-template-columns:minmax(250px, 1.7fr) repeat(4, minmax(130px, 1fr));
  gap:42px;
  padding-bottom:72px;
}

.footer-brand{
  max-width:330px;
}

.footer-logo{
  display:inline-flex;
  margin-bottom:20px;
}

.footer-logo img{
  width:126px;
  height:auto;
}

.footer-tagline{
  margin:0 0 16px;
  color:#e7bd73;
  font-size:15px;
  font-weight:700;
  letter-spacing:.04em;
}

.footer-brand p:not(.footer-tagline){
  margin:0;
  color:rgba(247,239,230,.68);
  font-size:14px;
  line-height:1.75;
}

.footer-brand-line{
  display:block;
  margin-top:22px;
  color:rgba(231,189,115,.78);
  font-size:12px;
  font-style:italic;
}

.footer-column{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:11px;
}

.footer-column h2{
  margin:0 0 9px;
  color:#f3cc87;
  font-size:14px;
  line-height:1.2;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.footer-column a{
  color:rgba(247,239,230,.68);
  font-size:13px;
  line-height:1.4;
  text-decoration:none;
  transition:color .2s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible{
  color:#f3cc87;
}

.footer-column a:focus-visible,
.footer-socials a:focus-visible{
  outline:2px solid #e7bd73;
  outline-offset:4px;
}

.footer-bottom{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:24px;
  padding-top:24px;
  border-top:1px solid rgba(231,189,115,.28);
  color:rgba(247,239,230,.52);
  font-size:11px;
  line-height:1.5;
}

.footer-motto{
  color:rgba(247,239,230,.68);
  text-align:center;
  white-space:nowrap;
}

.footer-motto b{
  margin:0 8px;
  color:rgba(231,189,115,.62);
  font-weight:400;
}

.footer-meta{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:18px;
}

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

.footer-socials a{
  display:grid;
  width:28px;
  height:28px;
  place-items:center;
  border:1px solid rgba(231,189,115,.32);
  border-radius:50%;
  color:#e7bd73;
  transition:background .2s ease, border-color .2s ease;
}

.footer-socials a:hover{
  border-color:#e7bd73;
  background:rgba(231,189,115,.12);
}

.footer-socials svg{
  width:14px;
  height:14px;
  fill:none;
  stroke:currentColor;
  stroke-linecap:round;
  stroke-linejoin:round;
  stroke-width:1.7;
}

.footer-language{
  color:#f3cc87;
}

/* RESPONSIVE */

@media (max-width:1180px){
  .site-header{
    padding:16px 28px;
  }

  .nav-menu{
    gap:18px;
  }

  .nav-menu a{
    font-size:13px;
  }
}

@media (max-width:1100px){
  .hero-slider{
    height:620px;
  }

  .wa-card{
    width:320px;
    right:36px;
    top:90px;
  }

  h1{
    font-size:58px;
  }

  h2{
    font-size:46px;
  }

  .pricing,
  .behind-layout,
  .demo-section{
    grid-template-columns:1fr;
  }

  .footer-main{
    grid-template-columns:1.5fr repeat(2, 1fr);
  }

  .footer-brand{
    grid-row:span 2;
  }
}

@media (max-width:900px){
  .site-header{
    width:calc(100vw - 20px);
    left:10px;
    top:10px;
    padding:14px 16px;
    border-radius:22px;
  }

  .nav-menu{
    display:none;
  }

  .brand img{
    height:40px;
  }

  .nav-actions{
    margin-left:auto;
  }

  .nav-actions .btn-ghost{
    display:none;
  }

  .hero-slider{
    width:100vw;
    height:clamp(440px, 56vh, 560px);
    border-radius:0;
  }

  .hero-overlay{
    background:linear-gradient(180deg, rgba(14,9,7,.08) 18%, rgba(14,9,7,.18) 35%, rgba(14,9,7,.9) 100%);
  }

  .hero-content{
    top:90px;
    bottom:auto;
    left:20px;
    width:calc(100% - 40px);
    transform:none;
  }

  .hero-kicker{
    margin-bottom:10px;
    font-size:14px;
  }

  .hero-content h1{
    margin-bottom:12px;
    font-size:clamp(36px, calc(9vw + 4px), 50px);
  }

  .hero-content > p:not(.hero-branding){
    margin-bottom:17px;
    font-size:18px;
    line-height:1.45;
  }

  .hero-cta{
    padding:12px 15px;
    font-size:16px;
  }

  .hero-branding{
    margin-top:15px;
    font-size:13px;
  }

  .hero-capabilities,
  .hero-trust-list{
    gap:7px;
  }

  .hero-capabilities a{
    min-height:45px;
    padding:8px 9px;
    font-size:15px;
  }

  .capability-icon{
    width:22px;
    height:22px;
    font-size:11px;
  }

  .hero-trust-list{
    font-size:16px;
  }

  .hero-arrow{
    top:auto;
    bottom:18px;
    width:34px;
    height:34px;
    font-size:24px;
    transform:none;
  }

  .hero-prev{
    left:calc(50% - 104px);
  }

  .hero-next{
    right:calc(50% - 104px);
  }

  .hero-dots{
    bottom:29px;
  }

  .hero-slide:first-child .hero-kicker{
    font-size:12px;
  }

  .hero-slide:first-child .hero-content h1{
    font-size:clamp(34px, calc(9vw + 2px), 48px);
  }

  .hero-slide:first-child .hero-content > p:not(.hero-branding){
    font-size:16px;
  }

  .hero-slide:first-child .hero-cta{
    font-size:14px;
  }

  .hero-slide:first-child .hero-branding{
    font-size:11px;
  }

  .wa-card{
    width:280px;
    right:20px;
    top:70px;
    padding:16px;
  }

  .wa-stock{
    right:20px;
    top:88px;
  }

  .wa-chat p{
    font-size:13px;
  }

  .section,
  .pain-section{
    width:calc(100vw - 32px);
    padding:64px 0;
  }

  .behind{
    width:100%;
    padding:78px 16px;
  }

  .card-grid,
  .pain-grid{
    grid-template-columns:1fr;
  }

  .pain-card img{
    height:240px;
  }

  h1{
    font-size:46px;
  }

  h2{
    font-size:38px;
  }

  .lead{
    font-size:17px;
  }

  .pricing-card,
  .info-card,
  .demo-wa{
    border-radius:26px;
    padding:26px;
  }
}

@media (max-width:520px){
  .site-header{
    gap:12px;
  }

  .btn-dark{
    padding:12px 16px;
    font-size:13px;
  }

  .hero-slider{
    height:clamp(430px, 56vh, 500px);
  }

  .wa-card{
    width:250px;
    right:14px;
  }

  h1{
    font-size:39px;
  }

  h2{
    font-size:34px;
  }

  .logic-item{
    flex-direction:column;
    gap:6px;
  }

  .pain-card img{
    height:210px;
  }

  .site-footer{
    padding:64px 24px 24px;
  }

  .site-footer::after{
    left:12%;
    right:12%;
    bottom:114px;
    opacity:.5;
    box-shadow:0 0 8px rgba(231,189,115,.14);
  }

  .footer-main{
    grid-template-columns:1fr 1fr;
    gap:38px 24px;
    padding-bottom:50px;
  }

  .footer-brand{
    grid-column:1 / -1;
    grid-row:auto;
    max-width:360px;
  }

  .footer-bottom{
    grid-template-columns:1fr;
    justify-items:start;
    gap:18px;
  }

  .footer-motto{
    order:3;
    white-space:normal;
    text-align:left;
  }

  .footer-meta{
    justify-content:flex-start;
  }

  .footer-motto b{
    margin:0 5px;
  }
}

/* ABOUT PAGE */

.about-page{
  background:var(--ivory);
}

.about-page .site-header .nav-menu a.is-current{
  color:var(--gold-soft);
}

.about-hero{
  position:relative;
  overflow:hidden;
  display:flex;
  min-height:78vh;
  align-items:center;
  padding:148px max(40px, calc((100vw - 1200px) / 2)) 92px;
  color:#fffaf2;
  background:
    radial-gradient(circle at 78% 28%, rgba(199,154,79,.19), transparent 28%),
    linear-gradient(135deg, #1d140f 0%, #33231a 58%, #120d0a 100%);
}

.about-hero::after{
  content:"";
  position:absolute;
  right:8%;
  bottom:0;
  width:48%;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(231,201,138,.5), transparent);
  box-shadow:0 0 20px rgba(231,201,138,.18);
}

.about-hero-inner{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(340px, 1fr);
  gap:80px;
  align-items:center;
}

.about-hero-copy{
  max-width:700px;
}

.about-eyebrow{
  margin-bottom:20px;
  color:var(--gold-soft);
  font-size:12px;
  font-weight:900;
  letter-spacing:.18em;
  line-height:1.4;
}

.about-hero h1{
  max-width:680px;
  color:#fffaf2;
  font-size:clamp(46px, 4.7vw, 70px);
  line-height:1.02;
  letter-spacing:-.045em;
  text-wrap:balance;
}

.about-hero-subtitle{
  max-width:620px;
  margin-top:28px;
  color:#f3d59b;
  font-size:clamp(22px, 2.4vw, 34px);
  line-height:1.2;
  letter-spacing:-.02em;
  text-wrap:balance;
}

.about-hero-body{
  max-width:650px;
  margin-top:24px;
  color:rgba(255,250,242,.72);
  font-size:18px;
  line-height:1.75;
}

.about-pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:32px;
}

.about-pills span{
  padding:9px 14px;
  border:1px solid rgba(231,201,138,.35);
  border-radius:999px;
  background:rgba(255,250,242,.06);
  color:#f8dfae;
  font-size:12px;
  font-weight:800;
  letter-spacing:.04em;
}

.about-hero-visual{
  position:relative;
  width:min(680px, 56vw);
  margin:0 -20px 0 auto;
  margin-left:auto;
  isolation:isolate;
  background:transparent;
}

.about-hero-visual img{
  position:relative;
  z-index:0;
  width:100%;
  aspect-ratio:4 / 3;
  object-fit:cover;
  object-position:center 8%;
  -webkit-mask-image:linear-gradient(90deg, transparent 0%, rgba(0,0,0,.18) 12%, rgba(0,0,0,.72) 28%, #000 42%, #000 82%, rgba(0,0,0,.75) 94%, transparent 100%), linear-gradient(180deg, transparent 0%, #000 9%, #000 86%, rgba(0,0,0,.7) 95%, transparent 100%);
  -webkit-mask-composite:source-in;
  mask-image:linear-gradient(90deg, transparent 0%, rgba(0,0,0,.18) 12%, rgba(0,0,0,.72) 28%, #000 42%, #000 82%, rgba(0,0,0,.75) 94%, transparent 100%), linear-gradient(180deg, transparent 0%, #000 9%, #000 86%, rgba(0,0,0,.7) 95%, transparent 100%);
  mask-composite:intersect;
}

.about-hero-visual::after{
  content:"";
  position:absolute;
  z-index:1;
  inset:0;
  pointer-events:none;
  background:linear-gradient(90deg, rgba(29,20,15,.58), rgba(29,20,15,.12) 30%, transparent 48%, transparent 78%, rgba(29,20,15,.12));
  mix-blend-mode:multiply;
}

.about-questions{
  padding:120px max(40px, calc((100vw - 1040px) / 2));
  background:var(--ivory);
}

.about-section-heading{
  max-width:760px;
  margin-bottom:54px;
}

.about-section-heading h2{
  max-width:700px;
  margin-bottom:20px;
  color:var(--espresso);
  font-size:clamp(38px, 4vw, 58px);
  line-height:1.05;
  letter-spacing:-.04em;
  text-wrap:balance;
}

.about-section-heading > p:last-child{
  max-width:650px;
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
}

.about-faq{
  display:grid;
  gap:14px;
}

.about-faq-item{
  border:1px solid rgba(70,48,32,.12);
  border-radius:18px;
  background:rgba(255,255,255,.62);
  box-shadow:0 12px 34px rgba(45,35,29,.04);
  transition:border-color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.about-faq-item:hover{
  border-color:rgba(199,154,79,.38);
  background:#fffaf2;
}

.about-faq-item[open]{
  border-color:rgba(199,154,79,.55);
  background:#fffdf8;
  box-shadow:0 18px 46px rgba(45,35,29,.08);
}

.about-faq-item summary{
  display:grid;
  grid-template-columns:42px minmax(0, 1fr) 28px;
  gap:16px;
  align-items:center;
  padding:20px 24px;
  cursor:pointer;
  list-style:none;
}

.about-faq-item summary::-webkit-details-marker{display:none;}

.about-faq-item summary:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:4px;
}

.about-faq-item summary > span{
  width:42px;
  color:var(--gold);
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
}

.about-faq-item summary strong{
  min-width:0;
  color:var(--espresso);
  font-size:clamp(18px, 1.85vw, 26px);
  font-weight:750;
  line-height:1.3;
}

.about-faq-item summary b{
  width:28px;
  color:var(--gold);
  font-size:25px;
  font-weight:400;
  text-align:center;
  transition:transform .25s ease;
}

.about-faq-item[open] summary b{transform:rotate(45deg);}

.about-answer{
  max-width:780px;
  padding:0 64px 24px 82px;
  color:var(--muted);
  font-size:16px;
  line-height:1.7;
}

.about-answer p + p{margin-top:16px;}

.about-answer blockquote,
.about-micro-statement{
  margin-top:24px;
  padding:18px 20px;
  border-left:3px solid var(--gold);
  background:linear-gradient(90deg, rgba(199,154,79,.15), rgba(199,154,79,.04));
  color:var(--coffee);
  font-size:17px;
  font-weight:800;
  line-height:1.5;
}

.about-badge{
  display:inline-flex;
  margin-top:24px;
  padding:10px 14px;
  border:1px solid rgba(199,154,79,.45);
  border-radius:10px;
  background:#fff8ec;
  color:var(--warm-brown);
  font-size:14px;
  font-weight:900;
  letter-spacing:.08em;
}

.about-security-link{
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin-top:24px;
  color:var(--warm-brown);
  font-size:14px;
  font-weight:850;
  text-decoration:none;
  transition:color .2s ease, transform .2s ease;
}

.about-security-link:hover,
.about-security-link:focus-visible{
  color:var(--gold);
  transform:translateX(2px);
}

.about-security-link:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:5px;
}

.about-closing{
  padding:116px max(40px, calc((100vw - 1040px) / 2));
  background:
    radial-gradient(circle at 50% 0, rgba(199,154,79,.17), transparent 42%),
    linear-gradient(145deg, #33241b, #20150f);
  color:#fffaf2;
  text-align:center;
}

.about-closing-inner{max-width:850px;margin:0 auto;}

.about-closing h2{
  margin-bottom:22px;
  color:#fffaf2;
  font-size:clamp(36px, 4.4vw, 62px);
  line-height:1.06;
  letter-spacing:-.04em;
  text-wrap:balance;
}

.about-closing-inner > p:not(.about-eyebrow){
  max-width:650px;
  margin:0 auto;
  color:rgba(255,250,242,.72);
  font-size:18px;
  line-height:1.7;
}

.about-closing-actions{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
  margin-top:32px;
}

.about-btn-light{
  padding:12px 18px;
  border:1px solid rgba(255,255,255,.30);
  background:rgba(255,255,255,.08);
  color:#fffaf2;
}

.about-btn-light:hover,
.about-btn-light:focus-visible{
  background:rgba(255,255,255,.16);
}

@media (max-width:900px){
  .about-hero-inner{grid-template-columns:1fr;gap:56px;}
  .about-hero{min-height:auto;}
  .about-hero-visual{width:min(520px, 100%);margin:0 auto;}
  .about-hero-visual img{
    -webkit-mask-image:linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%), linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image:linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%), linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  }
}

@media (max-width:520px){
  .about-hero{padding:128px 24px 68px;}
  .about-hero h1{font-size:42px;}
  .about-hero-subtitle{font-size:24px;}
  .about-hero-body{font-size:16px;}
  .about-hero-visual{display:none;}
  .about-questions{padding:78px 24px;}
  .about-section-heading{margin-bottom:34px;}
  .about-section-heading h2{font-size:35px;}
  .about-section-heading > p:last-child{font-size:16px;}
  .about-faq-item summary{grid-template-columns:30px 1fr 22px;gap:12px;padding:20px 18px;}
  .about-faq-item summary strong{font-size:18px;}
  .about-answer{padding:0 18px 24px 60px;font-size:15px;}
  .about-answer blockquote,.about-micro-statement{font-size:15px;padding:15px;}
  .about-closing{padding:78px 24px;}
  .about-closing h2{font-size:36px;}
  .about-closing-inner > p:not(.about-eyebrow){font-size:16px;}
  .about-closing-actions{flex-direction:column;align-items:stretch;}
}

/* INTELLIGENCE PAGE */

.intelligence-page{background:var(--ivory);}
.intelligence-page .site-header .nav-menu a.is-current{color:var(--gold-soft);}
.intel-eyebrow{margin-bottom:18px;color:var(--gold);font-size:12px;font-weight:900;letter-spacing:.17em;line-height:1.4;}
.intel-hero{display:grid;grid-template-columns:minmax(0,1fr) minmax(470px,1fr);gap:48px;align-items:center;min-height:78vh;padding:150px max(40px,calc((100vw - 1200px)/2)) 88px;color:#fffaf2;background:radial-gradient(circle at 78% 30%,rgba(199,154,79,.18),transparent 28%),linear-gradient(135deg,#1d140f,#33231a 58%,#120d0a);}
.intel-hero-copy{max-width:700px;}
.intel-hero h1{max-width:680px;font-size:clamp(46px,5vw,74px);line-height:1.02;letter-spacing:-.045em;text-wrap:balance;}
.intel-subtitle{max-width:650px;margin-top:26px;color:#f3d59b;font-size:clamp(21px,2.3vw,31px);line-height:1.25;text-wrap:balance;}
.intel-body{max-width:650px;margin-top:22px;color:rgba(255,250,242,.72);font-size:18px;line-height:1.75;}
.intel-principle{display:flex;flex-wrap:wrap;align-items:baseline;gap:16px;margin-top:30px;}
.intel-principle strong{color:#f3cc87;font-size:18px;}
.intel-principle span{color:rgba(255,250,242,.55);font-size:13px;font-style:italic;}
.intel-hero-visual{position:relative;align-self:start;width:min(720px,58vw);margin:20px -24px 0 auto;isolation:isolate;}
.intel-hero-visual img{position:relative;z-index:0;width:100%;aspect-ratio:3 / 2;object-fit:cover;object-position:center;-webkit-mask-image:linear-gradient(90deg,transparent 0%,rgba(0,0,0,.45) 8%,#000 22%,#000 82%,rgba(0,0,0,.72) 94%,transparent 100%),linear-gradient(180deg,transparent 0%,#000 8%,#000 90%,transparent 100%);-webkit-mask-composite:source-in;mask-image:linear-gradient(90deg,transparent 0%,rgba(0,0,0,.45) 8%,#000 22%,#000 82%,rgba(0,0,0,.72) 94%,transparent 100%),linear-gradient(180deg,transparent 0%,#000 8%,#000 90%,transparent 100%);mask-composite:intersect;}
.intel-hero-visual::after{content:"";position:absolute;z-index:1;inset:8% 0;pointer-events:none;background:linear-gradient(90deg,rgba(29,20,15,.32),transparent 25%,transparent 78%,rgba(29,20,15,.15));mix-blend-mode:multiply;}
.intel-map{position:relative;width:min(500px,100%);aspect-ratio:1;margin-left:auto;border:1px solid rgba(231,201,138,.16);border-radius:50%;background:radial-gradient(circle,rgba(231,201,138,.1),transparent 58%);box-shadow:inset 0 0 70px rgba(231,201,138,.05);}
.intel-map-core,.converge-center{position:absolute;top:50%;left:50%;z-index:2;display:grid;width:116px;height:116px;place-items:center;border:1px solid rgba(231,201,138,.7);border-radius:50%;background:#2b1c14;box-shadow:0 0 32px rgba(231,201,138,.2);color:#f3cc87;font-size:15px;font-weight:900;letter-spacing:.14em;transform:translate(-50%,-50%);}
.intel-node{position:absolute;z-index:3;padding:8px 11px;border:1px solid rgba(231,201,138,.35);border-radius:999px;background:rgba(29,20,15,.78);color:#f8dfae;font-size:11px;font-weight:750;white-space:nowrap;}
.intel-node-one{top:10%;left:28%;}.intel-node-two{top:27%;right:-2%;}.intel-node-three{right:-7%;bottom:25%;}.intel-node-four{bottom:7%;left:26%;}.intel-node-five{bottom:27%;left:-8%;}
.intel-line{position:absolute;z-index:1;top:50%;left:50%;width:43%;height:1px;transform-origin:left center;background:linear-gradient(90deg,rgba(231,201,138,.55),transparent);box-shadow:0 0 9px rgba(231,201,138,.2);}
.intel-line-one{transform:rotate(-128deg);}.intel-line-two{transform:rotate(-42deg);}.intel-line-three{transform:rotate(35deg);}.intel-line-four{transform:rotate(112deg);}.intel-line-five{transform:rotate(178deg);}
.intel-core-section,.intel-verticals{padding:116px max(40px,calc((100vw - 1120px)/2));background:var(--ivory);}
.intel-section-heading{max-width:760px;margin-bottom:52px;}
.intel-section-heading h2{max-width:760px;margin-bottom:18px;color:var(--espresso);font-size:clamp(38px,4vw,58px);line-height:1.05;letter-spacing:-.04em;text-wrap:balance;}
.intel-section-heading>p:not(.intel-eyebrow){max-width:700px;color:var(--muted);font-size:18px;line-height:1.7;}
.intel-card-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;}
.intel-card{padding:28px;border:1px solid rgba(70,48,32,.1);border-radius:20px;background:#fffdf8;box-shadow:0 14px 36px rgba(45,35,29,.05);}
.intel-card-wide{grid-column:1/-1;background:linear-gradient(135deg,#fffdf8,#f5eadb);}
.intel-card>span{display:inline-flex;margin-bottom:15px;color:var(--gold);font-size:11px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;}
.intel-card h3{margin-bottom:12px;color:var(--espresso);font-size:25px;line-height:1.15;}
.intel-card p{color:var(--muted);font-size:15px;line-height:1.7;}
.intel-card small{display:block;margin-top:20px;padding-top:15px;border-top:1px solid rgba(199,154,79,.22);color:var(--warm-brown);font-size:13px;font-style:italic;line-height:1.5;}
.intel-convergence{display:grid;grid-template-columns:minmax(0,1fr) minmax(350px,.85fr);gap:72px;align-items:center;padding:116px max(40px,calc((100vw - 1200px)/2));color:#fffaf2;background:linear-gradient(135deg,#2b1c14,#160f0b);}
.intel-convergence-copy{max-width:650px;}.intel-convergence .intel-eyebrow,.intel-control .intel-eyebrow,.intel-closing .intel-eyebrow{color:#e9c98a;}.intel-convergence h2,.intel-control h2{margin-bottom:22px;color:#fffaf2;font-size:clamp(38px,4vw,58px);line-height:1.05;letter-spacing:-.04em;}.intel-convergence-copy>p:not(.intel-eyebrow){margin-top:17px;color:rgba(255,250,242,.7);font-size:17px;line-height:1.75;}.intel-one{display:block;margin-top:6px;color:#f3cc87;font-size:28px;letter-spacing:.08em;}.intel-convergence blockquote{margin-top:28px;padding:18px 20px;border-left:3px solid #c79a4f;background:rgba(199,154,79,.1);color:#f3d59b;font-size:17px;font-weight:750;line-height:1.5;}
.intel-convergence-visual{position:relative;width:min(390px,100%);aspect-ratio:1;margin-left:auto;border:1px solid rgba(231,201,138,.18);border-radius:50%;background:radial-gradient(circle,rgba(231,201,138,.12),transparent 60%);}.intel-convergence-visual span{position:absolute;padding:7px 9px;border:1px solid rgba(231,201,138,.32);border-radius:999px;color:#f3d59b;font-size:11px;}.intel-convergence-visual span:nth-of-type(1){top:12%;left:20%;}.intel-convergence-visual span:nth-of-type(2){top:25%;right:4%;}.intel-convergence-visual span:nth-of-type(3){bottom:24%;right:0;}.intel-convergence-visual span:nth-of-type(4){bottom:8%;left:24%;}.intel-convergence-visual span:nth-of-type(5){bottom:28%;left:-4%;}.intel-convergence-visual i{position:absolute;top:50%;left:50%;width:40%;height:1px;background:linear-gradient(90deg,rgba(231,201,138,.48),transparent);transform-origin:left center;}.intel-convergence-visual i:nth-of-type(1){transform:rotate(-135deg);}.intel-convergence-visual i:nth-of-type(2){transform:rotate(-42deg);}.intel-convergence-visual i:nth-of-type(3){transform:rotate(36deg);}.intel-convergence-visual i:nth-of-type(4){transform:rotate(115deg);}.intel-convergence-visual i:nth-of-type(5){transform:rotate(178deg);}
.intel-verticals{background:#f7eee2;}.vertical-block{display:grid;grid-template-columns:minmax(280px,.8fr) minmax(0,1.2fr);gap:60px;margin-top:28px;padding:42px;border:1px solid rgba(70,48,32,.1);border-radius:24px;background:#fffdf8;box-shadow:0 18px 50px rgba(45,35,29,.06);}.vertical-copy h3{margin-bottom:16px;color:var(--espresso);font-size:34px;line-height:1.1;letter-spacing:-.03em;}.vertical-copy>p:not(.intel-eyebrow){margin-top:15px;color:var(--muted);font-size:16px;line-height:1.7;}.unknown-note{margin-top:25px;padding:15px 17px;border-left:3px solid var(--gold);background:#fff7e9;color:var(--warm-brown);font-size:14px;font-weight:750;line-height:1.5;}.capability-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;}.capability-list div{padding:16px;border:1px solid rgba(70,48,32,.1);border-radius:13px;background:#fffaf3;}.capability-list strong{display:block;color:var(--coffee);font-size:13px;line-height:1.35;}.capability-list span{display:block;margin-top:7px;color:var(--muted);font-size:12px;line-height:1.55;}.retail-block{background:linear-gradient(135deg,#fffdf8,#f0e3d2);}.retail-areas{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;align-content:start;}.retail-areas span{padding:18px;border:1px solid rgba(199,154,79,.3);border-radius:14px;background:rgba(255,255,255,.5);color:var(--coffee);font-size:14px;font-weight:750;}.retail-areas span:last-child{grid-column:1/-1;}
.intel-control{padding:112px max(40px,calc((100vw - 1120px)/2));background:#fffdf8;}.intel-control .intel-section-heading{max-width:720px;}.intel-control .intel-section-heading>p:not(.intel-eyebrow){color:var(--muted);}.principle-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;}.principle-grid article{padding:25px;border-top:2px solid var(--gold);background:#f7eee2;}.principle-grid strong{color:var(--coffee);font-size:18px;}.principle-grid p{margin-top:12px;color:var(--muted);font-size:14px;line-height:1.65;}
.intel-closing{padding:116px max(40px,calc((100vw - 960px)/2));color:#fffaf2;text-align:center;background:radial-gradient(circle at 50% 0,rgba(199,154,79,.18),transparent 44%),linear-gradient(145deg,#33241b,#20150f);}.intel-closing h2{max-width:850px;margin:0 auto 20px;color:#fffaf2;font-size:clamp(38px,4.5vw,64px);line-height:1.05;letter-spacing:-.04em;text-wrap:balance;}.intel-closing>p:not(.intel-eyebrow){max-width:650px;margin:0 auto;color:rgba(255,250,242,.7);font-size:18px;line-height:1.7;}.intel-closing>div{display:flex;justify-content:center;gap:14px;flex-wrap:wrap;margin-top:32px;}.intel-light-btn{padding:12px 18px;border:1px solid rgba(255,255,255,.3);background:rgba(255,255,255,.08);color:#fffaf2;}.intel-light-btn:hover{background:rgba(255,255,255,.16);}

@media (max-width:900px){.intel-hero{grid-template-columns:1fr;gap:48px;min-height:auto;padding:142px 40px 80px;}.intel-hero-visual{width:min(620px,100%);margin:0 auto;}.intel-map{width:min(420px,100%);margin:0 auto;}.intel-convergence{grid-template-columns:1fr;gap:50px;}.intel-convergence-visual{margin:0 auto;}.vertical-block{grid-template-columns:1fr;gap:34px;}.principle-grid{grid-template-columns:1fr;}}
@media (max-width:520px){.intel-hero{padding:128px 24px 64px;}.intel-hero h1{font-size:42px;}.intel-subtitle{font-size:23px;}.intel-body{font-size:16px;}.intel-hero-visual{display:none;}.intel-map{width:300px;}.intel-node{font-size:9px;padding:6px 7px;}.intel-node-two{right:-8%;}.intel-node-three{right:-13%;}.intel-node-five{left:-13%;}.intel-core-section,.intel-verticals,.intel-control{padding:78px 24px;}.intel-section-heading{margin-bottom:34px;}.intel-section-heading h2{font-size:35px;}.intel-section-heading>p:not(.intel-eyebrow){font-size:16px;}.intel-card-grid{grid-template-columns:1fr;}.intel-card-wide{grid-column:auto;}.intel-card{padding:23px;}.intel-convergence{padding:78px 24px;}.intel-convergence h2{font-size:35px;}.intel-convergence-visual{width:290px;}.vertical-block{padding:24px 20px;border-radius:18px;}.vertical-copy h3{font-size:29px;}.capability-list,.retail-areas{grid-template-columns:1fr;}.retail-areas span:last-child{grid-column:auto;}.intel-closing{padding:78px 24px;}.intel-closing h2{font-size:37px;}.intel-closing>p:not(.intel-eyebrow){font-size:16px;}.intel-closing>div{flex-direction:column;align-items:stretch;}}

/* SOLUTIONS PAGE */

.solutions-page{background:var(--ivory);}
.solutions-page .site-header .nav-menu a.is-current{color:var(--gold-soft);}
.solutions-eyebrow{margin-bottom:18px;color:var(--gold);font-size:12px;font-weight:900;letter-spacing:.17em;line-height:1.4;}
.solutions-intro{position:relative;isolation:isolate;display:flex;min-height:76vh;align-items:center;max-width:none;margin:0;padding:150px max(40px,calc((100vw - 1280px)/2)) 88px;overflow:hidden;color:#fffaf2;text-align:left;background:#21150f;}.solutions-hero-image{position:absolute;z-index:-2;inset:0;width:100%;height:100%;object-fit:cover;object-position:center;}.solutions-intro::before{content:"";position:absolute;z-index:-1;inset:0;background:linear-gradient(90deg,rgba(29,20,15,.95) 0%,rgba(29,20,15,.82) 30%,rgba(29,20,15,.34) 60%,rgba(29,20,15,.12) 100%);}.solutions-intro-copy{position:relative;z-index:1;max-width:610px;}.solutions-intro h1{max-width:650px;margin:0;color:#fffaf2;font-size:clamp(42px,4.7vw,66px);line-height:1.02;letter-spacing:-.045em;text-wrap:balance;}.solutions-intro>p:not(.solutions-eyebrow){max-width:610px;margin:18px 0 0;color:rgba(255,250,242,.78);font-size:14px;line-height:1.75;}.solutions-intro .solutions-subtitle{color:#f3d59b;font-size:clamp(17px,1.9vw,25px)!important;line-height:1.3!important;}.solutions-intro strong{display:block;margin-top:21px;color:#f3cc87;font-size:14px;}
.solution-block{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(310px,.95fr);gap:68px;padding:112px max(40px,calc((100vw - 1180px)/2));}.retail-solution{background:#f4eadc;}.construction-solution{color:#fffaf2;background:linear-gradient(135deg,#2b1c14,#160f0b);}.fnb-solution{background:#fffdf8;}.solution-copy{max-width:650px;}.solution-copy h2{margin-bottom:20px;color:var(--espresso);font-size:clamp(38px,4vw,58px);line-height:1.05;letter-spacing:-.04em;text-wrap:balance;}.construction-solution .solution-copy h2,.construction-solution .solution-copy h3{color:#fffaf2;}.solution-copy>p:not(.solutions-eyebrow):not(.solution-example){margin-top:17px;color:var(--muted);font-size:17px;line-height:1.75;}.construction-solution .solution-copy>p:not(.solutions-eyebrow):not(.solution-example){color:rgba(255,250,242,.7);}.solution-copy h3,.solution-side h3{margin-top:34px;margin-bottom:14px;color:var(--coffee);font-size:20px;}.construction-solution .solution-side h3{color:#f3d59b;}.vertical-label{margin-top:28px;padding:19px 20px;border-left:3px solid var(--gold);background:rgba(199,154,79,.12);color:var(--warm-brown);font-size:19px;font-weight:800;line-height:1.4;}.construction-solution .vertical-label{color:#f3d59b;}.vertical-label small{display:block;margin-top:8px;color:var(--muted);font-size:13px;font-weight:400;line-height:1.6;}.construction-solution .vertical-label small{color:rgba(255,250,242,.65);}.solution-example{margin-top:25px!important;color:var(--warm-brown)!important;font-size:14px!important;font-style:italic;line-height:1.6!important;}.solution-side{align-self:center;padding:30px;border:1px solid rgba(199,154,79,.25);border-radius:22px;background:rgba(255,255,255,.46);}.construction-solution .solution-side{border-color:rgba(231,201,138,.2);background:rgba(255,255,255,.05);}.solution-side ul{display:grid;gap:13px;margin:0;padding:0;list-style:none;}.solution-side li{position:relative;padding-left:21px;color:var(--muted);font-size:14px;line-height:1.5;}.solution-side li::before{content:"";position:absolute;left:0;top:.55em;width:7px;height:7px;border-radius:50%;background:var(--gold);box-shadow:0 0 0 4px rgba(199,154,79,.13);}.construction-solution .solution-side li{color:rgba(255,250,242,.68);}.chip-list{display:flex;flex-wrap:wrap;gap:9px;}.chip-list span{padding:8px 10px;border:1px solid rgba(199,154,79,.3);border-radius:999px;color:var(--warm-brown);font-size:11px;font-weight:800;line-height:1.3;}.construction-solution .chip-list span{border-color:rgba(231,201,138,.28);color:#f3d59b;}
.solutions-other{padding:112px max(40px,calc((100vw - 1000px)/2));background:#f7eee2;}.solutions-other h2,.solutions-flow h2,.solutions-human h2,.solutions-closing h2{max-width:800px;margin-bottom:20px;color:var(--espresso);font-size:clamp(38px,4vw,58px);line-height:1.05;letter-spacing:-.04em;text-wrap:balance;}.solutions-other>p:not(.solutions-eyebrow){max-width:700px;color:var(--muted);font-size:18px;line-height:1.75;}.other-examples{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin-top:30px;}.other-examples span{padding:18px;border:1px solid rgba(70,48,32,.12);border-radius:14px;background:#fffdf8;color:var(--coffee);font-size:14px;font-weight:750;}.solutions-other blockquote{max-width:700px;margin-top:28px;padding:18px 20px;border-left:3px solid var(--gold);background:rgba(199,154,79,.1);color:var(--warm-brown);font-size:16px;font-weight:800;line-height:1.5;}
.solutions-flow{display:grid;grid-template-columns:minmax(0,1fr) minmax(330px,.8fr);gap:70px;align-items:center;padding:112px max(40px,calc((100vw - 1180px)/2));color:#fffaf2;background:linear-gradient(135deg,#2b1c14,#160f0b);}.solutions-flow h2{color:#fffaf2;}.solutions-flow>div:first-child>p:not(.solutions-eyebrow){max-width:650px;color:rgba(255,250,242,.7);font-size:17px;line-height:1.75;margin-top:15px;}.solutions-flow>div:first-child>strong{display:block;margin-top:18px;color:#f3cc87;font-size:27px;letter-spacing:.1em;}.flow-diagram{display:flex;flex-wrap:wrap;justify-content:center;align-items:center;gap:12px;padding:28px;border:1px solid rgba(231,201,138,.25);border-radius:20px;background:rgba(255,255,255,.04);}.flow-diagram span{padding:10px 12px;border:1px solid rgba(231,201,138,.35);border-radius:999px;color:#f3d59b;font-size:12px;font-weight:800;text-align:center;}.flow-diagram b{color:#c79a4f;font-size:20px;}
.solutions-human{padding:100px max(40px,calc((100vw - 860px)/2));background:#fffdf8;text-align:center;}.solutions-human h2{margin-left:auto;margin-right:auto;}.solutions-human>p:not(.solutions-eyebrow){max-width:680px;margin:15px auto 0;color:var(--muted);font-size:18px;line-height:1.7;}.solutions-closing{padding:112px max(40px,calc((100vw - 960px)/2));color:#fffaf2;text-align:center;background:radial-gradient(circle at 50% 0,rgba(199,154,79,.18),transparent 44%),linear-gradient(145deg,#33241b,#20150f);}.solutions-closing h2{margin-left:auto;margin-right:auto;color:#fffaf2;}.solutions-closing>p:not(.solutions-eyebrow){max-width:650px;margin:0 auto;color:rgba(255,250,242,.7);font-size:18px;line-height:1.7;}.solutions-closing>div{display:flex;justify-content:center;gap:14px;flex-wrap:wrap;margin-top:32px;}.solutions-light-btn{padding:12px 18px;border:1px solid rgba(255,255,255,.3);background:rgba(255,255,255,.08);color:#fffaf2;}.solutions-light-btn:hover{background:rgba(255,255,255,.16);}
@media (max-width:900px){.intel-hero-visual{width:min(660px,100%);margin:12px auto 0;}.solutions-intro{min-height:68vh;padding:142px 40px 80px;}.solution-block,.solutions-flow{grid-template-columns:1fr;gap:42px;}.solution-side{align-self:stretch;}.solutions-flow .flow-diagram{max-width:620px;}.solutions-human{padding:82px 40px;}}
@media (max-width:520px){.solutions-intro{min-height:620px;padding:128px 24px 64px;}.solutions-hero-image{object-position:60% center;}.solutions-intro::before{background:linear-gradient(180deg,rgba(29,20,15,.94) 0%,rgba(29,20,15,.82) 52%,rgba(29,20,15,.28) 100%);}.solutions-intro h1{font-size:42px;}.solutions-intro>p:not(.solutions-eyebrow){font-size:16px;}.solutions-intro .solutions-subtitle{font-size:23px!important;}.solution-block{padding:78px 24px;}.solution-copy h2,.solutions-other h2,.solutions-flow h2,.solutions-human h2,.solutions-closing h2{font-size:35px;}.solution-copy>p:not(.solutions-eyebrow):not(.solution-example),.solutions-other>p:not(.solutions-eyebrow),.solutions-flow>div:first-child>p:not(.solutions-eyebrow),.solutions-human>p:not(.solutions-eyebrow),.solutions-closing>p:not(.solutions-eyebrow){font-size:16px;}.solution-side{padding:23px 20px;border-radius:18px;}.other-examples{grid-template-columns:1fr;}.solutions-other,.solutions-flow,.solutions-human,.solutions-closing{padding:78px 24px;}.flow-diagram{gap:8px;padding:20px 14px;}.flow-diagram b{font-size:15px;}.solutions-closing>div{flex-direction:column;align-items:stretch;}}

/* Detailed package presentation: pricing content only. */
.pricing-page .pricing-plans{width:min(1320px,calc(100vw - 80px));gap:22px;padding-bottom:36px;align-items:stretch}.pricing-page .price-card{padding:38px 34px;border-color:rgba(70,48,32,.15);transition:transform .2s ease,box-shadow .2s ease}.pricing-page .price-card:not(.price-card-featured):hover{transform:translateY(-4px);box-shadow:0 24px 58px rgba(45,35,29,.11)}.pricing-page .price-card-featured{box-shadow:0 26px 76px rgba(81,52,27,.28),0 0 0 5px rgba(199,154,79,.11)}.pricing-page .price-value{margin:25px 0 27px}.pricing-page .price-value strong{font-size:42px}.pricing-page .price-description{min-height:70px}.pricing-page .price-feature-list{gap:9px}.pricing-page .price-feature-list li{font-size:13px;line-height:1.45}.price-capability-group{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:7px;margin-top:24px;padding:17px;border:1px solid rgba(70,48,32,.1);border-radius:14px;background:rgba(255,255,255,.44)}.price-capability-group strong{grid-column:1/-1;color:var(--coffee);font-size:12px;letter-spacing:.06em;text-transform:uppercase}.price-capability-group span{color:var(--muted);font-size:11px;line-height:1.4}.price-capability-group span::before{content:"✓ ";color:var(--gold);font-weight:900}.price-card-featured .price-capability-group{border-color:rgba(231,201,138,.22);background:rgba(255,255,255,.055)}.price-card-featured .price-capability-group strong{color:#f3d59b}.price-card-featured .price-capability-group span{color:rgba(255,250,242,.72)}.price-construction-group{grid-template-columns:1fr}.price-status{display:block;margin-top:auto;padding-top:25px;color:var(--warm-brown);font-size:12px;font-weight:850;line-height:1.45}.price-card-featured .price-status{color:#f3d59b}.price-card-unavailable{background:linear-gradient(145deg,#fffdf8,#f7ecdf)}.price-card-planned{background:linear-gradient(145deg,#f8eee2,#ebddca)}.price-card-unavailable,.price-card-planned{opacity:1}.price-button.is-disabled{border-color:rgba(70,48,32,.14);background:rgba(70,48,32,.08);color:#786b60;cursor:not-allowed;pointer-events:none}.plan-badge{position:absolute;top:22px;right:24px;padding:5px 8px;border:1px solid rgba(126,97,64,.3);border-radius:999px;color:var(--warm-brown);font-size:9px;font-weight:950;letter-spacing:.1em}.pricing-beta-notice{display:flex;align-items:flex-start;gap:11px;width:min(900px,calc(100vw - 80px));margin:0 auto 82px;padding:16px 19px;border:1px solid rgba(199,154,79,.34);border-radius:15px;background:linear-gradient(135deg,rgba(199,154,79,.1),rgba(255,253,248,.8));color:var(--warm-brown);box-shadow:0 14px 34px rgba(45,35,29,.05)}.pricing-beta-notice span{display:grid;place-items:center;flex:0 0 19px;width:19px;height:19px;border:1px solid currentColor;border-radius:50%;font:700 12px/1 Georgia,serif}.pricing-beta-notice p{margin:0;font-size:14px;line-height:1.55}.pricing-capability-chips{display:flex;flex-wrap:wrap;gap:8px;margin-top:21px}.pricing-capability-chips span{padding:8px 10px;border:1px solid rgba(199,154,79,.3);border-radius:999px;color:var(--warm-brown);font-size:11px;font-weight:800;line-height:1.35}.pricing-microcopy{margin:22px 0 0!important;padding-top:18px;border-top:1px solid rgba(70,48,32,.1);font-size:13px!important;line-height:1.65!important}
@media (max-width:980px){.pricing-page .pricing-plans{grid-template-columns:1fr;width:min(660px,calc(100vw - 48px));gap:20px}.pricing-page .price-card{padding:32px 28px}.pricing-page .price-card-featured{order:-1;transform:none}.pricing-page .price-card-featured:hover{transform:none}.pricing-page .price-description{min-height:0}.price-capability-group{grid-template-columns:repeat(2,minmax(0,1fr))}.pricing-beta-notice{width:min(660px,calc(100vw - 48px));margin-bottom:64px}}
@media (max-width:520px){.pricing-page .pricing-plans{width:calc(100vw - 40px);padding-bottom:28px}.pricing-page .price-card{padding:28px 22px}.pricing-page .price-value strong{font-size:38px}.price-capability-group{grid-template-columns:1fr;padding:15px}.pricing-beta-notice{width:calc(100vw - 40px);margin-bottom:54px;padding:14px 15px}.pricing-beta-notice p{font-size:13px}.pricing-capability-chips span{font-size:10px}}

/* PRICING PAGE */

.pricing-page{background:var(--ivory);}.pricing-page .site-header .nav-menu a.is-current{color:var(--gold-soft);}.pricing-eyebrow{margin-bottom:18px;color:var(--gold);font-size:12px;font-weight:900;letter-spacing:.17em;line-height:1.4;}.pricing-intro{max-width:900px;margin:0 auto;padding:176px 40px 74px;text-align:center;}.pricing-intro h1{max-width:850px;margin:0 auto;color:var(--espresso);font-size:clamp(46px,5vw,72px);line-height:1.02;letter-spacing:-.045em;text-wrap:balance;}.pricing-subtitle{max-width:720px;margin:25px auto 0;color:var(--muted);font-size:20px;line-height:1.7;}.trial-badge{display:inline-flex;margin-top:30px;padding:12px 18px;border:1px solid rgba(199,154,79,.48);border-radius:999px;background:rgba(199,154,79,.12);color:var(--warm-brown);font-size:12px;font-weight:950;letter-spacing:.1em;}.trial-badge span{margin:0 7px;color:var(--gold);}.trial-copy{margin-top:13px;color:var(--muted);font-size:14px;line-height:1.6;}.pricing-plans{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;width:min(1200px,calc(100vw - 80px));margin:0 auto;padding:18px 0 116px;align-items:stretch;}.price-card{position:relative;display:flex;flex-direction:column;padding:34px 30px;border:1px solid rgba(70,48,32,.12);border-radius:24px;background:linear-gradient(145deg,#fffdf8,#f3e6d5);box-shadow:0 18px 48px rgba(45,35,29,.07);}.price-card-featured{border-color:rgba(199,154,79,.72);background:linear-gradient(145deg,#3b281c,#21150f);box-shadow:0 22px 64px rgba(81,52,27,.24),0 0 0 5px rgba(199,154,79,.10);color:#fffaf2;transform:translateY(-10px);}.recommended-badge{position:absolute;top:-13px;left:28px;padding:6px 11px;border-radius:999px;background:#e9c98a;color:#3c2b22;font-size:10px;font-weight:950;letter-spacing:.12em;}.price-kicker{margin-bottom:10px;color:var(--gold);font-size:11px;font-weight:950;letter-spacing:.16em;}.price-card h2{margin-bottom:12px;color:var(--espresso);font-size:34px;line-height:1.05;}.price-card-featured h2{color:#fffaf2;}.price-description{min-height:48px;color:var(--muted);font-size:15px;line-height:1.6;}.price-card-featured .price-description{color:rgba(255,250,242,.72);}.price-audience,.price-start{margin-top:12px;color:var(--warm-brown);font-size:13px;font-weight:750;}.price-card-featured .price-start,.price-card-featured .price-audience{color:#f3d59b;}.price-value{display:flex;align-items:baseline;gap:6px;margin:28px 0 24px;}.price-value strong{color:var(--espresso);font-size:36px;letter-spacing:-.04em;}.price-card-featured .price-value strong{color:#f3cc87;}.price-value span{color:var(--muted);font-size:14px;}.price-card-featured .price-value span{color:rgba(255,250,242,.6);}.price-card ul{display:grid;gap:12px;margin:0;padding:0;list-style:none;}.price-card li{position:relative;padding-left:22px;color:var(--muted);font-size:14px;line-height:1.5;}.price-card-featured li{color:rgba(255,250,242,.76);}.price-card li::before{content:"✓";position:absolute;left:0;color:var(--gold);font-weight:900;}.intelligence-line{margin-top:20px;padding-top:16px;border-top:1px solid rgba(231,201,138,.22);color:var(--gold)!important;font-size:12px;line-height:1.6;}.price-trial{margin-top:auto;padding-top:26px;color:var(--warm-brown);font-size:12px;font-weight:850;}.price-card-featured .price-trial{color:#f3d59b;}.price-button{display:flex;justify-content:center;margin-top:16px;padding:14px 18px;border:1px solid rgba(70,48,32,.14);border-radius:999px;background:#2d231d;color:#fffaf2;font-size:14px;font-weight:850;transition:transform .2s ease,background .2s ease;}.price-button:hover{transform:translateY(-2px);background:#493226;}.price-card-featured .price-button{background:#e9c98a;color:#2d231d;}.price-card-featured .price-button:hover{background:#f3d59b;}
.pricing-intelligence{padding:100px max(40px,calc((100vw - 1120px)/2));background:#f4eadc;}.pricing-intelligence>div:first-child{max-width:650px;}.pricing-intelligence h2,.pricing-section-heading h2{max-width:760px;color:var(--espresso);font-size:clamp(36px,4vw,56px);line-height:1.05;letter-spacing:-.04em;text-wrap:balance;}.pricing-intel-columns{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;margin-top:40px;}.pricing-intel-columns article{padding:30px;border:1px solid rgba(70,48,32,.1);border-radius:20px;background:#fffdf8;}.pricing-intel-columns h3{color:var(--coffee);font-size:25px;}.pricing-intel-columns p{color:var(--muted);font-size:16px;line-height:1.75;}.pricing-intel-columns a{display:inline-flex;margin-top:22px;color:var(--warm-brown);font-size:14px;font-weight:850;}.pricing-intel-columns a span{margin-left:8px;color:var(--gold);}.pricing-comparison{padding:112px max(40px,calc((100vw - 1120px)/2));background:#fffdf8;}.pricing-section-heading{max-width:760px;margin-bottom:42px;}.comparison-wrap{overflow-x:auto;border:1px solid rgba(70,48,32,.12);border-radius:18px;box-shadow:0 14px 38px rgba(45,35,29,.05);}.comparison-wrap table{width:100%;min-width:650px;border-collapse:collapse;background:#fffdf8;color:var(--muted);font-size:14px;}.comparison-wrap th,.comparison-wrap td{padding:15px 18px;border-bottom:1px solid rgba(70,48,32,.08);text-align:center;line-height:1.4;}.comparison-wrap thead th{background:#f3e6d5;color:var(--coffee);font-size:12px;letter-spacing:.08em;text-transform:uppercase;}.comparison-wrap tbody th{text-align:left;color:var(--coffee);font-weight:750;}.comparison-wrap tbody td:not(:first-child){color:var(--gold);font-weight:850;}.comparison-wrap tr:last-child th,.comparison-wrap tr:last-child td{border-bottom:0;}.pricing-faq{padding:108px max(40px,calc((100vw - 900px)/2));background:#f7eee2;}.pricing-faq-list{display:grid;gap:13px;}.pricing-faq-list details{border:1px solid rgba(70,48,32,.12);border-radius:15px;background:#fffdf8;}.pricing-faq-list summary{display:flex;justify-content:space-between;gap:18px;padding:20px 23px;cursor:pointer;color:var(--coffee);font-size:17px;font-weight:800;list-style:none;}.pricing-faq-list summary::-webkit-details-marker{display:none;}.pricing-faq-list summary b{color:var(--gold);font-size:22px;font-weight:400;transition:transform .2s ease;}.pricing-faq-list details[open] summary b{transform:rotate(45deg);}.pricing-faq-list details p{padding:0 23px 22px;color:var(--muted);font-size:15px;line-height:1.7;}.pricing-closing{padding:112px max(40px,calc((100vw - 960px)/2));color:#fffaf2;text-align:center;background:radial-gradient(circle at 50% 0,rgba(199,154,79,.18),transparent 44%),linear-gradient(145deg,#33241b,#20150f);}.pricing-closing h2{max-width:800px;margin:0 auto 20px;color:#fffaf2;font-size:clamp(38px,4.5vw,62px);line-height:1.05;letter-spacing:-.04em;text-wrap:balance;}.pricing-closing>p:not(.pricing-eyebrow){max-width:650px;margin:0 auto;color:rgba(255,250,242,.7);font-size:18px;line-height:1.7;}.pricing-closing>div{display:flex;justify-content:center;gap:14px;flex-wrap:wrap;margin-top:32px;}.pricing-light-btn{padding:12px 18px;border:1px solid rgba(255,255,255,.3);background:rgba(255,255,255,.08);color:#fffaf2;}.pricing-light-btn:hover{background:rgba(255,255,255,.16);}
@media (max-width:900px){.pricing-plans{grid-template-columns:1fr;max-width:620px;}.price-card-featured{order:-1;transform:none;}.pricing-intel-columns{grid-template-columns:1fr;}.pricing-intro{padding-top:150px;}}
@media (max-width:520px){.pricing-intro{padding:128px 24px 58px;}.pricing-intro h1{font-size:42px;}.pricing-subtitle{font-size:16px;}.pricing-plans{width:calc(100vw - 48px);padding-bottom:78px;}.price-card{padding:28px 23px;}.price-card-featured{transform:none;}.pricing-intelligence,.pricing-comparison,.pricing-faq,.pricing-closing{padding:78px 24px;}.pricing-intelligence h2,.pricing-section-heading h2,.pricing-closing h2{font-size:35px;}.pricing-intel-columns{margin-top:28px;}.comparison-wrap{margin:0 -2px;}.pricing-faq-list summary{font-size:15px;padding:18px;}.pricing-faq-list details p{padding:0 18px 19px;font-size:14px;}.pricing-closing>p:not(.pricing-eyebrow){font-size:16px;}.pricing-closing>div{flex-direction:column;align-items:stretch;}}
