:root {
  color-scheme: light;
  --navy: #111c35;
  --navy-soft: #1a2949;
  --ink: #221f1a;
  --muted: #6e675b;
  --paper: #f3eddf;
  --paper-light: #fbf8f0;
  --gold: #c4a34e;
  --gold-light: #e5cd86;
  --red: #8e1719;
  --green: #254f36;
  --blue: #38568e;
  --line: rgba(34, 31, 26, 0.14);
  --shell: 1180px;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper-light);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
.button:focus-visible,
.brand:focus-visible,
.site-nav a:focus-visible,
.nav-cta:focus-visible,
.app-card > a:focus-visible,
.footer-grid nav a:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

.has-motion .reveal:focus-within {
  opacity: 1;
  transform: none;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
}

.header-inner {
  display: flex;
  min-height: 98px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  place-items: center;
  color: var(--gold-light);
  font-size: 18px;
}

.brand > span:last-child {
  display: grid;
  gap: 3px;
}

.brand strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 650;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: #fff;
}

.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 890px;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 22%, rgba(196, 163, 78, 0.18), transparent 25rem),
    linear-gradient(145deg, #162545 0%, var(--navy) 55%, #0b1428 100%);
  color: #fff;
}

.hero::before {
  position: absolute;
  top: -450px;
  right: -300px;
  width: 920px;
  height: 920px;
  border: 1px solid rgba(229, 205, 134, 0.11);
  border-radius: 50%;
  content: "";
}

.hero::after {
  position: absolute;
  top: -310px;
  right: -160px;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(229, 205, 134, 0.09);
  border-radius: 50%;
  content: "";
}

.hero-lines {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: linear-gradient(rgba(255, 255, 255, 0.7) 1px, transparent 1px);
  background-size: 100% 42px;
  mask-image: linear-gradient(to right, #000, transparent 48%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 815px;
  grid-template-columns: minmax(0, 1.08fr) minmax(410px, 0.82fr);
  gap: clamp(50px, 7vw, 104px);
  align-items: center;
  padding-top: 100px;
}

.hero-copy {
  padding: 80px 0 76px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 26px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow span + span {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.52);
}

.eyebrow span + span::before {
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
  content: "";
}

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

.hero h1 {
  max-width: 710px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(61px, 7.3vw, 96px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.91;
}

.hero h1 em {
  color: var(--gold-light);
  font-weight: 400;
}

.hero-lede {
  max-width: 570px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 55px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-light {
  background: var(--paper-light);
  box-shadow: 0 14px 32px rgba(2, 8, 20, 0.24);
  color: var(--navy);
}

.hero-note {
  display: grid;
  max-width: 170px;
  gap: 4px;
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--serif);
  font-size: 12px;
  line-height: 1.35;
}

.hero-note strong {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-art {
  position: relative;
  align-self: end;
  height: 710px;
}

.hero-seal {
  position: absolute;
  z-index: 0;
  right: -154px;
  bottom: 14px;
  display: grid;
  width: 590px;
  height: 590px;
  border: 1px solid rgba(229, 205, 134, 0.16);
  border-radius: 50%;
  place-content: center;
  gap: 16px;
  color: rgba(229, 205, 134, 0.15);
  font-family: var(--serif);
  font-size: 26px;
  text-align: center;
}

.hero-seal::before,
.hero-seal::after {
  position: absolute;
  border: 1px solid rgba(229, 205, 134, 0.09);
  border-radius: 50%;
  content: "";
}

.hero-seal::before {
  inset: 40px;
}

.hero-seal::after {
  inset: 86px;
}

.hero-seal i {
  color: rgba(229, 205, 134, 0.3);
  font-size: 36px;
  font-style: normal;
}

.phone {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 7px solid #15191f;
  border-radius: 42px;
  background: #15191f;
  box-shadow: 0 34px 80px rgba(4, 8, 17, 0.33);
}

.phone::after {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 50%;
  width: 29%;
  height: 22px;
  border-radius: 999px;
  background: #080b10;
  content: "";
  transform: translateX(-50%);
}

.phone img {
  width: 100%;
  height: auto;
  border-radius: 34px;
}

.hero-phone {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: -120px;
  width: 337px;
  transform: rotate(2.4deg);
}

.floating-icon {
  position: absolute;
  z-index: 4;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 21px;
  box-shadow: 0 22px 50px rgba(3, 9, 19, 0.34);
}

.icon-declaration {
  top: 86px;
  right: -17px;
  width: 110px;
  height: 110px;
  transform: rotate(6deg);
}

.icon-federalist {
  top: 216px;
  left: 4px;
  transform: rotate(-9deg);
}

.icon-antifederalist {
  top: 360px;
  right: -42px;
  transform: rotate(7deg);
}

.icon-rights {
  bottom: 120px;
  left: -17px;
  width: 100px;
  height: 100px;
  transform: rotate(-5deg);
}

.hero-footer {
  position: relative;
  z-index: 3;
  display: flex;
  height: 75px;
  align-items: center;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-footer i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.section-pad {
  padding-block: 128px;
}

.section-kicker {
  margin: 0 0 20px;
  color: #826e39;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker.light {
  color: var(--gold-light);
}

h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 75px);
  font-weight: 500;
  letter-spacing: -0.047em;
  line-height: 0.99;
}

.intro {
  background:
    radial-gradient(circle at 76% 35%, rgba(196, 163, 78, 0.09), transparent 25rem),
    var(--paper-light);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 96px;
  align-items: end;
}

.intro-copy {
  max-width: 520px;
}

.intro-copy p {
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.62;
}

.intro-copy p + p {
  margin-top: 20px;
  color: #91897d;
  font-size: 16px;
}

.timeline {
  position: relative;
  display: grid;
  margin-top: 100px;
  grid-template-columns: repeat(4, 1fr);
}

.timeline::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--line);
  content: "";
}

