:root{
  --bg: #F7F4EF;         /* warm premium off-white */
  --ink: #1E2A3A;        /* deep navy */
  --muted: rgba(30,42,58,.72);
  --line: rgba(30,42,58,.12);

  --primary: #2F5F7A;    /* blue button */
  --primaryHover:#274F66;

  --sand: #E9D8C6;       /* sand button */
  --sandHover:#E2CDB7;

  --card:#FFFFFF;
  --shadow: 0 24px 70px rgba(30,42,58,.14);
  --shadow2: 0 16px 40px rgba(30,42,58,.12);

  --r: 22px;
  --max: 1160px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background: var(--bg);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

.container{
  width:min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

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

/* NAV */
.nav{
  position:sticky; top:0; z-index:10;
  background: rgba(247,244,239,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(30,42,58,.08);
}
.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 16px 0;
  gap: 18px;
}
.brand{display:flex; align-items:center; gap:10px}
.brand__mark{
  width:34px; height:34px;
  border-radius: 12px;
  display:grid; place-items:center;
  background:#fff;
  border:1px solid rgba(30,42,58,.12);
  box-shadow: 0 10px 24px rgba(30,42,58,.10);
  color: var(--ink);
}
.brand__mark svg{width:18px; height:18px}
.brand__name{
  font-weight: 800;
  letter-spacing:.2px;
}
.brand__name span{font-weight:900}

.nav__links{
  display:flex; gap:22px;
  font-size: 14px;
  color: rgba(30,42,58,.78);
}
.nav__links a{padding: 8px 10px; border-radius: 999px}
.nav__links a:hover{background: rgba(30,42,58,.06); color: var(--ink)}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 18px;
  border-radius: 999px;
  border:1px solid rgba(30,42,58,.12);
  background: #fff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 10px 26px rgba(30,42,58,.10);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{transform: translateY(-1px); box-shadow: 0 16px 36px rgba(30,42,58,.12)}
.btn--primary{
  background: var(--primary);
  color: #fff;
  border-color: rgba(0,0,0,0);
  box-shadow: 0 18px 40px rgba(47,95,122,.25);
}
.btn--primary:hover{background: var(--primaryHover)}
.btn--sand{
  background: var(--sand);
  color: var(--ink);
  border-color: rgba(0,0,0,0);
  box-shadow: 0 18px 40px rgba(233,216,198,.35);
}
.btn--sand:hover{background: var(--sandHover)}
.btn--ghost{
  background: rgba(255,255,255,.65);
}
.btn--full{width:100%}

/* HERO */
.hero{
  padding: 56px 0 34px;
  background:
    radial-gradient(900px 420px at 70% 35%, rgba(30,42,58,.07), transparent 60%),
    radial-gradient(900px 500px at 10% 25%, rgba(47,95,122,.12), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.55), rgba(247,244,239,0));
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  align-items:center;
  gap: 34px;
}
.hero__title{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1.02;
  margin: 0 0 14px;
  font-size: clamp(40px, 4.4vw, 58px);
}
.hero__sub{
  margin: 0 0 18px;
  font-size: 18px;
  color: var(--muted);
  max-width: 52ch;
}
.hero__cta{display:flex; gap:14px; flex-wrap:wrap}

/* Trust logos row */
.logos{margin-top: 18px}
.logos__row{display:flex; gap:12px; flex-wrap:wrap; align-items:center}
.logo-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  border:1px solid rgba(30,42,58,.10);
  color: rgba(30,42,58,.78);
  font-weight: 700;
  font-size: 13px;
}
.logos__note{
  margin: 10px 0 0;
  color: rgba(30,42,58,.60);
  font-size: 14px;
}

