
:root {
  --ag-bg: #0B0A09;
  --ag-bg-2: #120F0D;
  --ag-panel: #17120F;
  --ag-panel-2: #1D1713;
  --ag-text: #F5F0E8;
  --ag-text-2: #CFC6BA;
  --ag-muted: #91877C;
  --ag-copper: #C2714F;
  --ag-copper-bright: #D99066;
  --ag-copper-deep: #7A3D29;
  --ag-border: rgba(245,240,232,.12);
  --ag-border-strong: rgba(194,113,79,.48);
  --ag-glow: rgba(194,113,79,.32);
  --ag-green: #7ED17C;
  --ag-red: #D9604B;
  --ag-radius: 28px;
  --ag-radius-sm: 16px;
  --ag-max: 1180px;
  --ag-display: "Playfair Display", "Freight Display Pro", Georgia, serif;
  --ag-body: "DM Sans", "Neue Haas Grotesk Text", Inter, Arial, sans-serif;
  --ag-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 72% 4%, rgba(194,113,79,.18), transparent 30%),
    radial-gradient(circle at 20% 28%, rgba(194,113,79,.08), transparent 38%),
    linear-gradient(180deg, #0B0A09 0%, #0D0B0A 54%, #080706 100%);
  color: var(--ag-text);
  font-family: var(--ag-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }

html, body { overflow-x: hidden; }
.ag-page {
  min-height: 100vh;
  position: relative;
}

.ag-noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.08));
  z-index: 0;
}

.ag-wrap {
  width: min(var(--ag-max), calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ag-header {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(245,240,232,.06);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(11, 10, 9, 0.95);
}

.ag-logo {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  min-width: 154px;
}

.ag-logo-word {
  font-family: var(--ag-display);
  font-size: 29px;
  line-height: 1;
  letter-spacing: -.035em;
  color: var(--ag-text);
}

.ag-logo-sub {
  color: var(--ag-muted);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.ag-nav {
  display: flex;
  align-items: center;
  gap: 21px;
  color: var(--ag-text-2);
  font-size: 13px;
}

.ag-nav a {
  opacity: .82;
  transition: color .2s ease, opacity .2s ease;
}

.ag-nav a:hover,
.ag-nav a.active {
  color: var(--ag-text);
  opacity: 1;
}

.ag-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.ag-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.ag-btn:hover { transform: translateY(-1px); }

.ag-btn-primary {
  color: #160D09;
  background: linear-gradient(180deg, #E09A72, var(--ag-copper));
  box-shadow: 0 12px 32px rgba(194,113,79,.28), inset 0 1px 0 rgba(255,255,255,.34);
}

.ag-btn-secondary {
  color: var(--ag-text);
  border-color: var(--ag-border-strong);
  background: rgba(194,113,79,.08);
}

.ag-btn-text {
  color: var(--ag-text);
  padding: 0;
  min-height: auto;
}

.ag-hero {
  padding: 86px 0 72px;
  position: relative;
}

.ag-hero-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 40px;
  align-items: center;
}

.ag-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ag-copper-bright);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 22px;
}

.ag-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--ag-copper), transparent);
}

.ag-h1, .ag-h2, .ag-h3 {
  margin: 0;
  font-family: var(--ag-display);
  color: var(--ag-text);
  letter-spacing: -.045em;
  font-weight: 600;
}

.ag-h1 {
  font-size: clamp(54px, 6.6vw, 86px);
  line-height: .94;
  max-width: 760px;
}

.ag-h2 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.03;
}

.ag-h3 {
  font-size: 28px;
  line-height: 1.08;
}

.ag-lede {
  color: var(--ag-text-2);
  font-size: 18px;
  line-height: 1.7;
  max-width: 570px;
  margin: 24px 0 32px;
}

.ag-hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ag-visual-frame {
  position: relative;
  padding: 12px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 76%, rgba(194,113,79,.26), transparent 34%),
    linear-gradient(180deg, rgba(245,240,232,.055), rgba(245,240,232,.015));
  border: 1px solid rgba(245,240,232,.09);
  box-shadow: 0 28px 120px rgba(0,0,0,.5), 0 0 90px rgba(194,113,79,.12);
}

.ag-section {
  padding: 76px 0;
}

.ag-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.ag-section-copy {
  color: var(--ag-text-2);
  font-size: 17px;
  line-height: 1.65;
  max-width: 600px;
}

