:root{
  --bg:#f7f7f7;
  --card:#ffffff;
  --ink:#141414;
  --muted:#4a4a4a;
  --muted2:#6a6a6a;
  --line:#dcdcdc;
  --soft:#efefef;
  --shadow: 0 22px 70px rgba(0,0,0,.07);
  --ok:#1f7a3f;
  --warn:#8a5a00;
}

/* Global */
*{box-sizing:border-box}
html{ -webkit-text-size-adjust:100%; }
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Links */
a{
  color:inherit;
  text-decoration: underline;
  text-decoration-color: rgba(20,20,20,.35);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover{ text-decoration-color: rgba(20,20,20,.70); }

/* Layout */
.wrap{
  max-width: 920px;
  margin: 0 auto;
  padding: 64px 22px 90px;
}
@media (max-width:520px){
  .wrap{ padding: 44px 18px 70px; }
}

/* Header */
header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
  margin-bottom: 28px;
}
@media (max-width:820px){
  header{ flex-direction: column; align-items: stretch; }
  .right{ text-align:left; min-width: 0; }
}

h1{
  margin:0;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.tag{
  margin: 12px 0 0;
  color: var(--muted);
  max-width: 70ch;
  font-size: 17px;
  line-height: 1.75;
}

/* Right side */
.right{
  text-align:right;
  min-width: 220px;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  font-size: 13px;
  line-height: 1;
  color:#2b2b2b;
  white-space:nowrap;
}
.cta{
  display:inline-block;
  margin-top: 12px;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.92);
  font-size: 14px;
  line-height: 1;
}
.cta strong{font-weight:800}
.cta:hover{ background: rgba(255,255,255,1); }

/* Sections */
section{ margin: 28px 0; }

/* Headings + text rhythm */
h2{
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
}
p{ margin: 0 0 14px; max-width: 72ch; }

.kicker{
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 10px;
  display:flex;
  align-items:baseline;
  gap: 10px;
}

/* Cards */
.note{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 26px;
  box-shadow: var(--shadow);
}
@media (max-width:520px){
  .note{ padding: 20px 18px; }
}

/* Font Awesome baseline fix */
i.fa-solid,
i.fa-regular,
i.fa-brands{
  display:inline-block;
  width: 1.15em;
  text-align:center;
  line-height: 1;
  vertical-align: -0.12em;
}

/* Header icon tweak */
h1 i.fa-regular.fa-envelope{
  font-size: 1em;
  vertical-align: top;
  position: relative;
  top: 3px;
}

/* Email icon styles */
.email-icon {
  width: 24px;
  height: 24px;
  vertical-align: top;
  position: relative;
  top: 3px;
  margin-right: 8px;
}

.email-icon-small {
  width: 16px;
  height: 16px;
  vertical-align: text-bottom;
  margin-right: 4px;
}

/* Hero readability */
.hero h2{
  font-size: clamp(22px, 3.2vw, 30px);
  line-height: 1.18;
  margin-bottom: 14px;
}
.hero p{
  font-size: 17px;
  line-height: 1.85;
  color: var(--muted);
}
.hero .kicker{ margin-bottom: 12px; }

/* Arrow list: bigger targets, more air, keeps your copy intact */
.arrowlist{
  list-style: none;
  padding-left: 0;
  margin: 14px 0 18px;
  max-width: 78ch;
}
.arrowlist li{
  display:grid;
  grid-template-columns: 28px 1fr;
  column-gap: 14px;
  align-items:start;
  padding: 10px 12px;
  margin: 10px 0;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  background: rgba(255,255,255,.70);
}
.arrowlist li strong{ font-weight: 800; }
.arrow{
  display:flex;
  align-items:center;
  justify-content:center;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: rgba(0,0,0,.04);
  color: rgba(20,20,20,.75);
  font: 15px/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  margin-top: 2px;
}

/* Callouts */
.callout{
  border-left: 4px solid var(--line);
  padding: 12px 14px;
  margin-top: 14px;
  color: var(--muted2);
  font-size: 16px;
  line-height: 1.7;
  background: rgba(0,0,0,.02);
  border-radius: 14px;
}
.callout.ok{ border-left-color: rgba(31,122,63,.35); }

/* Small text */
.small{
  color: var(--muted2);
  font-size: 14px;
}

/* Calendly */
.cal{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  min-height: 2000px;
  width: 100%;
  position: relative;
  padding: 5px;
}
.calendly-inline-widget{
  min-height: 2000px;
  width: 100%;
}

/* Ensure Calendly iframe takes full space */
.cal iframe {
  min-height: 2000px !important;
  height: auto !important;
  width: 100% !important;
  border: none !important;
}

/* Footer */
.footer{
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  text-align:center;
  color: var(--muted2);
  font-size: 13px;
}
.footer .row{
  display:flex;
  gap: 12px;
  justify-content:center;
  align-items:center;
  flex-wrap: wrap;
}

/* Header phrase highlight (unique, not bold/underline) */
.tag-highlight{
  padding: .12em .4em;
  border-radius: 10px;
  background: rgba(255, 214, 102, .22);
  box-shadow: inset 0 0 0 1px rgba(255, 214, 102, .35);
  color: var(--text);
  display: inline-block;
}

/* Big stat callout */
.spam-stat{
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(110, 231, 183, .10);
  box-shadow: inset 0 0 0 1px rgba(110, 231, 183, .25);
  font-size: 18px;
  line-height: 1.35;
}

.spam-stat__num{
  display: inline-block;
  padding: .10em .45em;
  border-radius: 12px;
  background: rgba(110, 231, 183, .18);
  box-shadow: inset 0 0 0 1px rgba(110, 231, 183, .35);
  color: var(--text);
  letter-spacing: .2px;
}
