/* self-hosted Inter — no third-party request, works offline */
@font-face{font-family:Inter;src:url(fonts/Inter-Regular.woff2) format('woff2');
  font-weight:400; font-style:normal; font-display:swap}
@font-face{font-family:Inter;src:url(fonts/Inter-SemiBold.woff2) format('woff2');
  font-weight:600; font-style:normal; font-display:swap}
@font-face{font-family:Inter;src:url(fonts/Inter-Bold.woff2) format('woff2');
  font-weight:700; font-style:normal; font-display:swap}

/* FeintRule — feintrule.com */
:root{
  --teal:#0E4F58; --teal-mid:#2E7C88; --teal-pale:#E4EFF1; --teal-tint:#F2F8F9;
  --amber:#B4720E; --amber-mid:#D89A2C; --amber-pale:#FBEFD7;
  --ink:#1B252A; --slate:#4B5862; --slate-mid:#7A868F;
  --rule:#D9DEE1; --paper:#fff; --cream:#FAF8F5;
  --max:1120px; --r:10px;
  --shadow:0 1px 2px rgba(14,79,88,.05), 0 12px 32px -12px rgba(14,79,88,.16);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0; background:var(--cream); color:var(--ink);
  font:400 17px/1.62 Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%; height:auto; display:block}
a{color:var(--teal)}
.wrap{max-width:var(--max); margin:0 auto; padding:0 28px}

/* ---------- type ---------- */
h1,h2,h3{margin:0; line-height:1.14; letter-spacing:-.022em; color:var(--teal)}
h1{font-size:clamp(2.6rem,6vw,4.3rem); font-weight:700}
h2{font-size:clamp(1.9rem,3.6vw,2.7rem); font-weight:700}
h3{font-size:1.16rem; font-weight:600; letter-spacing:-.01em}
p{margin:0 0 1.05em}
.lede{font-size:clamp(1.06rem,1.7vw,1.24rem); color:var(--slate); max-width:62ch}
.eyebrow{
  font-size:.735rem; font-weight:700; letter-spacing:.19em; text-transform:uppercase;
  color:var(--amber); margin:0 0 14px;
}
.muted{color:var(--slate-mid)}
.small{font-size:.9rem}

/* ---------- mark ---------- */
.mark{display:flex; align-items:center; gap:11px; text-decoration:none; color:inherit}
.mark svg{display:block}
.mark b{font-weight:700; letter-spacing:.15em; font-size:.95rem; color:var(--teal)}