.ag-card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ag-card {
  background:
    linear-gradient(180deg, rgba(245,240,232,.052), rgba(245,240,232,.015)),
    radial-gradient(circle at 50% 10%, rgba(194,113,79,.12), transparent 48%),
    var(--ag-panel);
  border: 1px solid var(--ag-border);
  border-radius: var(--ag-radius);
  padding: 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
  position: relative;
  overflow: hidden;
}

.ag-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.08), transparent 28%, transparent 72%, rgba(194,113,79,.08));
  opacity: .8;
}

.ag-card > * { position: relative; z-index: 1; }

.ag-card-kicker {
  color: var(--ag-copper-bright);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  margin-bottom: 14px;
}

.ag-card-title {
  font-family: var(--ag-display);
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -.035em;
  margin: 0 0 12px;
}

.ag-card-body {
  color: var(--ag-text-2);
  line-height: 1.62;
  font-size: 15px;
  margin: 0 0 22px;
}

.ag-card-visual {
  margin-top: 18px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(245,240,232,.08);
  background: rgba(0,0,0,.24);
}

.ag-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ag-cap {
  border: 1px solid var(--ag-border);
  border-radius: 22px;
  padding: 20px;
  background: rgba(245,240,232,.026);
}

.ag-cap-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--ag-copper-bright);
  border: 1px solid rgba(194,113,79,.35);
  background: rgba(194,113,79,.08);
  margin-bottom: 16px;
  font-family: var(--ag-mono);
}

.ag-cap h4 {
  margin: 0 0 8px;
  color: var(--ag-text);
  font-size: 16px;
}

.ag-cap p {
  margin: 0;
  color: var(--ag-text-2);
  font-size: 14px;
  line-height: 1.55;
}

.ag-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(194,113,79,.36);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(245,240,232,.045), rgba(245,240,232,.015)),
    rgba(15,13,12,.86);
  box-shadow: 0 20px 80px rgba(0,0,0,.28), 0 0 50px rgba(194,113,79,.08);
}

.ag-metric {
  padding: 24px 22px;
  border-right: 1px solid rgba(245,240,232,.09);
}

.ag-metric:last-child { border-right: 0; }

.ag-metric-value {
  color: var(--ag-copper-bright);
  font-family: var(--ag-display);
  font-size: 43px;
  line-height: 1;
  letter-spacing: -.035em;
}

.ag-metric-label {
  margin-top: 8px;
  color: var(--ag-text-2);
  font-size: 13px;
  line-height: 1.35;
}

.ag-cta {
  border-radius: 38px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 32px;
  align-items: center;
  border: 1px solid rgba(194,113,79,.36);
  background:
    radial-gradient(circle at 74% 48%, rgba(194,113,79,.22), transparent 36%),
    linear-gradient(180deg, rgba(245,240,232,.05), rgba(245,240,232,.015)),
    var(--ag-panel);
  overflow: hidden;
}

.ag-footer {
  padding: 42px 0 52px;
  border-top: 1px solid rgba(245,240,232,.08);
  color: var(--ag-muted);
}

.ag-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: start;
}

.ag-footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
}

.ag-footer-links a { color: var(--ag-text-2); opacity: .86; }

@media (max-width: 980px) {
  .ag-nav { display: none; }
  .ag-hero-grid, .ag-cta { grid-template-columns: 1fr; }
  .ag-card-grid-3, .ag-cap-grid { grid-template-columns: 1fr; }
  .ag-section-head { display: block; }
  .ag-section-copy { margin-top: 16px; }
}

@media (max-width: 640px) {
  .ag-wrap { width: min(100% - 32px, var(--ag-max)); }
  .ag-header { height: auto; padding: 20px 0; align-items: flex-start; }
  .ag-actions { display: none; }
  .ag-hero { padding: 54px 0 42px; }
  .ag-h1 { font-size: 46px; }
  .ag-lede { font-size: 16px; }
  .ag-metrics { grid-template-columns: repeat(2, 1fr); }
  .ag-metric:nth-child(2) { border-right: 0; }
  .ag-metric:nth-child(1), .ag-metric:nth-child(2) { border-bottom: 1px solid rgba(245,240,232,.09); }
  .ag-card, .ag-cta { padding: 22px; }
  .ag-footer-inner { display: block; }
  .ag-footer-links { margin-top: 24px; }
}
