:root {
  --navy: #0b356c;
  --navy-deep: #062852;
  --lilac: #9a80c5;
  --lilac-light: #eee9f6;
  --ink: #18324f;
  --muted: #657387;
  --white: #fff;
  --off: #faf9fc;
  --line: #e8e4ef;
  --shadow: 0 20px 60px rgba(11, 53, 108, 0.12);
  --radius: 28px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}
img {
  max-width: 100%;
}
a {
  color: inherit;
}
.container {
  width: min(1140px, calc(100% - 40px));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232, 228, 239, 0.75);
}
.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  width: auto;
  height: 70px;
  overflow: hidden;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: var(--navy);
  text-decoration: none;
}
.brand-mark {
  font-family: Georgia, serif;
  font-size: 3.35rem;
  line-height: 1;
  font-style: italic;
  color: var(--navy);
}
.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name strong {
  font-size: 1.05rem;
  letter-spacing: 0.22em;
}
.brand-name small {
  margin-top: 7px;
  color: var(--lilac);
  font-size: 0.66rem;
  letter-spacing: 0.42em;
}
.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
.main-nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 600;
}
.main-nav a:hover {
  color: var(--lilac);
}
.menu-button {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
}
.menu-button span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  margin: 5px;
}
.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, #fbf9fd 60%, #f0ebf8 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 80px;
  padding-block: 90px;
}
.eyebrow {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--lilac);
  font-weight: 800;
  font-size: 0.77rem;
}
.hero h1,
.section h2,
.legal-content h1 {
  margin: 0;
  color: var(--navy-deep);
  line-height: 1.12;
  letter-spacing: -0.04em;
}
.hero h1 {
  font-size: clamp(3rem, 6vw, 5.9rem);
}
.hero h1 span {
  color: var(--lilac);
}
.hero-text {
  max-width: 650px;
  font-size: 1.18rem;
  color: var(--muted);
  margin: 28px 0;
}
.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  transition: 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 12px 30px rgba(11, 53, 108, 0.22);
}
.button-secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
}
.button.small {
  padding: 9px 16px;
  font-size: 0.9rem;
}
.hero-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(154, 128, 197, 0.18);
  box-shadow: var(--shadow);
  border-radius: 48% 52% 43% 57%/57% 45% 55% 43%;
  padding: 60px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.hero-card img {
  width: 92%;
}
.speech-dots {
  position: absolute;
  right: 9%;
  top: 24%;
  width: 72px;
  height: 56px;
  background: var(--lilac);
  border-radius: 28px 28px 28px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.speech-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.hero-orb-one {
  width: 360px;
  height: 360px;
  background: rgba(154, 128, 197, 0.12);
  left: -210px;
  bottom: -60px;
}
.hero-orb-two {
  width: 180px;
  height: 180px;
  border: 35px solid rgba(11, 53, 108, 0.05);
  right: -55px;
  top: 80px;
}
.section {
  padding: 110px 0;
}
.section-soft {
  background: var(--off);
}
.split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 100px;
}
.section h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}
.prose {
  font-size: 1.13rem;
  color: var(--muted);
}
.prose p:first-child {
  margin-top: 0;
}
.note {
  border-left: 3px solid var(--lilac);
  padding: 12px 18px;
  background: var(--off);
  border-radius: 0 10px 10px 0;
  margin-top: 30px;
}
.centered {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 55px;
}
.centered > p:last-child {
  color: var(--muted);
}
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  min-height: 250px;
  transition: 0.25s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(154, 128, 197, 0.35);
}
.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: var(--lilac-light);
  color: var(--navy);
  font-size: 1.4rem;
}
.card h3 {
  color: var(--navy);
  font-size: 1.2rem;
  margin: 24px 0 8px;
}
.card p {
  color: var(--muted);
  margin: 0;
}
.commitment {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: #fff;
}
.commitment-grid {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  align-items: center;
  gap: 70px;
}
.commitment h2 {
  color: #fff;
}
.commitment p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}
.eyebrow-light {
  color: #c8b7e2;
}
.commitment-mark {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 15rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.2);
  text-align: center;
}
.materials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}
.materials-grid p {
  color: var(--muted);
  font-size: 1.08rem;
}
.materials-visual {
  position: relative;
  height: 440px;
}
.sheet {
  position: absolute;
  width: 320px;
  height: 400px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.sheet-back {
  background: var(--lilac);
  transform: rotate(10deg);
  left: 80px;
  top: 10px;
}
.sheet-front {
  background: #fff;
  border: 1px solid var(--line);
  transform: rotate(-4deg);
  left: 40px;
  top: 20px;
  padding: 65px 35px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--navy);
}
.sheet-front:before {
  content: "A";
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, serif;
  font-size: 9rem;
  font-style: italic;
  color: var(--navy);
}
.sheet-front span {
  font-size: 1.7rem;
  letter-spacing: 0.25em;
}
.sheet-front small {
  color: var(--lilac);
  margin-top: 6px;
}
.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid var(--lilac);
  padding-bottom: 4px;
}
.contact-section {
  background: var(--off);
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 60px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.contact-card p {
  color: var(--muted);
}
.contact-actions {
  display: grid;
  gap: 14px;
}
.contact-link {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  padding: 18px 22px;
  border-radius: 16px;
  text-decoration: none;
  transition: 0.2s;
}
.contact-link:hover {
  border-color: var(--lilac);
  transform: translateX(4px);
}
.contact-link span {
  font-size: 0.75rem;
  color: var(--lilac);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}
.contact-link strong {
  color: var(--navy);
}
.site-footer {
  background: #061f41;
  color: #fff;
  padding: 55px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.3fr 0.7fr;
  gap: 45px;
  align-items: start;
}
.footer-grid strong {
  letter-spacing: 0.18em;
}
.footer-grid p {
  margin: 6px 0;
  color: rgba(255, 255, 255, 0.62);
}
.footer-note {
  font-size: 0.9rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
}
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 35px;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}
.legal-page {
  min-height: 70vh;
  background: var(--off);
  padding: 90px 0;
}
.legal-content {
  max-width: 820px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 60px;
  box-shadow: var(--shadow);
}
.legal-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}
.legal-content h2 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-top: 34px;
}
.legal-content p {
  color: var(--muted);
}
.legal-date {
  font-size: 0.9rem;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 25px 20px;
    flex-direction: column;
  }
  .main-nav.open {
    display: flex;
  }
  .menu-button {
    display: block;
  }
  .hero {
    min-height: auto;
  }
  .hero-grid,
  .split,
  .commitment-grid,
  .materials-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    gap: 50px;
    padding-block: 70px;
  }
  .hero-card {
    max-width: 500px;
    margin: auto;
  }
  .split,
  .materials-grid {
    gap: 50px;
  }
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  .commitment-mark {
    display: none;
  }
  .contact-card {
    gap: 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-links {
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  .container {
    width: min(100% - 28px, 1140px);
  }
  .brand-mark {
    font-size: 2.85rem;
  }
  .brand-name strong {
    font-size: 0.9rem;
  }
  .section {
    padding: 75px 0;
  }
  .hero h1 {
    font-size: 2.75rem;
  }
  .hero-text {
    font-size: 1rem;
  }
  .hero-card {
    padding: 35px;
  }
  .speech-dots {
    width: 55px;
    height: 44px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .materials-visual {
    height: 360px;
  }
  .sheet {
    width: 245px;
    height: 320px;
  }
  .sheet-back {
    left: 45px;
  }
  .sheet-front {
    left: 25px;
  }
  .sheet-front:before {
    font-size: 7rem;
  }
  .sheet-front span {
    font-size: 1.25rem;
  }
  .contact-card,
  .legal-content {
    padding: 34px 24px;
  }
  .button-row {
    flex-direction: column;
  }
  .button {
    width: 100%;
  }
  .footer-grid {
    gap: 24px;
  }
}
