/* ═══════════════════════════════════════════════════════════
   Axis — site styles (index.html; privacy.html is a redirect stub)
   Palette and type mirror the app (src/constants/theme.ts):
   brand #5C2D91, ink #1A1A2E, DM Sans. Gabarito carries the
   display type; DM Mono carries prices and labels.
   ═══════════════════════════════════════════════════════════ */

:root {
  --brand:       #5F2F96;
  --brand-deep:  #4A2070;
  --brand-lift:  #B490EC;
  --brand-tint:  #F3EEFF;
  --brand-line:  #E3D9F4;

  --paper:       #FCFBFE;
  --paper-alt:   #F5F1FB;
  --card:        #FFFFFF;

  --ink:         #1A1A2E;
  --ink-soft:    #57536D;
  --ink-mute:    #8D89A2;
  --on-brand:    #FFFFFF;
  --on-brand-soft:#DACCF2;

  --verified:    #2E9E5B;
  --line:        #E9E3F3;

  --display: "Gabarito", "Trebuchet MS", sans-serif;
  --sans:    "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:    "DM Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --shell: 1080px;
  --gap:   28px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gap);
}

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--brand-lift);
  outline-offset: 3px;
  border-radius: 4px;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 52px;
  padding: 0 27px;
  border-radius: 26px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  background: #FFFFFF;
  color: var(--brand-deep);
  border: none;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 6px 20px rgba(30, 8, 60, 0.22);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(30, 8, 60, 0.28); }
.btn svg { flex: none; }

.btn-ink {
  background: var(--brand);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(95, 47, 150, 0.26);
}

/* ═══════════ purple band (hero + closing) ═══════════ */
.purple {
  position: relative;
  overflow: hidden;
  background: var(--brand);
  color: var(--on-brand);
}
.purple::before {
  content: "";
  position: absolute;
  width: 900px; height: 900px;
  top: -430px; right: -240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(190,150,255,0.42) 0%, rgba(190,150,255,0) 66%);
  pointer-events: none;
}
.purple > * { position: relative; z-index: 1; }

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0 0;
}
nav .nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
}
nav a { text-decoration: none; }
nav .nav-right .quiet { color: var(--on-brand-soft); transition: color 0.18s ease; }
nav .nav-right .quiet:hover { color: #FFFFFF; }
nav .btn { height: 44px; padding: 0 22px; font-size: 15px; }
@media (max-width: 640px) { nav .nav-right .quiet { display: none; } }

/* ═══════════ sections ═══════════ */
section { padding: 96px 0; }
@media (max-width: 760px) { section { padding: 68px 0; } }

h1, h2, h3 { text-wrap: balance; }

.sec-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: 24px 56px;
  align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 820px) {
  .sec-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 40px; }
}
.sec-head .eyebrow { color: var(--brand); margin-bottom: 14px; }
.sec-head h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(30px, 3.8vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
}
.sec-head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  padding-bottom: 5px;
}

/* ═══════════ footer ═══════════ */
footer {
  background: var(--paper-alt);
  border-top: 1px solid var(--line);
  padding: 52px 0 44px;
}
.foot-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.foot-top .wordmark { color: var(--ink); }
.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  font-size: 15px;
}
.foot-links a { color: var(--ink-soft); text-decoration: none; }
.foot-links a:hover { color: var(--brand); }
.foot-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 40px;
  padding-top: 22px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-mute);
}
.foot-bottom p { margin: 0; max-width: 56ch; }

/* ═══════════ motion ═══════════ */
.rise {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s cubic-bezier(0.2, 0.7, 0.3, 1),
              transform 0.65s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.rise.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rise { opacity: 1; transform: none; transition: none; }
  .btn { transition: none; }
}
