:root {
  color-scheme: light;
  --ink: #07111f;
  --muted: #4d5c6b;
  --blue: #0060ff;
  --blue-soft: #dcecff;
  --orange: #ff6800;
  --orange-soft: #fff1df;
  --gold: #ffb329;
  --paper: #fffdf8;
  --cloud: #f6fbff;
  --line: rgba(7, 17, 31, 0.12);
  --line-strong: rgba(7, 17, 31, 0.22);
  --shadow: 0 22px 60px rgba(10, 35, 70, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.hero {
  position: relative;
  min-height: 72svh;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0.78) 46%, rgba(255, 253, 248, 0.38)),
    url("assets/dawn-morning.jpg");
  background-position: center;
  background-size: cover;
}

.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 96, 255, 0.22);
}

.brand span {
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(7, 17, 31, 0.74);
  font-size: 0.96rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--blue);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: center;
  gap: 42px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0 42px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 800px;
  margin-bottom: 10px;
  font-size: 4.2rem;
  line-height: 0.94;
  letter-spacing: 0;
}

.subtitle {
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 1.55rem;
  font-weight: 900;
}

.lede {
  max-width: 590px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 1.28rem;
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  font-weight: 900;
  text-decoration: none;
}

.button-primary {
  border-color: rgba(255, 104, 0, 0.38);
  background: linear-gradient(90deg, var(--orange), var(--gold));
  color: #271000;
  box-shadow: 0 18px 34px rgba(255, 104, 0, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
}

.store-note {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-meta li {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
  color: rgba(7, 17, 31, 0.72);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-art {
  justify-self: center;
  width: min(100%, 390px);
  filter: drop-shadow(0 28px 54px rgba(0, 96, 255, 0.26));
}

.section {
  padding: 42px 0 74px;
}

.section-alt {
  background: linear-gradient(180deg, #fffaf3, var(--cloud));
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin-bottom: 10px;
  font-size: 2.35rem;
  line-height: 1.06;
  letter-spacing: 0;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.feature-card {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 36px rgba(10, 35, 70, 0.08);
}

.feature-card img {
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  object-fit: contain;
}

.feature-card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

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

.flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.flow-step {
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
}

.flow-step strong {
  display: block;
  margin-bottom: 6px;
  color: var(--orange);
  font-size: 0.92rem;
}

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

.footer {
  border-top: 1px solid var(--line);
  background: #07111f;
  color: rgba(255, 255, 255, 0.76);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-hero {
  background-image:
    linear-gradient(90deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0.76)),
    url("../assets/dawn-morning.jpg");
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid var(--line);
}

.page-hero .site-header {
  width: min(980px, calc(100% - 40px));
}

.page-title {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 58px;
}

.page-title h1 {
  max-width: 760px;
  font-size: 3.4rem;
  line-height: 1;
}

.page-title p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.14rem;
}

.document {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 72px;
}

.document h2 {
  margin: 34px 0 8px;
  font-size: 1.55rem;
}

.document h2:first-child {
  margin-top: 0;
}

.document p,
.document li {
  color: var(--muted);
}

.document ul {
  padding-left: 22px;
}

.notice {
  padding: 16px 18px;
  border-left: 4px solid var(--orange);
  background: var(--orange-soft);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: 22px;
  align-items: start;
  margin: 28px 0 38px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(10, 35, 70, 0.08);
}

.contact-panel h2 {
  margin-top: 0;
}

.email-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.quick-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.quick-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

@media (max-width: 820px) {
  .site-header,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 24px;
  }

  h1 {
    font-size: 3.15rem;
  }

  .subtitle {
    font-size: 1.3rem;
  }

  .lede {
    font-size: 1.12rem;
  }

  .hero-art {
    display: none;
  }

  .feature-grid,
  .flow,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .page-title h1 {
    font-size: 2.7rem;
  }
}

@media (max-width: 520px) {
  .brand span {
    white-space: normal;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  h1 {
    font-size: 2.55rem;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .hero-actions,
  .page-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .footer-inner {
    padding-bottom: 34px;
  }
}
