:root {
  color-scheme: light;
  --ink: #102234;
  --muted: #607283;
  --line: #cfdee7;
  --panel: #ffffff;
  --page: #edf6fa;
  --brand: #153d59;
  --accent: #0c6b5d;
  --pine: #0c4a3d;
  --ice: #f6fbfd;
  --glacier: #dceff7;
  --sky: #bcddeb;
  --swiss-red: #d52b1e;
  --gold: #c7a350;
  --warn: #b45309;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0) 30%),
    linear-gradient(180deg, #e7f4f9 0%, #fbfdfe 42%, #edf6fa 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

.site-header {
  background: rgba(250, 253, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  min-height: 72px;
  padding: 0 24px;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  gap: 12px;
  font-weight: 750;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-text span {
  color: var(--swiss-red);
}

.brand-mark {
  background:
    linear-gradient(135deg, #ffffff 0 22%, transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 38%),
    #c81e17;
  border-radius: 7px;
  box-shadow: 0 10px 22px rgba(13, 56, 82, 0.14);
  display: inline-block;
  height: 38px;
  overflow: hidden;
  position: relative;
  width: 46px;
}

.brand-mark::after {
  content: "";
  background: #fff;
  clip-path: polygon(0 100%, 22% 48%, 34% 66%, 54% 28%, 78% 100%);
  height: 24px;
  left: 6px;
  position: absolute;
  opacity: 0.92;
  top: 11px;
  width: 35px;
}

.brand-mark::before {
  background:
    linear-gradient(90deg, transparent 0 38%, #fff 38% 62%, transparent 62% 100%),
    linear-gradient(180deg, transparent 0 38%, #fff 38% 62%, transparent 62% 100%);
  content: "";
  height: 12px;
  right: 6px;
  position: absolute;
  top: 5px;
  width: 12px;
  z-index: 1;
}

.brand-text {
  font-size: 17px;
  line-height: 1.05;
}

.brand-text::after {
  color: #829bad;
  content: "Navigating Tomorrow's Markets Today";
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.25;
  margin-top: 3px;
  text-transform: uppercase;
}

.menu-button {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  display: none;
  font-size: 18px;
  height: 40px;
  width: 44px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 22px;
}

.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--pine);
}

.research-link {
  border: 1px solid #b7cedb;
  border-radius: 6px;
  padding: 8px 11px;
}

.hero {
  background:
    linear-gradient(90deg, rgba(5, 20, 32, 0.82), rgba(16, 61, 84, 0.42), rgba(255, 255, 255, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 70%, rgba(237, 246, 250, 1) 100%),
    url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=2400&q=86");
  background-position: center 42%;
  background-size: cover;
  color: #fff;
  min-height: 76vh;
  padding: 92px 24px 72px;
  position: relative;
}

.hero::after {
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(255, 255, 255, 0.58) 48% 52%, transparent 52% 100%),
    radial-gradient(circle at 68% 22%, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0) 24%);
  bottom: 0;
  content: "";
  height: 70px;
  left: 0;
  opacity: 0.35;
  position: absolute;
  right: 0;
}

.hero-inner,
.section-inner {
  margin: 0 auto;
  max-width: 1180px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: #a7f3e8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0;
}

h1 {
  font-size: clamp(42px, 7vw, 74px);
  max-width: 880px;
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
}

h3 {
  font-size: 20px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  max-width: 740px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  align-items: center;
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  font-weight: 700;
  min-height: 44px;
  padding: 10px 16px;
  text-decoration: none;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.46);
}

.section {
  padding: 68px 24px;
}

.section.alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 248, 252, 0.92)),
    linear-gradient(135deg, rgba(188, 221, 235, 0.44), rgba(255, 255, 255, 0));
}

.lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 820px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(21, 61, 89, 0.07);
  padding: 22px;
  position: relative;
}

.card::before {
  background: linear-gradient(90deg, var(--swiss-red), var(--gold), var(--pine));
  border-radius: 8px 8px 0 0;
  content: "";
  height: 3px;
  left: -1px;
  position: absolute;
  right: -1px;
  top: -1px;
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.contact-card {
  max-width: 720px;
}

.contact-form {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.contact-form label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #fbfdfe;
  border: 1px solid #c8d8e2;
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  padding: 11px 12px;
  width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(21, 61, 89, 0.12);
  outline: none;
}

.form-button {
  cursor: pointer;
  justify-content: center;
  margin-top: 8px;
  width: fit-content;
}

.form-button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  font-size: 14px;
  font-weight: 700;
  margin: 4px 0 0;
}

.form-status[data-state="success"] {
  color: #047857;
}

.form-status[data-state="error"] {
  color: #b91c1c;
}

.form-note {
  font-size: 13px;
  margin-top: 14px;
}

.hidden-field {
  display: none;
}

.page-title {
  background:
    linear-gradient(90deg, rgba(7, 27, 42, 0.8), rgba(13, 76, 101, 0.46)),
    url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=2200&q=84");
  background-position: center 48%;
  background-size: cover;
  border-bottom: 1px solid var(--line);
  color: #fff;
  padding: 58px 24px;
}

.page-title p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  max-width: 760px;
}

.page-title .eyebrow {
  color: #b6fff3;
}

.notice {
  background: #fffafa;
  border: 1px solid #efc2bc;
  border-left: 4px solid var(--swiss-red);
  border-radius: 8px;
  color: #65302a;
  padding: 16px;
}

.report-list {
  display: grid;
  gap: 14px;
}

.report-row {
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
}

.report-row p {
  color: var(--muted);
  margin: 6px 0 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  background:
    linear-gradient(180deg, #fbfdfe, #e7f4f9);
  padding: 28px 24px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto;
  max-width: 1180px;
}

@media (max-width: 760px) {
  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    background: #fff;
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 16px 24px 22px;
    position: absolute;
    right: 0;
    top: 72px;
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .grid.three,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .report-row,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
