/* Suri Ninio Consulting - site styles
   One stylesheet for every page.

   The palette and type come off the company invoice: navy 1F3864, Helvetica,
   white paper, hairline rules, small grey uppercase labels, figures right.
   Nothing decorative. If a rule here is only making something prettier and
   not clearer, it does not belong. */

:root{
  --paper:#FFFFFF;
  --paper-2:#F7F8FA;      /* alternating section tint */
  --navy:#1F3864;         /* headings, bars, primary button */
  --navy-deep:#16294A;    /* hover */
  --ink:#1A1A1A;          /* body copy at full strength */
  --ink-2:#555555;        /* secondary copy - the invoice body grey */
  --muted:#8A8A8A;        /* labels, captions - the invoice label grey */
  --line:#E2E6EB;         /* hairlines - lighter, so they recede */
  --line-2:#EDEFF2;       /* softer hairlines inside cards */

  --sans:-apple-system,BlinkMacSystemFont,'Segoe UI','Helvetica Neue',Helvetica,Arial,sans-serif;

  --pad:clamp(20px,5vw,56px);
  --maxw:1080px;
  --r:3px;                /* the invoice has square corners; 3px is the most give it gets */
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  background:var(--paper);
  color:var(--ink);
  font-family:var(--sans);
  font-size:17px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto}
:focus-visible{outline:2.5px solid var(--navy);outline-offset:3px;border-radius:var(--r)}

/* tabular figures - every number on this site lines up in a column */
.n{font-variant-numeric:tabular-nums;font-feature-settings:"tnum" 1}

.wrap{max-width:var(--maxw);margin:0 auto;padding-left:var(--pad);padding-right:var(--pad)}

h1,h2,h3,h4{font-weight:600;color:var(--navy);letter-spacing:-.022em;line-height:1.08}
h1{font-size:clamp(38px,6.4vw,74px);letter-spacing:-.032em}
h2{font-size:clamp(23px,2.9vw,31px)}
h3{font-size:clamp(17px,1.7vw,19px);letter-spacing:-.005em}
p{max-width:64ch}
p + p{margin-top:15px}
strong{font-weight:700}

/* The invoice's BILL TO / PERIOD / AMOUNT label. Used for section eyebrows. */
.label{
  font-size:11.5px;
  font-weight:700;
  letter-spacing:.13em;
  text-transform:uppercase;
  color:var(--muted);
}

.lede{font-size:clamp(16.5px,1.5vw,18px);color:var(--ink-2);max-width:46ch;line-height:1.65}
.small{font-size:14.5px;color:var(--ink-2)}
.caption{font-size:13px;color:var(--muted)}

/* skip link - first in the tab order, invisible until focused */
.skip{position:absolute;left:-9999px;top:0;z-index:100}
.skip:focus{
  left:12px;top:12px;padding:10px 16px;
  background:var(--navy);color:#fff;border-radius:var(--r);
}

/* ---------- header ---------- */

.site-head{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.96);
  backdrop-filter:saturate(1.6) blur(6px);
  border-bottom:1px solid var(--line);
}
.site-head .wrap{display:flex;align-items:center;gap:24px;height:66px}
.brand{font-weight:600;color:var(--navy);font-size:15px;letter-spacing:.005em;white-space:nowrap}
.brand span{color:var(--ink-2);font-weight:400}
/* The nav is at most one button now, so it never needs to collapse. */
.nav{margin-left:auto;display:flex;align-items:center;gap:26px}
.nav a{font-size:15px;color:var(--ink-2)}
.nav a:hover{color:var(--navy)}
.nav .btn{color:#fff;white-space:nowrap}

/* On a phone the wordmark and the button share 375px. The button gives up its
   padding rather than wrapping to two lines and bursting out of the header. */
@media (max-width:560px){
  .site-head .wrap{gap:12px}
  .brand{font-size:15px}
  .nav .btn{padding:9px 13px;font-size:13.5px}
}

/* ---------- buttons ---------- */

/* Outlined, letter-spaced, small. A filled block is a SaaS call to action;
   this is a card being handed over. It fills in on hover so it still reads
   as a button and not as text. */
.btn{
  display:inline-block;
  padding:15px 28px;
  border:1px solid var(--navy);
  border-radius:0;
  background:transparent;color:var(--navy);
  font-size:12.5px;font-weight:600;
  letter-spacing:.1em;text-transform:uppercase;
  cursor:pointer;
  transition:background .16s ease,color .16s ease;
}
.btn:hover{background:var(--navy);color:#fff}
.btn-quiet{background:transparent;color:var(--navy);border-color:var(--line)}
.btn-quiet:hover{background:var(--paper-2);border-color:var(--navy)}
.btn[disabled]{opacity:.55;cursor:default}

/* ---------- the page ---------- */

/* The home page is one statement and one form. The stage is what holds the
   statement: a lot of air, one column, nothing competing with the sentence.
   If a section ever comes back, .section and .grid come back with it. */
/* The statement gets the first screen to itself, optically centered rather
   than parked at the top. A sparse page only reads as deliberate at scale. */
.stage{padding:clamp(72px,11vw,150px) 0 clamp(56px,8vw,110px)}
body.single .stage:first-of-type{
  min-height:calc(100svh - 66px);
  display:flex;align-items:center;
  padding-top:clamp(48px,7vw,96px);padding-bottom:clamp(48px,7vw,96px);
}
.stage h1{max-width:14ch}
.stage .lede{margin-top:26px}
.stage .actions{margin-top:44px;display:flex;gap:12px;flex-wrap:wrap}

.direct{margin-top:26px;font-size:15px}

.mail{color:var(--navy);font-weight:600}
.mail:hover{text-decoration:underline;text-underline-offset:2px}

/* A single-statement page needs no menu - there is nowhere else to go. */
body.single .site-head .wrap{gap:0}


/* ---------- footer ---------- */

.site-foot{border-top:1px solid var(--line);padding:46px 0;background:var(--paper)}
.site-foot .wrap{display:flex;flex-wrap:wrap;gap:18px;align-items:baseline;justify-content:space-between}
.site-foot .brand{font-size:15px}
.site-foot a{color:var(--ink-2);font-size:14.5px}
.site-foot a:hover{color:var(--navy)}
.foot-links{display:flex;gap:20px;flex-wrap:wrap}
.foot-legal{font-size:13px;color:var(--muted);width:100%}

/* ---------- prose pages (privacy, terms) ---------- */

.prose{padding:clamp(48px,6vw,80px) 0;max-width:72ch}
.prose h1{margin-bottom:10px}
.prose h2{font-size:21px;margin:34px 0 10px}
.prose h3{font-size:16.5px;margin:24px 0 8px;color:var(--ink)}
.prose p,.prose li{color:var(--ink-2);font-size:16px}
.prose p{margin-bottom:14px}
.prose ul{margin:0 0 14px 20px}
.prose li{margin-bottom:7px}
.prose .updated{color:var(--muted);font-size:14px;margin-bottom:28px}
.prose .label{display:block;margin-bottom:10px}
.prose a{color:var(--navy);font-weight:600;text-decoration:underline;text-underline-offset:2px}
.prose h2 + p{margin-top:0}
/* Block, not inline-block, so the rule above it runs the width of the column
   and reads as the end of the document rather than a stray dash. */
.back{display:block;margin-top:38px;padding-top:22px;border-top:1px solid var(--line);
  color:var(--ink-2);font-size:15px}
.back:hover{color:var(--navy)}

@media print{
  .site-head,.nav,.btn{display:none}
  body{font-size:12pt;color:#000}
}
