﻿:root {
  --text: #151a1b;
  --muted: #4b5759;
  --paper: #f7f2eb;
  --surface: rgba(255, 255, 255, 0.72);
  --card: #ffffff;
  --line: rgba(24, 28, 29, 0.12);

  --brand: #1B2A41;
  --brand-hi: #273C5C;
  --brand-2: #e07a5f;

  --shadow-sm: 0 10px 26px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 18px 50px rgba(0, 0, 0, 0.10);

  --r-md: 14px;
  --r-lg: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(900px 520px at 12% 0%, #ffffff 0%, #fbf4ea 54%, #f3eadf 100%),
    radial-gradient(780px 520px at 92% 14%, rgba(27, 42, 65, 0.14), rgba(27, 42, 65, 0) 62%),
    radial-gradient(520px 420px at 78% 72%, rgba(224, 122, 95, 0.14), rgba(224, 122, 95, 0) 60%);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  letter-spacing: -0.02em;
}

a { color: inherit; }

.brand-word {
  color: var(--brand);
  font-weight: 800;
}
.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transform: translateY(-160%);
  transition: transform 160ms ease;
  z-index: 50;
}
.skip-link:focus {
  transform: translateY(0);
  outline: none;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 20px 80px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 0;
  background: linear-gradient(to bottom, rgba(247, 242, 235, 0.80), rgba(247, 242, 235, 0.25));
  backdrop-filter: blur(10px);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1120px;
  width: calc(100% - 40px);
  margin: 10px auto;
  padding: 6px 10px 6px 4px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 44px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(27, 42, 65, 0.18);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  user-select: none;
}

.nav-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(27, 42, 65, 0.92);
  border-radius: 999px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-burger:focus-visible {
  outline: 3px solid rgba(27, 42, 65, 0.35);
  outline-offset: 3px;
}

.nav-logo {
  display: flex;
  align-items: center;
  height: 44px;
  flex: 0 0 auto;
}

.nav-logo img {
  display: block;
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  flex: 1;
  justify-content: space-around;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 12px;
  color: rgba(21, 26, 27, 0.86);
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.75);
}

.nav-links a:focus-visible {
  outline: 3px solid rgba(27, 42, 65, 0.35);
  outline-offset: 2px;
}

.nav-cta {
  background: linear-gradient(135deg, rgba(27, 42, 65, 0.16), rgba(224, 122, 95, 0.12));
  border: 1px solid rgba(27, 42, 65, 0.22);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
  padding: 36px 0 16px;
}

.hero-panel {
  position: relative;
  border-radius: 26px;
  padding: 26px;
  border: 1px solid rgba(24, 28, 29, 0.10);
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(246, 160, 27, 0.14), rgba(246, 160, 27, 0) 62%),
    radial-gradient(820px 420px at 92% 0%, rgba(27, 42, 65, 0.14), rgba(27, 42, 65, 0) 62%),
    rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  left: -140px;
  top: -180px;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(27, 42, 65, 0.14), rgba(27, 42, 65, 0) 60%);
  pointer-events: none;
}

.hero-panel::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(246, 160, 27, 0.16), rgba(246, 160, 27, 0) 62%);
  pointer-events: none;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(27, 42, 65, 0.82);
}

.kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(246, 160, 27, 0.95);
  box-shadow: 0 0 0 6px rgba(246, 160, 27, 0.14);
}

.hero-copy h1 {
  font-size: 52px;
  line-height: 1.03;
  margin: 0;
  text-wrap: balance;
}

.hero-heading-logo {
  display: block;
  height: 94px; /* +20% */
  width: auto;
  flex: 0 0 auto;
  opacity: 0.96;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.12));
  pointer-events: none;
}

.hero-title-text {
  display: inline-block;
}

.hero-title-text::after {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(246, 160, 27, 0.98), rgba(246, 160, 27, 0.12));
  box-shadow: 0 12px 22px rgba(246, 160, 27, 0.14);
}

