/* Andazza — andazza.com
   ----------------------------------------------------------------------------------------------
   Plain CSS, no build step. This has to drop onto GoDaddy shared hosting by uploading files, and
   render even if something external is slow.

   BRAND — taken from the logo artwork, not invented:
     #171A1F  ink        the bar under the mark
     #DC3B22  accent     the chevron. Used sparingly, exactly as the logo uses it — one red element
                         against black and grey. Spending it everywhere would flatten the mark.
     #5F636C  body text
     #8A8D96  muted
     #EFF1F4  surface
     #E2E4E9  rules
   Typeface is Poppins, matching the wordmark. Loaded from Google Fonts here because a public site is
   online by definition; the pitch deck embeds it instead, since decks get presented offline.
   ---------------------------------------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --ink:       #171A1F;
  --ink-2:     #5F636C;
  --muted:     #8A8D96;
  --accent:    #DC3B22;
  --accent-dk: #B82F19;
  --surface:   #EFF1F4;
  --rule:      #E2E4E9;
  --paper:     #FBFBFC;

  --wrap: 1080px;
  --sans: "Poppins", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

h1, h2, h3 { letter-spacing: -.02em; text-wrap: balance; margin: 0; font-weight: 600; }
h1 { font-size: clamp(2.1rem, 5vw, 3.35rem); line-height: 1.1; font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); line-height: 1.22; }
h3 { font-size: 1.03rem; line-height: 1.35; }
p  { margin: 0 0 1.1em; color: var(--ink-2); max-width: 68ch; }
p strong { color: var(--ink); font-weight: 600; }
a { color: var(--accent); }

.eyebrow {
  display: block; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin-bottom: .8rem;
}

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 14px 28px;
  background: rgba(251,251,252,.94);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--rule);
}
.nav .logo { display: flex; align-items: center; text-decoration: none; }
.nav .logo img { height: 30px; width: auto; display: block; }
.nav nav { display: flex; align-items: center; gap: 26px; }
.nav nav a { color: var(--ink-2); text-decoration: none; font-size: .92rem; }
.nav nav a:hover { color: var(--ink); }
.nav .cta {
  color: var(--paper); background: var(--ink);
  padding: 9px 17px; border-radius: 4px; font-weight: 500;
}
.nav .cta:hover { background: var(--accent); color: #fff; }

/* ---------- hero ---------- */
.hero { padding: clamp(64px, 11vw, 128px) 0 clamp(56px, 9vw, 100px); border-bottom: 1px solid var(--rule); }
.hero .lede { font-size: clamp(1.05rem, 2.1vw, 1.26rem); max-width: 60ch; margin-top: 1.3em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 2.2em 0 1.4em; }
.hero-note { font-size: .92rem; color: var(--muted); margin: 0; }

.btn {
  display: inline-block; text-decoration: none; font-weight: 500; font-size: 1rem;
  padding: 13px 25px; border-radius: 4px;
  background: var(--ink); color: var(--paper); border: 1px solid var(--ink);
  transition: background .15s ease, border-color .15s ease;
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn.ghost:hover { border-color: var(--ink); background: transparent; color: var(--ink); }
.btn.big { padding: 16px 34px; font-size: 1.05rem; }

/* ---------- bands ---------- */
.band { background: var(--surface); border-bottom: 1px solid var(--rule); padding: clamp(56px, 8vw, 90px) 0; }
.band.dark { background: var(--ink); border-color: var(--ink); }
.band.dark h2, .band.dark b { color: var(--paper); }
.band.dark p { color: #A9ADB6; }
.band.dark .eyebrow { color: #6E727C; }
.section { padding: clamp(56px, 8vw, 90px) 0; }

/* ---------- cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 28px; margin-top: 2em; }
.card { border-top: 2px solid var(--ink); padding-top: 14px; }
.card h3 { margin-bottom: .5em; }
.card p { font-size: .95rem; margin: 0; }
.card.outline {
  border: 1px solid var(--rule); border-top: 2px solid var(--accent);
  padding: 20px 22px 22px; background: var(--paper); border-radius: 4px;
}

.pull {
  margin-top: 2.4em; font-size: clamp(1.1rem, 2.3vw, 1.38rem);
  color: var(--ink); max-width: 46ch; border-left: 3px solid var(--accent); padding-left: 22px;
}
.pull.small { font-size: 1rem; max-width: 62ch; }

/* ---------- steps ---------- */
.steps { list-style: none; padding: 0; margin: 2em 0 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(218px, 1fr)); gap: 0; }
.steps li { padding: 0 22px 0 0; }
.steps li + li { padding-left: 22px; border-left: 1px solid var(--rule); }
.steps .n { font-size: .76rem; font-weight: 700; letter-spacing: .1em; color: var(--accent); }
.steps h3 { margin: .5em 0 .5em; }
.steps p { font-size: .94rem; margin: 0; }
.after { margin-top: 2.4em; }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(188px, 1fr)); gap: 26px; margin: 2em 0 2.4em; }
.stats b {
  display: block; font-size: clamp(1.9rem, 4vw, 2.55rem); font-weight: 700;
  letter-spacing: -.03em; font-variant-numeric: tabular-nums; line-height: 1;
}
.stats span { display: block; margin-top: .6em; font-size: .89rem; color: #A9ADB6; line-height: 1.45; }

/* ---------- honesty ---------- */
.honest .aside {
  margin-top: 1.8em; padding-top: 1.2em; border-top: 1px solid var(--rule);
  font-size: .94rem; color: var(--muted);
}

/* ---------- contact ---------- */
.contact { background: var(--ink); color: var(--paper); padding: clamp(64px, 9vw, 100px) 0; text-align: center; }
.contact h2 { color: var(--paper); }
.contact p { color: #A9ADB6; margin-left: auto; margin-right: auto; }
.contact .btn { background: var(--accent); color: #fff; border-color: var(--accent); margin-top: .8em; }
.contact .btn:hover { background: var(--accent-dk); border-color: var(--accent-dk); }
.contact .fine { font-size: .9rem; color: #6E727C; margin-top: 2em; }

/* ---------- footer ---------- */
footer { padding: 26px 0; border-top: 1px solid var(--rule); }
footer .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
footer img { height: 24px; width: auto; display: block; }
footer span { font-size: .87rem; color: var(--muted); }

/* ---------- small screens ---------- */
@media (max-width: 760px) {
  /* Drop the section links on small screens and keep logo + the one action. Wrapping them made the
     STICKY header 152px tall -- a fifth of a phone screen, following the reader down the page. The
     links are anchors to sections they will scroll past anyway. */
  .nav { padding: 12px 20px; }
  .nav nav a:not(.cta) { display: none; }
  .nav .cta { padding: 9px 15px; font-size: .9rem; }
  .nav .logo img { height: 26px; }
  .steps li, .steps li + li { padding: 0 0 1.6em; border-left: 0; }
  .steps li + li { border-top: 1px solid var(--rule); padding-top: 1.6em; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
