:root {
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --bg-tint: #f9fbfd;
  --surface: #ffffff;
  --surface-soft: #fcfdff;

  --text: #0f2340;
  --text-soft: #516579;
  --text-faint: #7b8b9e;

  --primary: #174c86;
  --primary-deep: #103c6b;
  --primary-soft: #edf4fb;
  --accent: #7fa2c6;

  --line: #dbe5ef;
  --line-strong: #c6d5e4;

  --shadow-soft: 0 16px 50px rgba(15, 35, 64, 0.06);
  --shadow-card: 0 14px 36px rgba(19, 43, 74, 0.08);
  --shadow-hover: 0 22px 52px rgba(19, 43, 74, 0.12);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --container: 1180px;
  --transition: 280ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  color: var(--text);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 14px;
  color: var(--text-soft);
}

.container {
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}

.section-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(to right, var(--primary), transparent);
}

.section-intro {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--text-soft);
}