.hero-copy p {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 22px;
  max-width: 60ch;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 16px 26px;
}

.hero-left { min-width: 0; }

.hero-sub {
  margin: 0;
  font-size: 18px;
  color: var(--muted);
  max-width: 64ch;
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-cta {
  white-space: nowrap;
  padding: 13px 18px;
}

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

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-hi));
  color: #ffffff;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 28px rgba(27, 42, 65, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(27, 42, 65, 0.26);
  filter: saturate(1.02);
}

.cta:focus-visible {
  outline: 3px solid rgba(27, 42, 65, 0.35);
  outline-offset: 3px;
}

.cta.secondary {
  background: rgba(255, 255, 255, 0.70);
  color: rgba(21, 26, 27, 0.92);
  border: 1px solid var(--line);
  box-shadow: none;
}

.cta.secondary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.section {
  margin-top: 56px;
}

.section h2 {
  font-size: 30px;
  margin: 0 0 10px;
}

.section p {
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 78ch;
}

.band {
  padding: 26px;
  border-radius: 26px;
  border: 1px solid rgba(24, 28, 29, 0.10);
  background:
    radial-gradient(680px 320px at 10% 0%, rgba(224, 122, 95, 0.12), rgba(224, 122, 95, 0) 60%),
    radial-gradient(760px 340px at 90% 0%, rgba(27, 42, 65, 0.12), rgba(27, 42, 65, 0) 62%),
    rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow-sm);
}

.accent {
  position: relative;
  padding-left: 18px;
}

.accent::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(27, 42, 65, 0.92), rgba(224, 122, 95, 0.72));
  box-shadow: 0 0 0 6px rgba(27, 42, 65, 0.06);
}

.split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 18px;
  align-items: center;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(27, 42, 65, 0.92);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(27, 42, 65, 0.14);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.mini-stack {
  grid-template-columns: 1fr;
  margin-top: 14px;
}

.mini-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(24, 28, 29, 0.10);
  border-radius: var(--r-lg);
  padding: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.mini-card h3 {
  font-size: 16px;
  margin: 0 0 6px;
}

.mini-card p {
  margin: 0;
  color: rgba(75, 87, 89, 0.96);
}

.callout {
  border-radius: 22px;
  border: 1px solid rgba(24, 28, 29, 0.10);
  background:
    linear-gradient(135deg, rgba(246, 160, 27, 0.14), rgba(255, 255, 255, 0.58)),
    radial-gradient(520px 260px at 0% 0%, rgba(246, 160, 27, 0.18), rgba(246, 160, 27, 0) 60%),
    radial-gradient(520px 260px at 100% 0%, rgba(27, 42, 65, 0.14), rgba(27, 42, 65, 0) 58%);
  box-shadow: var(--shadow-sm);
  padding: 18px;
}

.callout h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

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

.stack {
  display: grid;
  gap: 14px;
}

.calendar-section .media-card {
  background:
    radial-gradient(640px 260px at 0% 0%, rgba(27, 42, 65, 0.10), rgba(27, 42, 65, 0) 60%),
    rgba(255, 255, 255, 0.60);
}

.calendar-section .media-card img {
  border-radius: 14px;
  transform: scale(1.10);
  transform-origin: center;
}
.calendar-section .media-card { overflow: hidden; }

.communication-section .media-card {
  background:
    radial-gradient(680px 300px at 0% 0%, rgba(246, 160, 27, 0.12), rgba(246, 160, 27, 0) 58%),
    radial-gradient(680px 300px at 100% 0%, rgba(27, 42, 65, 0.12), rgba(27, 42, 65, 0) 58%),
    rgba(255, 255, 255, 0.60);
}

.communication-section .media-card img {
  border-radius: 14px;
}

.media-card {
  border-radius: 26px;
  border: 1px solid rgba(24, 28, 29, 0.10);
  background: rgba(255, 255, 255, 0.60);
  box-shadow: var(--shadow-sm);
  padding: 14px;
}