/* ---------- header ---------- */
header{
  position:sticky; top:0; z-index:50; background:rgba(250,248,245,.9);
  backdrop-filter:saturate(180%) blur(10px); border-bottom:1px solid var(--rule);
}
header .wrap{display:flex; align-items:center; gap:26px; height:68px}
nav{margin-left:auto; display:flex; align-items:center; gap:26px}
nav a{
  text-decoration:none; color:var(--slate); font-size:.93rem; font-weight:600;
}
nav a:hover{color:var(--teal)}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:9px; text-decoration:none;
  padding:13px 22px; border-radius:999px; font-weight:600; font-size:.95rem;
  border:1.5px solid transparent; transition:.16s ease; white-space:nowrap;
}
.btn-primary{background:var(--teal); color:#fff}
.btn-primary:hover{background:#0a3d45; transform:translateY(-1px)}
.btn-amber{background:var(--amber-mid); color:#23180a}
.btn-amber:hover{background:#c98c22; transform:translateY(-1px)}
.btn-ghost{border-color:var(--rule); color:var(--teal); background:#fff}
.btn-ghost:hover{border-color:var(--teal-mid)}
.btn-sm{padding:9px 17px; font-size:.88rem}

/* ---------- layout ---------- */
section{padding:82px 0}
.section-tint{background:var(--teal-tint); border-block:1px solid var(--teal-pale)}
.section-dark{background:var(--teal); color:#fff}
.section-dark h2,.section-dark h3{color:#fff}
.section-dark .lede{color:#B9D4D9}
.section-dark .eyebrow{color:var(--amber-mid)}
.grid{display:grid; gap:34px}
.g2{grid-template-columns:repeat(2,1fr)}
.g3{grid-template-columns:repeat(3,1fr)}
.g4{grid-template-columns:repeat(4,1fr)}
.split{display:grid; grid-template-columns:1.02fr .98fr; gap:56px; align-items:center}
.center{text-align:center}
.center .lede{margin-inline:auto}
.stack-sm > * + *{margin-top:10px}

/* ---------- hero ---------- */
.hero{padding:76px 0 64px}
.hero .split{gap:64px}
/* The fan overlaps itself, so give the image column more room than it looks
   like it needs - otherwise three cards read as one small smudge. Scoped to
   wide screens: :has() outspecifies the stacking media query below, so an
   unscoped rule would keep the hero two-up on a phone. */
@media (min-width:901px){
  .hero .split:has(.shot-fan){grid-template-columns:.92fr 1.08fr; gap:48px}
}
.hero h1 span{color:var(--amber)}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:30px}
.hero-note{margin-top:18px; font-size:.87rem; color:var(--slate-mid)}

/* ---------- page shots ---------- */
.shot{
  border:1px solid var(--rule); border-radius:var(--r); overflow:hidden;
  background:#fff; box-shadow:var(--shadow);
}
.shot img{width:100%}
.shot-tilt{transform:rotate(-1.1deg)}

/* three-up fan: the line, not one product. Transforms only - the grid still
   governs the box, so nothing can spill into the next section. */
.shot-fan{display:grid; grid-template-columns:repeat(3,1fr); align-items:center}
.shot-fan .shot{transform:rotate(-5deg)}
.shot-fan .shot:nth-child(1){margin-right:-16%}
.shot-fan .shot:nth-child(2){
  position:relative; z-index:2; transform:scale(1.12); box-shadow:0 2px 4px rgba(14,79,88,.06),0 22px 44px -14px rgba(14,79,88,.28);
}
.shot-fan .shot:nth-child(3){margin-left:-16%; transform:rotate(5deg)}
/* cropped thumbnails: show the identifying top of a page, not all 3:4 of it */
.thumb img{aspect-ratio:1/1; object-fit:cover; object-position:top center}
.thumb-wide img{aspect-ratio:5/4; object-fit:cover; object-position:top center}

/* ---------- cards ---------- */
.card{
  background:#fff; border:1px solid var(--rule); border-radius:var(--r);
  padding:26px; box-shadow:var(--shadow);
}
.card h3{margin-bottom:7px}
.card p{margin:0; font-size:.95rem; color:var(--slate)}
.card-img{padding:0; overflow:hidden}
.card-img img{width:100%; border-bottom:1px solid var(--rule)}
.card-img .body{padding:22px 24px 26px}

.feature{border-left:3px solid var(--amber-mid); padding-left:18px}
.feature h3{margin-bottom:6px}
.feature p{margin:0; color:var(--slate); font-size:.96rem}

/* beliefs — the brand argument, numbered so it reads as a manifesto */
.belief{background:#fff; border:1px solid var(--rule); border-radius:var(--r);
  padding:28px 30px 30px; box-shadow:var(--shadow)}
.belief .num{
  display:inline-block; font-size:.78rem; font-weight:700; letter-spacing:.16em;
  color:var(--amber); margin-bottom:12px;
}
.belief h3{font-size:1.24rem; margin-bottom:9px}
.belief p{margin:0; color:var(--slate); font-size:.97rem}

/* what's next — deliberately unnamed */
.next{border-left:3px solid var(--teal-mid); padding:4px 0 4px 18px; background:none}
.next h3{margin-bottom:5px; font-size:1.05rem}
.next p{margin:0; color:var(--slate); font-size:.94rem}

/* the one-line argument on a product card */
.tag{font-style:normal; font-weight:700; font-size:.74rem; letter-spacing:.14em;
  text-transform:uppercase; color:var(--amber); margin-right:7px}

/* numbered ceiling list */
.ceiling{list-style:none; margin:0; padding:0}
.ceiling li{display:flex; gap:15px; align-items:flex-start; padding:13px 0;
  border-bottom:1px solid var(--rule)}
.ceiling li:last-child{border-bottom:0}
.ceiling .n{
  flex:0 0 34px; height:34px; border-radius:8px; background:var(--teal); color:#fff;
  display:grid; place-items:center; font-weight:700; font-size:.98rem;
}
.ceiling .n.acc{background:var(--amber-mid); color:#23180a}
.ceiling strong{display:block; font-weight:600; color:var(--teal)}
.ceiling span{font-size:.93rem; color:var(--slate)}

/* stats */
.stats{display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center}
.stats b{display:block; font-size:clamp(1.9rem,3.4vw,2.5rem); font-weight:700;
  color:var(--teal); letter-spacing:-.03em; line-height:1}
.section-dark .stats b{color:#fff}
.stats span{display:block; margin-top:7px; font-size:.75rem; font-weight:700;
  letter-spacing:.15em; text-transform:uppercase; color:var(--slate-mid)}
.section-dark .stats span{color:#8FB8BF}

/* device rows */
.device{display:flex; align-items:center; gap:14px; padding:15px 18px;
  border:1px solid var(--rule); border-radius:var(--r); background:#fff}
.device .dot{width:9px; height:9px; border-radius:50%; background:var(--amber-mid); flex:0 0 auto}
.device .dot.mono{background:var(--slate-mid)}
.device b{font-weight:600; color:var(--teal); font-size:.99rem}
.device em{font-style:normal; margin-left:auto; font-size:.79rem; font-weight:600;
  letter-spacing:.1em; text-transform:uppercase; color:var(--slate-mid)}

/* price block */
.buy{
  background:#fff; border:1px solid var(--rule); border-radius:14px; padding:30px;
  box-shadow:var(--shadow);
}
.price{display:flex; align-items:baseline; gap:11px; margin-bottom:6px}
.price b{font-size:2.5rem; font-weight:700; color:var(--teal); letter-spacing:-.03em}
.price span{font-size:.92rem; color:var(--slate-mid)}
.buy ul{list-style:none; margin:20px 0 24px; padding:0}
.buy li{position:relative; padding-left:26px; margin-bottom:9px; font-size:.95rem;
  color:var(--slate)}
.buy li::before{
  content:""; position:absolute; left:0; top:.52em; width:13px; height:7px;
  border-left:2px solid var(--amber-mid); border-bottom:2px solid var(--amber-mid);
  transform:rotate(-45deg);
}

/* callout */
.callout{
  background:var(--amber-pale); border:1px solid #EBD5A8; border-left:4px solid var(--amber-mid);
  border-radius:var(--r); padding:20px 24px;
}
.callout strong{color:var(--amber)}
.callout p{margin:0; font-size:.95rem; color:#4a3a1c}

/* faq */
.faq{border-top:1px solid var(--rule)}
.faq details{border-bottom:1px solid var(--rule); padding:20px 0}
.faq summary{
  cursor:pointer; font-weight:600; color:var(--teal); font-size:1.02rem;
  list-style:none; display:flex; justify-content:space-between; gap:20px;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+"; color:var(--amber); font-weight:700; font-size:1.3rem;
  line-height:1}
.faq details[open] summary::after{content:"–"}
.faq p{margin:12px 0 0; color:var(--slate); font-size:.96rem; max-width:70ch}

/* cta band */
.cta-band{background:var(--teal); color:#fff; padding:74px 0; text-align:center}
.cta-band h2{color:#fff; margin-bottom:14px}
.cta-band p{color:#B9D4D9; max-width:56ch; margin-inline:auto}
.cta-band .btn{margin-top:24px}

/* footer */
footer{background:#0a3d45; color:#8FB8BF; padding:44px 0; font-size:.9rem}
footer .wrap{display:flex; gap:22px; align-items:center; flex-wrap:wrap}
footer a{color:#B9D4D9; text-decoration:none}
footer a:hover{color:#fff}
footer .sp{margin-left:auto}

/* ---------- responsive ---------- */
@media (max-width:900px){
  .split{grid-template-columns:1fr; gap:38px}
  .g3,.g4{grid-template-columns:repeat(2,1fr)}
  .stats{grid-template-columns:repeat(2,1fr); gap:30px}
  section{padding:62px 0}
}
@media (max-width:620px){
  .wrap{padding:0 20px}
  .g2,.g3,.g4{grid-template-columns:1fr}
  nav .navlink{display:none}
  header .wrap{height:60px}
  .hero{padding:48px 0 44px}
  .shot-tilt{transform:none}
  /* the fan needs room the phone doesn't have — show the middle card only */
  .shot-fan{grid-template-columns:1fr}
  .shot-fan .shot:nth-child(1),.shot-fan .shot:nth-child(3){display:none}
  .shot-fan .shot:nth-child(2){transform:none; margin:0}
  .belief{padding:24px 22px 26px}
}