.timeline div {
  position: relative;
  display: grid;
  gap: 6px;
  padding-top: 26px;
}

.timeline div::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 11px;
  height: 11px;
  border: 3px solid var(--paper-light);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
  content: "";
}

.timeline strong {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
}

.timeline span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection {
  border-top: 1px solid var(--line);
  background: #ebe3d3;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 64px;
}

.section-heading > p {
  max-width: 380px;
  margin: 0 0 5px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.app-card {
  position: relative;
  display: flex;
  min-height: 515px;
  grid-column: span 2;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  background: var(--navy);
  box-shadow: 0 20px 50px rgba(54, 43, 25, 0.09);
  color: #fff;
}

.app-card::after {
  position: absolute;
  right: -100px;
  bottom: -150px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.app-card-wide {
  min-height: 460px;
  grid-column: span 3;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.app-card > img {
  margin: 42px 0 28px;
  border-radius: 21px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.app-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.app-card p {
  max-width: 360px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.52;
}

.app-card > a {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.app-card > a span {
  font-size: 18px;
  transition: transform 160ms ease;
}

.app-card > a:hover span {
  transform: translate(3px, -3px);
}

.card-body {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 30px;
  align-items: start;
  padding-top: 45px;
}

.card-body > img {
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.card-body h3 {
  font-size: 42px;
}

.card-body p {
  max-width: 370px;
}

.card-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.card-body li {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
  font-weight: 650;
}

.declaration {
  background: linear-gradient(145deg, #9d191d, #6f1015);
}

.constitution {
  background: linear-gradient(145deg, #172b54, #0e1932);
}

.federalist {
  background: linear-gradient(145deg, #4968a6, #2d477c);
}

.antifederalist {
  background: linear-gradient(145deg, #315f42, #1d3c2a);
}

.rights {
  background: linear-gradient(145deg, #213b60, #17273f);
}

.method {
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.method-grid {
  display: grid;
  min-height: 780px;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: center;
}

.method-copy > p:not(.section-kicker) {
  max-width: 480px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
}

.method-list {
  margin: 48px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.method-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.method-list > li > span {
  padding-top: 3px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 13px;
}

.method-list div {
  display: grid;
  gap: 5px;
}

.method-list strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}

.method-list small {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 11px;
  line-height: 1.5;
}

.screen-stage {
  position: relative;
  height: 690px;
}

.screen-stage::before,
.screen-stage::after {
  position: absolute;
  border: 1px solid rgba(229, 205, 134, 0.1);
  border-radius: 50%;
  content: "";
}

.screen-stage::before {
  top: 60px;
  right: -160px;
  width: 650px;
  height: 650px;
}

.screen-stage::after {
  top: 145px;
  right: -75px;
  width: 480px;
  height: 480px;
}

.screen-stage .phone {
  position: absolute;
  bottom: -135px;
  width: 265px;
  border-width: 6px;
  border-radius: 36px;
}

.screen-stage .phone::after {
  top: 8px;
  height: 18px;
}

.screen-stage .phone img {
  border-radius: 29px;
}

.phone-left {
  z-index: 1;
  left: 0;
  transform: rotate(-8deg) translateY(54px);
}

.phone-center {
  z-index: 3;
  left: 50%;
  transform: translateX(-50%) rotate(1deg);
}

.phone-right {
  z-index: 2;
  right: -4px;
  transform: rotate(8deg) translateY(50px);
}

.principles {
  background: var(--paper-light);
}

.principles-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 75px;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle-grid article {
  min-height: 290px;
  padding: 28px 34px 34px 0;
}

.principle-grid article + article {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.principle-grid span {
  color: #9d8d68;
  font-family: var(--serif);
  font-size: 13px;
}

.principle-grid h3 {
  margin: 68px 0 12px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.principle-grid p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.6;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: 130px;
  background:
    radial-gradient(circle at 50% 125%, rgba(196, 163, 78, 0.3), transparent 30rem),
    var(--navy-soft);
  color: #fff;
  text-align: center;
}

.final-cta::before {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 770px;
  height: 770px;
  border: 1px solid rgba(229, 205, 134, 0.08);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-icons {
  display: flex;
  height: 88px;
  align-items: center;
  justify-content: center;
  margin-bottom: 42px;
  padding-left: 18px;
}

.cta-icons img {
  width: 78px;
  height: 78px;
  margin-left: -18px;
  border: 2px solid var(--navy-soft);
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(4, 8, 18, 0.28);
}

.cta-icons img:nth-child(1),
.cta-icons img:nth-child(5) {
  transform: translateY(9px);
}

.cta-icons img:nth-child(2),
.cta-icons img:nth-child(4) {
  transform: translateY(-2px);
}

.final-cta h2 {
  max-width: 900px;
  font-size: clamp(48px, 6.6vw, 80px);
}

.final-cta .button {
  margin-top: 42px;
}

.site-footer {
  background: #0c1427;
  color: #fff;
}

.footer-grid {
  display: grid;
  min-height: 160px;
  grid-template-columns: 1fr auto auto;
  gap: 80px;
  align-items: center;
}

.footer-brand .brand-mark {
  width: 37px;
  height: 37px;
}

.footer-grid nav {
  display: flex;
  gap: 26px;
}

.footer-grid nav a,
.footer-grid > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  text-decoration: none;
}

.footer-grid nav a:hover {
  color: #fff;
}

.has-motion .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.has-motion .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.has-motion .app-card:nth-child(2),
.has-motion .principle-grid.reveal {
  transition-delay: 80ms;
}

.has-motion .app-card:nth-child(3) {
  transition-delay: 140ms;
}

.has-motion .app-card:nth-child(4) {
  transition-delay: 200ms;
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 35px;
  }

  .hero-art {
    transform: translateX(30px);
  }

  .app-card,
  .app-card-wide {
    grid-column: span 3;
  }

  .app-card:last-child {
    grid-column: 2 / span 4;
  }

  .method-grid {
    grid-template-columns: 0.88fr 1.12fr;
    gap: 28px;
  }

  .screen-stage .phone {
    width: 235px;
  }
}

@media (max-width: 820px) {
  .site-nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 1120px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    padding-top: 132px;
  }

  .hero-copy {
    min-width: 0;
    padding: 54px 0 20px;
  }

  .hero h1 {
    max-width: 650px;
  }

  .hero-art {
    width: min(100%, 510px);
    height: 520px;
    margin-inline: auto;
    transform: none;
  }

  .hero-phone {
    right: 50%;
    width: 290px;
    transform: translateX(50%) rotate(2deg);
  }

  .hero-seal {
    right: 50%;
    bottom: -20px;
    width: 500px;
    height: 500px;
    transform: translateX(50%);
  }

  .icon-declaration {
    top: 60px;
    right: 5%;
  }

  .icon-federalist {
    top: 190px;
    left: 4%;
  }

  .icon-antifederalist {
    top: 300px;
    right: 1%;
  }

  .icon-rights {
    bottom: 50px;
    left: 3%;
  }

  .intro-grid,
  .method-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 46px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 24px;
  }

  .method-grid {
    gap: 60px;
  }

  .screen-stage {
    width: min(100%, 620px);
    height: 580px;
    margin-inline: auto;
  }

  .screen-stage .phone {
    width: 245px;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    gap: 30px;
  }

  .footer-grid > p {
    grid-column: 1 / -1;
    padding-bottom: 28px;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .header-inner {
    min-height: 82px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand strong {
    font-size: 15px;
  }

  .site-nav .nav-cta {
    display: grid;
    width: 38px;
    height: 38px;
    padding: 0;
    place-items: center;
    font-size: 0;
  }

  .site-nav .nav-cta span {
    font-size: 16px;
  }

  .hero {
    min-height: 1040px;
  }

  .hero-grid {
    padding-top: 93px;
  }

  .hero-copy {
    padding-top: 55px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 72px);
    line-height: 0.94;
    overflow-wrap: normal;
    text-wrap: wrap;
  }

  .hero-lede {
    font-size: 18px;
    text-wrap: wrap;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-note {
    max-width: none;
  }

  .hero-art {
    height: 455px;
  }

  .hero-phone {
    bottom: -120px;
    width: 245px;
  }

  .floating-icon {
    width: 70px;
    height: 70px;
    border-radius: 17px;
  }

  .icon-declaration {
    top: 52px;
    width: 84px;
    height: 84px;
  }

  .icon-federalist {
    top: 175px;
  }

  .icon-antifederalist {
    top: 280px;
  }

  .icon-rights {
    bottom: 30px;
    width: 78px;
    height: 78px;
  }

  .hero-footer {
    height: 66px;
    gap: 10px;
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .hero-footer span:last-child,
  .hero-footer i:last-of-type {
    display: none;
  }

  .section-pad {
    padding-block: 92px;
  }

  h2 {
    font-size: clamp(43px, 13vw, 64px);
  }

  .timeline {
    margin-top: 68px;
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 12px;
  }

  .timeline::before {
    display: none;
  }

  .timeline div {
    padding-top: 20px;
    border-top: 1px solid var(--line);
  }

  .timeline div::before {
    top: -5px;
  }

  .app-grid {
    display: block;
  }

  .app-card {
    min-height: 490px;
  }

  .app-card + .app-card {
    margin-top: 14px;
  }

  .app-card-wide {
    min-height: 560px;
  }

  .card-body {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 34px;
  }

  .card-body > img {
    width: 92px;
    height: 92px;
    border-radius: 21px;
  }

  .card-body h3 {
    font-size: 38px;
  }

  .screen-stage {
    height: 490px;
  }

  .screen-stage .phone {
    bottom: -115px;
    width: 190px;
    border-radius: 30px;
  }

  .screen-stage .phone img {
    border-radius: 24px;
  }

  .phone-left {
    left: -38px;
  }

  .phone-right {
    right: -38px;
  }

  .principles-heading {
    margin-bottom: 50px;
  }

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

  .principle-grid article {
    min-height: auto;
    padding: 28px 0 38px;
  }

  .principle-grid article + article {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .principle-grid h3 {
    margin-top: 30px;
  }

  .final-cta {
    padding-block: 96px;
  }

  .cta-icons img {
    width: 65px;
    height: 65px;
    border-radius: 15px;
  }

  .footer-grid {
    padding-block: 42px;
    grid-template-columns: 1fr;
  }

  .footer-grid nav {
    flex-wrap: wrap;
  }

  .footer-grid > p {
    padding-bottom: 0;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
