* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #09234f;
  --navy-dark: #061a3b;
  --orange: #f58220;
  --green: #159447;
  --green-dark: #087532;
  --cream: #fffaf1;
  --text: #101828;
  --muted: #667085;
  --white: #ffffff;
  --line: #e4e7ec;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

.tricolor-top {
  height: 5px;
  background: linear-gradient(
    to right,
    var(--orange) 0 33.33%,
    #fff 33.33% 66.66%,
    var(--green) 66.66%
  );
}

.site-header {
  height: 76px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(9,35,79,.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  text-decoration: none;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -1.4px;
}

.brand em {
  color: var(--green);
  font-style: normal;
}

.brand-mark {
  color: var(--orange);
  font-size: 28px;
}

.nav {
  display: flex;
  gap: 34px;
}

.nav a,
.socials a {
  color: var(--navy);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.socials {
  display: flex;
  gap: 16px;
  font-size: 19px;
}

.hero {
  min-height: 690px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 35px;
  padding: 65px 7% 0;
  background:
    radial-gradient(circle at 18% 15%, rgba(245,130,32,.09), transparent 27%),
    radial-gradient(circle at 87% 70%, rgba(21,148,71,.11), transparent 29%),
    linear-gradient(135deg, #fffdf9, #fff);
}

.hero-left,
.hero-right {
  position: relative;
  z-index: 2;
}

.hero-left {
  padding-top: 25px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 800;
  margin-bottom: 22px;
}

.eyebrow span {
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--orange);
}

.eyebrow span:last-child {
  background: var(--green);
}

.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(46px, 6vw, 82px);
  line-height: .95;
  letter-spacing: -4px;
  color: var(--orange);
  position: relative;
  z-index: 3;
}

.hero h1 strong {
  color: var(--navy);
  font-weight: 900;
}

.hero h1 b {
  color: var(--green);
}

.hero-copy {
  max-width: 430px;
  margin-top: 25px;
  font-size: 17px;
  line-height: 1.7;
  color: #475467;
}

.ashoka-wheel,
.quote-wheel {
  color: #2459a6;
  opacity: .13;
  font-size: 115px;
  position: absolute;
  pointer-events: none;
}

.ashoka-wheel {
  left: -50px;
  top: 130px;
}

.portrait-wrap {
  width: min(430px, 70%);
  height: 330px;
  margin-top: -5px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.portrait {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 25px 25px rgba(9,35,79,.16));
}

.portrait-placeholder {
  display: none;
  width: 260px;
  height: 290px;
  border-radius: 130px 130px 25px 25px;
  background: linear-gradient(150deg, #eaf0f8, #fff);
  border: 1px dashed #aab6c8;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #667085;
}

.placeholder-icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 15px;
}

.hero-right {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}

.petition-card {
  width: min(100%, 500px);
  background: rgba(255,255,255,.97);
  border-radius: 22px;
  padding: 38px;
  box-shadow:
    0 25px 70px rgba(9,35,79,.15),
    0 4px 15px rgba(9,35,79,.06);
  border: 1px solid rgba(9,35,79,.07);
}

.card-kicker {
  font-family: "Montserrat", sans-serif;
  font-size: 35px;
  line-height: 1;
  font-weight: 900;
  color: var(--orange);
}

.card-kicker::first-letter {
  color: var(--orange);
}

.petition-card h2 {
  font-size: 25px;
  color: var(--navy);
  margin-top: 12px;
}

.card-copy {
  color: var(--muted);
  font-size: 14px;
  margin: 5px 0 23px;
}

.input-wrap {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #d0d5dd;
  border-radius: 9px;
  padding: 0 14px;
  margin-bottom: 13px;
  background: #fff;
  transition: .2s;
}

.input-wrap:focus-within {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(9,35,79,.08);
}

.input-wrap > span {
  font-size: 18px;
  width: 20px;
  color: var(--green-dark);
  text-align: center;
}

.input-wrap input,
.input-wrap select {
  border: 0;
  outline: 0;
  background: transparent;
  width: 100%;
  height: 100%;
  font: inherit;
  color: #344054;
}

.input-wrap select {
  cursor: pointer;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 21px 0;
  color: #344054;
  font-size: 13px;
  cursor: pointer;
}

.consent input {
  width: 19px;
  height: 19px;
  accent-color: var(--green);
  margin-top: 1px;
}

.submit-button {
  width: 100%;
  height: 55px;
  border: 0;
  border-radius: 9px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(100deg, var(--orange), #ff8f00 48%, var(--green));
  box-shadow: 0 10px 22px rgba(21,148,71,.18);
  transition: transform .18s, box-shadow .18s, opacity .18s;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(21,148,71,.23);
}

.submit-button:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.arrow {
  font-size: 25px;
}

.privacy-note {
  text-align: center;
  margin-top: 15px;
  color: #98a2b3;
  font-size: 11px;
}

.status {
  display: none;
  margin-top: 14px;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-size: 13px;
}

.status.success {
  display: block;
  background: #ecfdf3;
  color: #027a48;
}

.status.error {
  display: block;
  background: #fef3f2;
  color: #b42318;
}

.status.loading {
  display: block;
  background: #f2f4f7;
  color: #475467;
}

.brush {
  position: absolute;
  width: 45%;
  height: 65px;
  opacity: .22;
  filter: blur(.2px);
  transform: rotate(-8deg);
  border-radius: 50%;
}

.brush-orange {
  left: -8%;
  top: 180px;
  background: var(--orange);
}

.brush-green {
  right: -8%;
  bottom: 25px;
  background: var(--green);
  transform: rotate(-15deg);
}

.counter-section {
  position: relative;
  z-index: 4;
  margin: -5px auto 0;
  padding: 0 5%;
}

.counter-card {
  max-width: 1050px;
  margin: auto;
  background:
    radial-gradient(circle at 10% 30%, rgba(245,130,32,.16), transparent 25%),
    radial-gradient(circle at 90% 70%, rgba(21,148,71,.16), transparent 25%),
    var(--navy);
  color: white;
  border-radius: 25px;
  padding: 28px 30px 30px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(9,35,79,.2);
  border: 1px solid rgba(255,255,255,.12);
}

.counter-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .3px;
}

.counter-title span {
  width: 70px;
  height: 3px;
  background: linear-gradient(to right, var(--orange), white, var(--green));
}

.counter-title strong {
  color: #ffb000;
}

.big-counter {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(55px, 9vw, 95px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 5px;
  color: white;
  margin: 20px 0 13px;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 8px 25px rgba(0,0,0,.22);
}

.big-counter.updated {
  animation: counterPulse .5s ease;
}

@keyframes counterPulse {
  0% { transform: scale(1); }
  45% { transform: scale(1.035); }
  100% { transform: scale(1); }
}

.counter-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  color: #d0d5dd;
  font-size: 14px;
}

.about {
  max-width: 1100px;
  margin: auto;
  padding: 85px 5%;
  text-align: center;
}

.section-heading {
  font-family: "Montserrat", sans-serif;
  color: var(--navy);
  font-size: 30px;
  font-weight: 900;
}

.section-heading span {
  color: var(--orange);
}

.section-intro {
  max-width: 650px;
  margin: 14px auto 48px;
  color: var(--muted);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.pillar {
  padding: 10px 28px 15px;
  border-right: 1px solid var(--line);
}

.pillar:last-child {
  border-right: 0;
}

.pillar-icon {
  width: 58px;
  height: 58px;
  margin: auto auto 17px;
  border-radius: 50%;
  color: white;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 800;
}

.pillar-icon.orange { background: var(--orange); }
.pillar-icon.green { background: var(--green); }
.pillar-icon.blue { background: #2459a6; }

.pillar h3 {
  font-family: "Montserrat", sans-serif;
  color: var(--navy);
  font-size: 14px;
  margin-bottom: 10px;
}

.pillar p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.quote-section {
  min-height: 230px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 50px 20px;
  background:
    linear-gradient(
      170deg,
      rgba(245,130,32,.1),
      transparent 40%,
      rgba(21,148,71,.1)
    );
}

.quote-section blockquote {
  max-width: 850px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(22px, 4vw, 36px);
  line-height: 1.3;
  color: var(--navy);
  font-weight: 800;
  position: relative;
  z-index: 2;
}

.quote-wheel {
  position: absolute;
  opacity: .07;
  font-size: 230px;
}

.privacy-section {
  max-width: 850px;
  margin: auto;
  padding: 55px 5% 80px;
  text-align: center;
}

.privacy-section h2 {
  color: var(--navy);
  margin-bottom: 12px;
}

.privacy-section p {
  color: var(--muted);
  font-size: 14px;
}

footer {
  padding: 40px 6%;
  color: white;
  background: var(--navy-dark);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  border-top: 4px solid transparent;
  border-image: linear-gradient(to right, var(--orange), white, var(--green)) 1;
}

.footer-brand {
  font-size: 22px;
  font-weight: 900;
}

.footer-brand em {
  color: var(--green);
  font-style: normal;
}

.footer-brand small {
  display: block;
  color: #98a2b3;
  font-size: 11px;
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a {
  color: #d0d5dd;
  text-decoration: none;
  font-size: 12px;
}

.copyright {
  text-align: right;
  color: #98a2b3;
  font-size: 11px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 45px;
  }

  .hero-left {
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
  }

  .hero-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .portrait-wrap {
    margin: 0 auto;
  }

  .hero-right {
    padding-bottom: 40px;
  }

  .pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 0;
  }

  .pillar:nth-child(2) {
    border-right: 0;
  }

  footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .copyright {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .site-header {
    height: 64px;
    padding: 0 20px;
  }

  .brand {
    font-size: 20px;
  }

  .nav {
    display: none;
  }

  .socials {
    display: none;
  }

  .hero {
    padding: 35px 18px 0;
  }

  .hero h1 {
    font-size: 48px;
    letter-spacing: -2.5px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .portrait-wrap {
    width: 85%;
    height: 270px;
  }

  .petition-card {
    padding: 25px 20px;
    border-radius: 17px;
  }

  .card-kicker {
    font-size: 29px;
  }

  .counter-section {
    padding: 0 12px;
  }

  .counter-card {
    border-radius: 18px;
    padding: 25px 10px;
  }

  .counter-title {
    font-size: 12px;
    gap: 7px;
  }

  .counter-title span {
    width: 22px;
  }

  .big-counter {
    font-size: 47px;
    letter-spacing: 1px;
  }

  .about {
    padding: 60px 18px;
  }

  .section-heading {
    font-size: 25px;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  .pillar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 25px;
  }

  .pillar:last-child {
    border-bottom: 0;
  }

  .privacy-section {
    padding-bottom: 55px;
  }
}
