/* Ardent MDS Plus — web policy pages (Figma design tokens) */

@font-face {
  font-family: "General Sans";
  src: url("fonts/GeneralSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "General Sans";
  src: url("fonts/GeneralSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "General Sans";
  src: url("fonts/GeneralSans-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "General Sans";
  src: url("fonts/GeneralSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand-01: #ff4900;
  --brand-02: #fd5f20;
  --brand-03: #e56a38;
  --brand-light-01: #ffbea4;
  --brand-light-04: #fff1e5;
  --brand-light-05: #fff8f5;
  --black: #000000;
  --grey-800: #333333;
  --grey-600: #7c7c7c;
  --grey-500: #949494;
  --grey-400: #aaaaaa;
  --grey-300: #cccccc;
  --grey-200: #d9d9d9;
  --white: #ffffff;
  --green: #2e7414;
  --purple: #4e148d;
  --red: #b80019;
  --shadow-sm: 0 8px 24px rgba(255, 73, 0, 0.08);
  --shadow-md: 0 16px 48px rgba(51, 51, 51, 0.08);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1080px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--brand-light-05);
  color: var(--grey-800);
  font-family: "General Sans", "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--brand-02);
  text-decoration: none;
}

a:hover {
  color: var(--brand-01);
}

img {
  max-width: 100%;
  height: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(255, 248, 245, 0.92);
  border-bottom: 1px solid rgba(255, 190, 164, 0.35);
}

.site-header__inner,
.site-footer__inner,
.page-shell,
.hero__inner {
  width: min(100% - 40px, var(--max-width));
  margin-inline: auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--grey-800);
  font-weight: 600;
}

.brand__logo {
  width: clamp(120px, 22vw, 168px);
  height: auto;
}

.brand__text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.site-nav a {
  color: var(--grey-600);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--brand-01);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 72px;
  background:
    radial-gradient(circle at top right, rgba(255, 190, 164, 0.45), transparent 42%),
    linear-gradient(180deg, var(--brand-light-04) 0%, var(--brand-light-05) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(253, 95, 32, 0.12);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-03);
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__title {
  margin: 0 0 16px;
  color: var(--black);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  line-height: 1.1;
}

.hero__subtitle {
  margin: 0 0 28px;
  max-width: 560px;
  color: var(--grey-600);
  font-size: 18px;
  line-height: 28px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand-01), var(--brand-02));
  box-shadow: var(--shadow-sm);
  color: var(--white);
}

.btn--primary:hover {
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: var(--white);
  border-color: rgba(253, 95, 32, 0.25);
  color: var(--grey-800);
}

.btn--secondary:hover {
  color: var(--brand-01);
}

.hero__card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 221, 200, 0.8);
}

.hero__card-title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}

.hero__card-text {
  margin: 0 0 20px;
  color: var(--grey-600);
  font-size: 14px;
  line-height: 22px;
}

.section {
  padding: 24px 0 72px;
}

.section__title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.section__subtitle {
  margin: 0 0 28px;
  color: var(--grey-600);
  font-size: 16px;
  line-height: 24px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(217, 217, 217, 0.7);
  box-shadow: 0 10px 30px rgba(51, 51, 51, 0.04);
}

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: var(--brand-light-04);
  color: var(--brand-01);
  font-size: 18px;
  font-weight: 700;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
}

.feature-card p {
  margin: 0;
  color: var(--grey-600);
  font-size: 14px;
  line-height: 22px;
}

.info-panel {
  margin-top: 28px;
  padding: 24px 28px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 73, 0, 0.08), rgba(255, 241, 229, 0.95));
  border: 1px solid rgba(255, 190, 164, 0.45);
}

.info-panel p {
  margin: 0;
  color: var(--grey-800);
  font-size: 14px;
  line-height: 22px;
}

.page-shell {
  padding: 48px 0 72px;
}

.page-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(217, 217, 217, 0.65);
}

.page-card h1 {
  margin: 0 0 12px;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.15;
}

.page-card h2 {
  margin: 28px 0 8px;
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
}

.page-card p,
.page-card li {
  font-size: 16px;
  line-height: 24px;
}

.page-card ul,
.page-card ol {
  margin: 8px 0 14px 22px;
}

.page-card hr {
  border: 0;
  border-top: 1px solid var(--grey-200);
  margin: 24px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.contact-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--brand-light-05);
  border: 1px solid rgba(255, 190, 164, 0.35);
}

.contact-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
}

.contact-card p {
  margin: 0;
  color: var(--grey-600);
  font-size: 14px;
  line-height: 22px;
}

.site-footer {
  margin-top: auto;
  padding: 28px 0 40px;
  border-top: 1px solid rgba(217, 217, 217, 0.8);
  background: rgba(255, 255, 255, 0.72);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.site-footer__links a {
  color: var(--grey-600);
  font-size: 14px;
  font-weight: 500;
}

.site-footer__copy {
  margin: 0;
  color: var(--grey-500);
  font-size: 12px;
  line-height: 16px;
}

@media (max-width: 900px) {
  .hero__inner,
  .feature-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 40px;
  }

  .page-card {
    padding: 28px 22px;
  }
}

@media (max-width: 640px) {
  .site-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}