.split .media-card {
  margin-top: 14px;
}

.media-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.checklist {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 70ch;
}

.checklist li {
  position: relative;
  padding-left: 30px;
  color: rgba(75, 87, 89, 0.96);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(27, 42, 65, 0.12);
  border: 1px solid rgba(27, 42, 65, 0.18);
  box-shadow: 0 0 0 4px rgba(27, 42, 65, 0.06);
}

.checklist li::after {
  content: "✓";
  position: absolute;
  left: 4px;
  top: 0.14em;
  font-weight: 900;
  color: rgba(27, 42, 65, 0.92);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial;
}

.feature-panel {
  margin-top: 16px;
  padding: 26px;
  border-radius: 26px;
  border: 1px solid rgba(24, 28, 29, 0.10);
  background:
    radial-gradient(820px 360px at 12% 0%, rgba(27, 42, 65, 0.12), rgba(27, 42, 65, 0) 62%),
    radial-gradient(820px 360px at 92% 0%, rgba(224, 122, 95, 0.12), rgba(224, 122, 95, 0) 60%),
    rgba(255, 255, 255, 0.50);
  box-shadow: var(--shadow-sm);
}

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

.card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(24, 28, 29, 0.10);
  border-radius: var(--r-lg);
  padding: 18px 18px 16px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
  border-color: rgba(27, 42, 65, 0.22);
}

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

.card p {
  margin: 0;
  color: rgba(75, 87, 89, 0.96);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(27, 42, 65, 0.96);
  background: rgba(27, 42, 65, 0.10);
  border: 1px solid rgba(27, 42, 65, 0.14);
  margin-bottom: 10px;
}

.tag::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(224, 122, 95, 0.9);
  box-shadow: 0 0 0 4px rgba(224, 122, 95, 0.14);
}

.cta-section {
  margin-top: 64px;
  padding: 28px;
  border-radius: 26px;
  border: 1px solid rgba(24, 28, 29, 0.10);
  background:
    radial-gradient(700px 300px at 10% 0%, rgba(27, 42, 65, 0.14), rgba(27, 42, 65, 0) 58%),
    radial-gradient(640px 300px at 90% 0%, rgba(224, 122, 95, 0.14), rgba(224, 122, 95, 0) 60%),
    rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow-sm);
}

.footer {
  margin-top: 60px;
  padding-top: 18px;
  border-top: 1px solid rgba(24, 28, 29, 0.10);
  color: rgba(75, 87, 89, 0.92);
  font-size: 14px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.footer a {
  color: rgba(27, 42, 65, 0.92);
  text-decoration: none;
}

.footer a:hover { text-decoration: underline; }

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 22px;
  }
  .hero-copy h1 { font-size: 44px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { align-items: flex-start; }
  .hero-heading-logo { height: 84px; }
  .hero-cta { width: fit-content; }
  .split { grid-template-columns: 1fr; }
  .mini-grid { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .container { padding: 16px 16px 72px; }
  .nav { width: calc(100% - 24px); margin: 8px auto; padding: 8px 8px; }
  .nav-logo { height: 38px; }
  .nav-logo img { height: 38px; }
  .hero-copy h1 { font-size: 36px; }
  .grid { grid-template-columns: 1fr; }
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    left: 8px;
    right: 8px;
    top: calc(100% + 8px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(24, 28, 29, 0.12);
    box-shadow: var(--shadow-md);
  }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-links a { font-size: 14px; padding: 10px 10px; }
  .nav-links a.nav-cta { text-align: center; }
  .nav-toggle:checked + .nav-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle:checked + .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked + .nav-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .footer { flex-direction: column; align-items: flex-start; }
  .hero-heading-logo { height: 76px; }
}

@media (max-width: 520px) {
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cta, .card, .skip-link { transition: none; }
  .cta:hover, .card:hover { transform: none; }
}
