:root {
  --aws-orange: #ff9900;
  --aws-orange-dark: #e87900;
  --ink: #080b18;
  --muted: #4b5568;
  --soft: #f7f7f5;
  --line: #e9e9e5;
  --card: #ffffff;
  --shadow: 0 18px 48px rgba(8, 11, 24, 0.045);
  --radius: 18px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Satoshi", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(calc(100% - 48px), var(--max-width)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 14px; font-size: 20px; font-weight: 600; letter-spacing: -0.03em; }
.brand-icon { width: 42px; height: 42px; }
.nav { display: flex; align-items: center; gap: clamp(24px, 4vw, 54px); color: #343849; font-size: 15px; }
.nav a { position: relative; padding: 34px 0 31px; }
.nav a.active, .nav a:hover { color: var(--ink); }
.nav a.active::after, .nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  height: 3px;
  border-radius: 999px;
  background: var(--aws-orange);
}

.section-pad { padding: clamp(92px, 11vw, 150px) 0; }
.section-pad-sm { padding: clamp(68px, 8vw, 96px) 0; }
.section-band { border-top: 1px solid var(--line); padding: clamp(66px, 8vw, 96px) 0; }

.hero { background: radial-gradient(circle at 50% 0%, #fbfbfa 0%, #fff 62%); }
.hero-inner { text-align: center; max-width: 800px; }
.eyebrow { margin: 0 0 18px; color: var(--aws-orange-dark); text-transform: uppercase; letter-spacing: 0.08em; font-size: 13px; font-weight: 750; }
.hero-eyebrow { margin-bottom: 22px; opacity: 0.95; }
.hero h1 {
  margin: 0;
  font-size: clamp(54px, 8vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  font-weight: 780;
}
.hero-subtitle {
  margin: 34px auto 0;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.22;
  letter-spacing: -0.045em;
  color: #3a3d4f;
  max-width: 700px;
}
.hero-copy {
  margin: 28px auto 0;
  max-width: 645px;
  font-size: 17px;
  color: #343849;
}
.hero-actions { display: flex; justify-content: center; gap: 32px; margin-top: 52px; flex-wrap: wrap; }
.button {
  min-width: 212px;
  min-height: 70px;
  padding: 0 30px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 17px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--aws-orange); color: #fff; box-shadow: 0 14px 32px rgba(255, 153, 0, 0.22); }
.button-primary:hover { background: var(--aws-orange-dark); box-shadow: 0 18px 38px rgba(255, 153, 0, 0.26); }
.button-secondary { border: 1.5px solid var(--aws-orange); color: var(--aws-orange-dark); background: #fff; }
.button-secondary:hover { background: #fff8ee; }

.about-grid { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: clamp(50px, 8vw, 120px); align-items: center; }
h2 { margin: 0; font-size: clamp(30px, 3.4vw, 42px); line-height: 1.14; letter-spacing: -0.045em; }
.about-copy p:not(.eyebrow), .contact-copy p, .service-card p, .contact-card p { color: var(--muted); }
.about-copy > p:not(.eyebrow) { margin: 24px 0 0; max-width: 720px; font-size: 18px; }
.founder-line { font-size: 16px !important; color: #505566 !important; }
.about-symbol { display: grid; grid-template-columns: 1px 1fr; gap: clamp(44px, 5vw, 84px); align-items: center; justify-content: end; min-height: 160px; }
.vertical-rule { width: 1px; height: 186px; background: var(--line); }
.symbol-circle { width: 128px; height: 128px; border: 1px solid rgba(255,153,0,.45); border-radius: 50%; display: grid; place-items: center; }
.symbol-circle img { width: 54px; }

.services h2 { margin-bottom: 36px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  min-height: 152px;
  padding: 30px 30px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  box-shadow: 0 1px 0 rgba(8,11,24,.02);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-3px); border-color: rgba(255,153,0,.35); box-shadow: var(--shadow); }
.service-card img { width: 62px; height: 62px; }
.service-card h3 { margin: 2px 0 10px; font-size: 18px; line-height: 1.2; letter-spacing: -0.025em; }
.service-card p { margin: 0; font-size: 14.5px; line-height: 1.55; }

.contact-grid { display: grid; grid-template-columns: minmax(280px, 430px) 1fr; gap: clamp(50px, 8vw, 92px); align-items: start; }
.contact-copy h2 { font-size: clamp(36px, 4vw, 50px); }
.contact-copy p:not(.eyebrow) { margin-top: 22px; font-size: 17px; max-width: 430px; }
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.contact-card { min-height: 282px; border: 1px solid var(--line); border-radius: 10px; background: #fff; padding: 36px; }
.icon-badge { width: 64px; height: 64px; border-radius: 50%; background: rgba(255,153,0,.11); display: grid; place-items: center; margin-bottom: 24px; }
.icon-badge img { width: 32px; height: 32px; }
.contact-card h3 { margin: 0 0 10px; font-size: 23px; letter-spacing: -0.04em; }
.contact-card p { margin: 0 0 26px; font-size: 16px; }
.contact-card a { color: var(--aws-orange-dark); font-weight: 700; display: inline-flex; gap: 16px; align-items: center; }

.site-footer { border-top: 1px solid var(--line); padding: 28px 0; color: #555b68; }
.footer-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-brand { font-size: 15px; letter-spacing: -0.02em; color: var(--ink); }
.footer-brand .brand-icon { width: 32px; height: 32px; }
.site-footer p { margin: 0; font-size: 14px; }

/* Reusable page layout blocks */
.page-main { padding-top: clamp(68px, 8vw, 96px); }
.page-wrap-wide { max-width: 1220px; }
.page-title { margin: 0; font-size: clamp(54px, 8vw, 92px); line-height: 0.96; letter-spacing: -0.045em; }
.page-subtitle { margin: 18px 0 0; color: #3a3d4f; font-size: clamp(25px, 3vw, 38px); line-height: 1.22; letter-spacing: -0.045em; }

.metric-grid { margin-top: 24px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.metric-card { border: 1px solid #e9e9e5; border-radius: 10px; padding: 18px 20px; background: #fff; box-shadow: 0 1px 0 rgba(8,11,24,.02); display: flex; align-items: baseline; gap: 14px; }
.metric-card-stack { flex-direction: column; align-items: flex-start; gap: 10px; }
.metric-row { display: flex; align-items: baseline; gap: 14px; }
.metric-value { display: block; min-width: 42px; font-size: 30px; line-height: 1; letter-spacing: -0.055em; color: #080b18; }
.metric-label { color: #4b5568; font-size: 16px; line-height: 1.4; }

.content-grid { margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.content-card { border: 1px solid #e9e9e5; border-radius: 10px; background: #fff; padding: 24px; box-shadow: 0 1px 0 rgba(8,11,24,.02); }
.content-card-title { margin: 0 0 14px; font-size: clamp(30px, 3.4vw, 42px); line-height: 1.14; letter-spacing: -0.045em; display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.content-count { color: #4b5568; font-size: 16px; line-height: 1.4; letter-spacing: -0.02em; white-space: nowrap; }
.content-card ol { margin: 0; padding-left: 20px; }
.content-card li { margin: 0 0 8px; color: #080b18; font-size: 16px; line-height: 1.5; }
.content-note { margin-top: 10px; color: #4b5568; font-size: 16px; line-height: 1.5; }

.media-frame { margin-top: 20px; overflow: auto; border: 1px solid #e9e9e5; border-radius: 10px; padding: 12px; background: rgba(255,255,255,.86); }

@media (max-width: 900px) {
  .nav-wrap { min-height: 78px; }
  .nav { gap: 18px; font-size: 14px; }
  .brand span { font-size: 17px; }
  .hero h1 { font-size: clamp(48px, 13vw, 74px); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-symbol { display: none; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .metric-grid, .content-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { width: min(calc(100% - 32px), var(--max-width)); }
  .nav-wrap { align-items: flex-start; flex-direction: column; padding: 18px 0 0; gap: 8px; }
  .nav { width: 100%; overflow-x: auto; justify-content: space-between; padding-bottom: 0; }
  .nav a { padding: 14px 0 18px; }
  .nav a.active::after, .nav a:hover::after { bottom: 10px; }
  .hero-actions { gap: 14px; margin-top: 34px; }
  .button { width: 100%; min-height: 62px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 64px 1fr; padding: 24px; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
}
