/* assets/css/transformoutperform.css */

:root{
  --bg: #ffffff;
  --ink: #0f172a;          /* slate-900-ish */
  --muted: #475569;        /* slate-600-ish */
  --rule: rgba(15, 23, 42, 0.10);
  --max: 980px;
  --pad: clamp(20px, 4vw, 44px);

  --serif: "Instrument Serif", ui-serif, Georgia, "Times New Roman", serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";

  --h1: clamp(44px, 6vw, 74px);
  --lead: clamp(18px, 2.1vw, 22px);
  --p: clamp(16px, 1.35vw, 18px);
  --small: 14px;
  --line: 1.65;
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: var(--line);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a{
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(15,23,42,.25);
}
a:hover{ border-bottom-color: rgba(15,23,42,.6); }

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: calc(var(--pad) * 1.25) var(--pad);
}

header{
  text-align: center;
  padding-top: 24px;
  padding-bottom: 22px;
}

h1{
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  font-size: var(--h1);
  margin: 0 0 10px 0;
  line-height: 1.04;
}

.sub{
  font-size: var(--lead);
  color: var(--muted);
  margin: 0 auto;
  max-width: 52ch;
}

.micro{
  margin-top: 14px;
  font-family: var(--serif);
  font-style: italic;
  color: rgba(15,23,42,.65);
  font-size: clamp(16px, 1.6vw, 18px);
}

hr{
  border: 0;
  height: 1px;
  background: var(--rule);
  margin: 38px 0;
}

main{ padding-bottom: 14px; }

.statement{
  text-align: center;
  max-width: 62ch;
  margin: 0 auto;
  padding: 4px 0;
}

.statement p{
  margin: 14px 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
  color: rgba(15,23,42,.92);
}

.statement p strong{
  font-weight: 600;
  font-family: var(--sans);
  letter-spacing: -0.01em;
}

.thesis{
  text-align: center;
  max-width: 68ch;
  margin: 22px auto 0;
  font-size: var(--p);
  color: rgba(15,23,42,.82);
}

.two-col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 5vw, 60px);
  align-items: start;
}

.card h2{
  font-family: var(--sans);
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: none;
  margin: 0 0 10px 0;
  color: rgba(15,23,42,.86);
}

ul{
  margin: 0;
  padding-left: 18px;
  color: rgba(15,23,42,.80);
  font-size: var(--p);
}
li{ margin: 10px 0; }

.for{
  text-align: center;
  max-width: 72ch;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(18px, 1.9vw, 22px);
  color: rgba(15,23,42,.80);
  line-height: 1.55;
}
.for em{
  font-style: italic;
  color: rgba(15,23,42,.92);
}

.auth{
  max-width: 78ch;
  margin: 0 auto;
  font-size: var(--p);
  color: rgba(15,23,42,.78);
}
.auth em{ font-style: italic; }

.cta{
  text-align: center;
  max-width: 70ch;
  margin: 0 auto;
  font-size: var(--p);
  color: rgba(15,23,42,.78);
}

footer{
  text-align: center;
  padding-top: 6px;
  font-size: var(--small);
  color: rgba(15,23,42,.55);
}

/* Responsive */
@media (max-width: 820px){
  .two-col{ grid-template-columns: 1fr; }
  hr{ margin: 30px 0; }
  .statement p{ margin: 12px 0; }
}

/* Respect reduced motion (we're not animating, but keep it tidy) */
@media (prefers-reduced-motion: reduce){
  * { scroll-behavior: auto !important; }
}