/* AMOR umbrella landing page
   Palette strictly from brand-pack.json
   Typography: Open Sans (the single type system used on amorumbrella.com)
*/

:root {
  --navy: #08267c;
  --navy-ink: #061d5f;
  --red: #ff0000;
  --accent: #e1e1e1;
  --ink: #1a1a1a;
  --paper: #ffffff;
  --cream: #f5f5f5;
  --rule: #dcdde3;
  --shadow-sm: 0 1px 3px rgba(8, 38, 124, 0.08);
  --shadow-md: 0 6px 18px rgba(8, 38, 124, 0.12);
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --wrap: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--red); }

.skip {
  position: absolute;
  left: -1000px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 8px 12px;
  z-index: 100;
}
.skip:focus { left: 8px; top: 8px; }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

/* ----- Top bar ----- */

.topbar {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 20;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
}

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

.brandmark img {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 0;
}

.brandmark__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brandmark__name {
  font-weight: 800;
  color: var(--navy);
  font-size: 17px;
  letter-spacing: 0.2px;
}
.brandmark__tag {
  font-size: 12px;
  color: var(--ink);
  opacity: 0.7;
}

.topbar__ribbon {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--r-sm);
}

/* ----- Hero ----- */

.hero {
  position: relative;
  background:
    radial-gradient(1000px 500px at 90% -10%, rgba(255, 0, 0, 0.05), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(8, 38, 124, 0.08), transparent 60%),
    var(--paper);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy) 60%, var(--red) 60%, var(--red) 100%);
}

.hero__inner {
  padding: 72px 24px 72px;
  max-width: var(--wrap);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--rule);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.hero__eyebrow .dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.hero__h1 {
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 800;
  color: var(--navy);
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.4px;
  margin: 0 0 18px;
  max-width: 22ch;
}

.hero__sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink);
  max-width: 58ch;
  margin: 0 0 28px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: transform 120ms ease, background-color 120ms ease, box-shadow 120ms ease, color 120ms ease;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: #d90000;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost:hover {
  background: var(--navy);
  color: #fff;
}

.btn--lg {
  min-height: 56px;
  padding: 14px 26px;
  font-size: 16px;
}

.hero__pills {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero__pills li {
  background: #fff;
  border: 1px solid var(--rule);
  color: var(--navy);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: 0.2px;
}

/* ----- Pitch ----- */

.pitch {
  padding: 72px 0;
  background: var(--paper);
}
.pitch__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: start;
}

.pitch__side {
  position: sticky;
  top: 100px;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.pitch__mark {
  width: 72px;
  height: 72px;
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.pitch__mark img { display: block; width: 56px; height: 56px; }
.pitch__sidecopy p {
  margin: 0 0 6px;
  font-size: 14px;
  color: var(--ink);
}
.pitch__sidecopy p strong {
  color: var(--navy);
  font-weight: 700;
  margin-right: 4px;
}

.pitch__body {
  max-width: 68ch;
}

.pitch__body h2 {
  font-weight: 800;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -0.2px;
  padding-left: 14px;
  border-left: 4px solid var(--red);
}

.pitch__body h3 {
  font-weight: 700;
  color: var(--navy);
  font-size: 18px;
  margin: 36px 0 8px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.pitch__body p {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.7;
}

.linkline {
  background: var(--cream);
  border-left: 3px solid var(--navy);
  padding: 10px 14px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 15px;
}

/* ----- Pillars ----- */

.pillars {
  background: var(--navy);
  color: #fff;
  padding: 80px 0;
  position: relative;
}
.pillars::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}

.section__h2 {
  font-weight: 800;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  margin: 0 0 10px;
  letter-spacing: -0.2px;
  max-width: 24ch;
}
.pillars .section__h2 { color: #fff; }

.section__lede {
  opacity: 0.85;
  max-width: 62ch;
  margin: 0 0 40px;
  font-size: 17px;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pcard {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-lg);
  padding: 24px;
  position: relative;
  transition: transform 160ms ease, background-color 160ms ease;
}
.pcard:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.07);
}
.pcard__num {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--red);
  display: inline-block;
  padding: 4px 8px;
  border-radius: var(--r-sm);
  margin-bottom: 14px;
  letter-spacing: 1px;
}
.pcard h3 {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
  margin: 0 0 10px;
  color: #fff;
}
.pcard p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

/* ----- Proof ----- */

.proof {
  background: var(--cream);
  padding: 80px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.proof__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.proof__list {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
}
.proof__list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 16px;
  line-height: 1.55;
}
.proof__list li:last-child { border-bottom: 0; }
.proof__list strong { color: var(--navy); }

.proof__links {
  font-size: 14px;
  margin-top: 8px;
}
.proof__links a { color: var(--navy); font-weight: 600; }
.proof__links .sep { color: var(--rule); margin: 0 8px; }

.proof__quote {
  background: #fff;
  border: 1px solid var(--rule);
  border-left: 6px solid var(--red);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.proof__quote blockquote {
  margin: 0;
}
.proof__quote p {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin: 0 0 12px;
  font-style: italic;
}
.proof__quote cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
}

/* ----- CTA ----- */

.cta {
  background: var(--paper);
  padding: 80px 0;
}
.cta__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-ink) 100%);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.cta__inner::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.35), transparent 70%);
  pointer-events: none;
}

.cta h2 {
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.2;
  margin: 0 0 10px;
  color: #fff;
}
.cta p {
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  max-width: 50ch;
}
.cta__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.cta__meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}
.cta__meta a {
  color: #fff;
  font-weight: 700;
}

/* ----- Footer ----- */

.foot {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 28px 0;
  font-size: 13px;
}
.foot__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.foot__left {
  margin: 0;
  font-weight: 600;
}
.foot__right {
  margin: 0;
}
.foot__right a {
  color: #fff;
  font-weight: 700;
}

/* ----- Responsive ----- */

@media (max-width: 960px) {
  .pitch__inner { grid-template-columns: 1fr; gap: 32px; }
  .pitch__side { position: static; }
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .proof__inner { grid-template-columns: 1fr; }
  .cta__inner { grid-template-columns: 1fr; padding: 36px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero__inner { padding: 56px 20px 56px; }
  .pitch { padding: 56px 0; }
  .pillars, .proof, .cta { padding: 56px 0; }
  .topbar__inner { padding: 10px 20px; }
  .topbar__ribbon { font-size: 10px; padding: 6px 10px; letter-spacing: 0.4px; }
  .brandmark img { width: 44px; height: 44px; }
  .brandmark__name { font-size: 15px; }
  .brandmark__tag { font-size: 11px; }
  .hero__h1 { letter-spacing: -0.2px; }
  .pitch__side { padding: 20px; }
  .pillars__grid { grid-template-columns: 1fr; }
  .pcard { padding: 20px; }
  .cta__inner { padding: 28px; }
  .proof__quote { padding: 22px; }
  .proof__quote p { font-size: 19px; }
  .foot__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 400px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