/* Device mock */
.device{position:relative; min-height: 420px;}
.shadow-soft{
  position:absolute;
  inset:auto 0 -30px 0;
  height: 80px;
  background: radial-gradient(closest-side, rgba(30,42,58,.20), transparent);
  filter: blur(16px);
  opacity:.35;
}
.laptop{
  position:relative;
  width: min(520px, 100%);
  margin-left:auto;
}
.laptop__top{
  background:#fff;
  border: 1px solid rgba(30,42,58,.14);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.laptop__bar{
  display:flex;
  gap:7px;
  padding: 10px 14px;
  background: rgba(247,244,239,.9);
  border-bottom: 1px solid rgba(30,42,58,.10);
}
.dot{width:10px; height:10px; border-radius:50%}
.dot--r{background:#F06464}
.dot--y{background:#F3C969}
.dot--g{background:#6BD38A}
.laptop__screen{
  padding: 16px;
  background: #fff;
}
.laptop__base{
  height: 18px;
  width: 82%;
  margin: 12px auto 0;
  border-radius: 999px;
  background: rgba(30,42,58,.10);
  filter: blur(.2px);
}

/* Fake “screen UI” inside laptop */
.screen-ui{
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #fbfaf7);
  border: 1px solid rgba(30,42,58,.10);
  overflow:hidden;
}
.screen-ui__nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(30,42,58,.08);
}
.mini-logo{
  width:34px; height:12px;
  border-radius:999px;
  background: rgba(30,42,58,.14);
}
.mini-links{
  display:flex; gap:12px;
  font-size: 11px;
  color: rgba(30,42,58,.55);
}
.mini-btn{
  font-size: 11px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(233,216,198,.75);
  color: rgba(30,42,58,.80);
  font-weight: 700;
}
.screen-ui__hero{padding: 18px}
.screen-ui__h1{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: 20px;
  color: rgba(30,42,58,.92);
}
.screen-ui__h2{
  margin-top: 6px;
  font-size: 12px;
  color: rgba(30,42,58,.60);
}
.screen-ui__cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.mini-card{
  background:#fff;
  border:1px solid rgba(30,42,58,.10);
  border-radius: 14px;
  overflow:hidden;
  box-shadow: 0 10px 22px rgba(30,42,58,.10);
}
.mini-card__img{
  height: 54px;
  background:
    linear-gradient(120deg, rgba(47,95,122,.18), rgba(233,216,198,.35));
}
.mini-card__title{
  padding: 8px 10px 0;
  font-weight: 800;
  font-size: 12px;
}
.mini-card__stars{
  padding: 2px 10px 10px;
  font-size: 11px;
  color: #C89B3C;
}
.screen-ui__footerbar{
  height: 14px;
  background: rgba(30,42,58,.04);
  border-top: 1px solid rgba(30,42,58,.06);
}

/* Phone overlay */
.phone{
  position:absolute;
  right: 10px;
  bottom: 38px;
  width: 210px;
  border-radius: 34px;
  background:#fff;
  border: 1px solid rgba(30,42,58,.14);
  box-shadow: var(--shadow2);
  overflow:hidden;
}
.phone__notch{
  width: 84px; height: 18px;
  background: rgba(30,42,58,.10);
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
}
.phone__screen{padding: 14px}
.phone-ui__title{
  font-weight: 900;
  font-size: 13px;
  margin: 6px 0 10px;
}
.phone-ui__item{
  display:flex; justify-content:space-between; align-items:center;
  padding: 10px 10px;
  border: 1px solid rgba(30,42,58,.10);
  border-radius: 14px;
  margin-bottom: 8px;
  background: rgba(247,244,239,.6);
  font-size: 12px;
}
.phone-ui__btn{
  width:100%;
  border:0;
  border-radius: 999px;
  padding: 11px 12px;
  background: var(--primary);
  color:#fff;
  font-weight: 900;
  cursor:pointer;
}
.phone-ui__fine{
  margin-top: 8px;
  font-size: 11px;
  color: rgba(30,42,58,.58);
}

/* STATEMENT SECTION */
.statement{
  padding: 46px 0 60px;
}
.statement__inner{text-align:center}
.statement__title{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
  letter-spacing:-0.4px;
  margin: 0 0 10px;
  font-size: clamp(28px, 3.2vw, 40px);
}
.statement__tags{
  margin: 0 auto 24px;
  color: rgba(30,42,58,.62);
  font-size: 14px;
}
.tiles{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items:stretch;
}
.tile{
  background:#fff;
  border: 1px solid rgba(30,42,58,.10);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(30,42,58,.10);
  overflow:hidden;
}
.tile__img{
  height: 86px;
  background:
    linear-gradient(120deg, rgba(47,95,122,.16), rgba(233,216,198,.36));
}
.tile__label{padding: 12px 14px 0; font-weight: 900}
.tile__stars{padding: 2px 14px 14px; color:#C89B3C}

/* GENERIC SECTIONS */
.section{padding: 56px 0}
.section--soft{background: rgba(255,255,255,.45); border-top: 1px solid rgba(30,42,58,.06); border-bottom: 1px solid rgba(30,42,58,.06);}
.h2{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  letter-spacing:-0.4px;
  margin: 0 0 10px;
  font-size: 34px;
}
.p{margin:0 0 22px; color: var(--muted); font-size: 16px}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  background:#fff;
  border:1px solid rgba(30,42,58,.10);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(30,42,58,.10);
  padding: 18px;
}
.card h3{margin:0 0 8px; font-size: 16px}
.card p{margin:0; color: rgba(30,42,58,.70); font-size: 14px}

/* PRICING */
.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.price{
  background:#fff;
  border:1px solid rgba(30,42,58,.10);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(30,42,58,.10);
  padding: 20px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.price h3{margin:0}
.price__big{
  font-weight: 900;
  font-size: 38px;
}
.price__big span{font-size: 14px; color: rgba(30,42,58,.60)}
.price__small{color: rgba(30,42,58,.62); margin-top: -10px}
.price ul{margin: 8px 0 0; padding-left: 18px; color: rgba(30,42,58,.72)}
.price li{margin: 6px 0}
.price--featured{
  transform: translateY(-6px);
  border-color: rgba(47,95,122,.22);
  box-shadow: 0 24px 60px rgba(47,95,122,.18);
}
.badge{
  align-self:flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(233,216,198,.85);
  font-weight: 900;
  font-size: 12px;
}

/* CASES */
.casegrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.case{
  background:#fff;
  border:1px solid rgba(30,42,58,.10);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(30,42,58,.10);
  padding: 18px;
}
.case h3{margin:0 0 8px}
.case p{margin:0; color: rgba(30,42,58,.70); font-size: 14px}

/* DEMO */
.demo{
  padding: 56px 0;
}
.demo__inner{
  background: #fff;
  border:1px solid rgba(30,42,58,.10);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 22px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.demo__email{
  margin-top: 12px;
  display:flex;
  gap:10px;
  color: rgba(30,42,58,.70);
}
.form label{display:grid; gap:6px; margin-bottom: 12px}
.form span{font-size: 12px; color: rgba(30,42,58,.70); font-weight: 700}
input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 16px;
  border:1px solid rgba(30,42,58,.14);
  background: rgba(247,244,239,.55);
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(47,95,122,.35);
  box-shadow: 0 0 0 6px rgba(47,95,122,.10);
}
.fine{margin: 10px 0 0; color: rgba(30,42,58,.55); font-size: 12px}

/* FOOTER */
.footer{
  padding: 30px 0;
  border-top: 1px solid rgba(30,42,58,.08);
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
}
.footbrand{display:flex; align-items:center; gap:10px}
.footlinks{display:flex; gap:14px; color: rgba(30,42,58,.70)}
.footlinks a{padding: 8px 10px; border-radius: 999px}
.footlinks a:hover{background: rgba(30,42,58,.06)}
.footer__bottom{
  margin-top: 12px;
  display:flex;
  justify-content:space-between;
  color: rgba(30,42,58,.60);
  font-size: 13px;
  flex-wrap:wrap;
  gap: 10px;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .nav__links{display:none}
  .hero__grid{grid-template-columns: 1fr}
  .device{min-height: 380px}
  .laptop{margin: 0}
  .phone{right: 0}
  .tiles{grid-template-columns: 1fr}
  .grid{grid-template-columns: 1fr}
  .pricing{grid-template-columns: 1fr}
  .casegrid{grid-template-columns: 1fr}
  .demo__inner{grid-template-columns: 1fr}
}
