@font-face {
  font-family: "GmarketSans";
  src: url("/assets/main/GmarketSansMedium-main.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GmarketSans";
  src: url("/assets/main/GmarketSansBold-main.woff2") format("woff2");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy-950: #080d1c;
  --navy-900: #10182c;
  --navy-800: #172441;
  --navy-700: #243657;
  --orange: #f05223;
  --orange-dark: #c93c13;
  --orange-soft: #fff0e9;
  --ink: #171c26;
  --muted: #5e6572;
  --line: #dde1e7;
  --surface: #ffffff;
  --canvas: #f5f6f8;
  --shadow: 0 20px 55px rgba(16, 24, 44, 0.11);
  font-family: "GmarketSans", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  color: var(--ink);
  background: var(--canvas);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  word-break: keep-all;
}

body,
button,
input {
  font: inherit;
}

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

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

p,
h1,
h2,
h3,
dl,
dd {
  margin: 0;
}

a:focus-visible {
  outline: 3px solid var(--orange-dark);
  outline-offset: 4px;
  border-radius: 8px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 12px 18px;
  color: #fff;
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 76px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(16, 24, 44, 0.1);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  width: min(1180px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand > img {
  width: 38px;
  height: 50px;
  object-fit: contain;
}

.brand > span {
  display: grid;
  line-height: 1.12;
}

.brand strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2.2vw, 32px);
  color: #343b48;
  font-size: 14px;
  font-weight: 600;
}

.site-nav > a {
  padding: 12px 2px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 540px;
  color: #fff;
  overflow: hidden;
  background: var(--navy-950);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  z-index: -2;
  background-image: url("/assets/aurora-investment-hero.png");
  background-position: center 58%;
  background-size: cover;
  transform: scale(1.01);
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 13, 28, 0.96) 0%, rgba(7, 13, 28, 0.88) 34%, rgba(7, 13, 28, 0.42) 62%, rgba(7, 13, 28, 0.12) 100%),
    linear-gradient(0deg, rgba(7, 13, 28, 0.38), rgba(7, 13, 28, 0.02) 48%);
}

.hero__inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 540px;
  margin: 0 auto;
  padding: 82px 0 96px;
  display: flex;
  align-items: center;
}

.hero__copy {
  width: min(660px, 62%);
}

.eyebrow {
  color: #ff9c78;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.section-kicker {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.055em;
}

.hero h1 span {
  color: #ff7650;
}

.hero__lead {
  max-width: 630px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: -0.025em;
}

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

.button {
  min-height: 50px;
  padding: 13px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button--primary {
  color: #fff;
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.button--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}

.profile-band {
  position: relative;
  z-index: 2;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.profile-band__inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 132px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.profile-mark {
  width: 112px;
  height: 112px;
  align-self: start;
  margin-top: -35px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(16, 24, 44, 0.1);
  border-radius: 26px;
  box-shadow: 0 14px 38px rgba(16, 24, 44, 0.16);
}

.profile-mark img {
  width: 59px;
  height: 79px;
  object-fit: contain;
}

.profile-copy {
  min-width: 0;
  padding: 22px 0;
}

.profile-copy p {
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 700;
}

.profile-copy h2 {
  margin-top: 2px;
  font-size: 25px;
  line-height: 1.35;
  letter-spacing: -0.045em;
}

.profile-copy span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.profile-band__inner > a {
  color: var(--navy-700);
  font-size: 13px;
  font-weight: 700;
}

.profile-band__inner > a span {
  display: inline-block;
  margin-left: 8px;
  color: var(--orange);
}

.section {
  padding: 96px 0;
}

.section__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 36px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.section-heading h2 {
  margin-top: 8px;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.25;
  letter-spacing: -0.05em;
}

.section-heading > p {
  max-width: 430px;
  padding-bottom: 3px;
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}

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

.catalog-status,
.catalog-noscript {
  margin: -20px 0 22px;
  padding: 11px 14px;
  color: #475164;
  background: #f3f5f8;
  border: 1px solid #e1e5eb;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.55;
}

.catalog-status[hidden] {
  display: none;
}

.catalog-status--error,
.catalog-noscript {
  color: #7a2b1b;
  background: #fff5f1;
  border-color: #f1d5cc;
}

.catalog-status--empty {
  color: #475164;
  background: #f7f8fa;
}

.product-grid[aria-busy="true"] > .product-card {
  display: none;
}

.catalog-empty {
  min-height: 260px;
  padding: 48px 30px;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: #f8f9fb;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.catalog-empty__mark {
  padding: 6px 10px;
  color: var(--navy-700);
  background: #e9edf3;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.catalog-empty h3 {
  margin-top: 17px;
  font-size: 23px;
  letter-spacing: -0.04em;
}

.catalog-empty p {
  max-width: 470px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.catalog-empty--error {
  background: #fffaf8;
  border-color: #edd9d2;
}

.catalog-empty--error .catalog-empty__mark {
  color: #8a321f;
  background: #f9e4dc;
}

.product-card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(16, 24, 44, 0.06);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.product-card__link {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card__link:focus-visible {
  outline-offset: -5px;
  border-radius: 14px;
}

.product-card__visual {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.product-card__visual--generic {
  --generic-deep: #10182c;
  --generic-mid: #263654;
  --generic-accent: #ff7340;
  --generic-glow: rgba(255, 115, 64, 0.42);
  isolation: isolate;
  padding: 28px 30px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 22%, var(--generic-glow), transparent 26%),
    linear-gradient(140deg, var(--generic-deep), var(--generic-mid));
}

.product-card__visual--generic::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -64px;
  bottom: -82px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 30px rgba(255, 255, 255, 0.04),
    0 0 0 68px rgba(255, 255, 255, 0.025);
}

.product-card__visual--generic::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(115deg, transparent 44%, rgba(255, 255, 255, 0.06) 44.2%, transparent 44.5%);
}

.product-card__visual--theme-teal {
  --generic-deep: #092626;
  --generic-mid: #145755;
  --generic-accent: #59e0c2;
  --generic-glow: rgba(89, 224, 194, 0.4);
}

.product-card__visual--theme-blue {
  --generic-deep: #0b1d3a;
  --generic-mid: #225d91;
  --generic-accent: #6fc2ff;
  --generic-glow: rgba(111, 194, 255, 0.4);
}

.product-card__visual--theme-gold {
  --generic-deep: #2c210d;
  --generic-mid: #725627;
  --generic-accent: #ffc867;
  --generic-glow: rgba(255, 200, 103, 0.4);
}

.product-card__visual--theme-plum {
  --generic-deep: #28132d;
  --generic-mid: #663868;
  --generic-accent: #f7a1df;
  --generic-glow: rgba(247, 161, 223, 0.38);
}

.product-card__visual--theme-slate {
  --generic-deep: #18212b;
  --generic-mid: #4b5a68;
  --generic-accent: #b7d0df;
  --generic-glow: rgba(183, 208, 223, 0.36);
}

.generic-visual__eyebrow {
  position: absolute;
  top: 26px;
  left: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.generic-visual__mark {
  position: absolute;
  top: 48px;
  right: 30px;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  color: var(--generic-deep);
  background: var(--generic-accent);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 22px;
  box-shadow: 0 18px 35px rgba(4, 10, 20, 0.3);
  font-size: 34px;
  font-weight: 900;
  transition: transform 220ms ease;
}

.generic-visual__copy {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  display: grid;
  gap: 7px;
}

.generic-visual__copy strong {
  max-width: 82%;
  font-size: clamp(25px, 2.6vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.055em;
  overflow-wrap: anywhere;
}

.generic-visual__copy span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.product-card__visual--subscribe {
  padding: 28px 30px;
  display: grid;
  place-items: center;
  isolation: isolate;
  color: #fff;
  background:
    radial-gradient(circle at 75% 27%, rgba(48, 220, 175, 0.33), transparent 25%),
    linear-gradient(135deg, #090f23 0%, #152846 55%, #0e4f4a 100%);
}

.product-card__visual--subscribe::before,
.product-card__visual--subscribe::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -4%;
  right: -4%;
  height: 1px;
  background: rgba(119, 249, 207, 0.2);
  box-shadow:
    0 38px rgba(119, 249, 207, 0.14),
    0 76px rgba(119, 249, 207, 0.1),
    0 114px rgba(119, 249, 207, 0.08);
  transform: rotate(-8deg);
}

.product-card__visual--subscribe::before {
  top: 41%;
}

.product-card__visual--subscribe::after {
  top: 62%;
  transform: rotate(8deg);
}

.product-card__visual--subscribe > img {
  position: relative;
  z-index: 1;
  width: min(66%, 210px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(1, 8, 21, 0.34));
  transform: translateY(4px);
}

.visual-label {
  position: absolute;
  top: 24px;
  left: 28px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.visual-copy {
  position: absolute;
  right: auto;
  bottom: 23px;
  left: 50%;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}

.visual-copy span {
  padding: 5px 9px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 11px;
}

.product-card__visual--concert {
  display: grid;
  place-items: center;
  isolation: isolate;
  background: #070d1b;
}

.product-card__visual--concert > img {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 50%;
  width: 155%;
  max-width: none;
  height: auto;
  filter: brightness(0.52) saturate(0.9);
  transform: translateX(-50%);
  transition: transform 350ms ease;
}

.product-card__visual--concert::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(circle at 50% 49%, rgba(8, 15, 31, 0.06), rgba(5, 10, 22, 0.52) 75%),
    linear-gradient(0deg, rgba(4, 8, 18, 0.32), rgba(4, 8, 18, 0.14));
  pointer-events: none;
}

.concert-visual-title {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 3px;
  text-align: center;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.46);
}

.concert-visual-title span,
.concert-visual-title strong {
  line-height: 1.05;
  white-space: nowrap;
}

.concert-visual-title span {
  color: #fff2df;
  font-size: clamp(27px, 3vw, 39px);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.concert-visual-title strong {
  color: #ff6523;
  font-size: clamp(35px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.07em;
}

.product-card__visual--advisory {
  isolation: isolate;
  color: #fff;
  background: #10182c;
}

.product-card__visual--advisory > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 350ms ease;
}

.product-card__visual--advisory::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 14, 28, 0.68) 0%, transparent 38%),
    linear-gradient(0deg, rgba(8, 14, 28, 0.5) 0%, rgba(8, 14, 28, 0.04) 52%);
  pointer-events: none;
}

.product-card__visual--advisory .visual-label {
  z-index: 2;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 8px rgba(5, 10, 20, 0.42);
}

.advisory-event-chip {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  padding: 6px 10px;
  color: #fff;
  background: var(--orange-dark);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.product-card__body {
  flex: 1;
  padding: 30px 32px 32px;
  display: flex;
  flex-direction: column;
}

.product-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.product-card__badges span {
  padding: 5px 9px;
  color: var(--orange-dark);
  background: var(--orange-soft);
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
}

.product-card__badges span + span {
  color: var(--navy-700);
  background: #edf0f5;
}

.product-card h3 {
  margin-top: 16px;
  font-size: 25px;
  line-height: 1.35;
  letter-spacing: -0.045em;
}

.product-card__description {
  min-height: 54px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.product-facts {
  margin-top: 25px;
  padding: 17px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-facts > div + div {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.product-facts dt {
  color: var(--muted);
  font-size: 11px;
}

.product-facts dd {
  margin-top: 3px;
  color: #313846;
  font-size: 12px;
  font-weight: 700;
}

.product-card__footer {
  margin-top: auto;
  padding-top: 25px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.product-card__footer p {
  display: flex;
  align-items: baseline;
  gap: 5px;
  white-space: nowrap;
}

.product-card__footer small,
.product-card__footer span {
  color: var(--muted);
  font-size: 11px;
}

.product-card__footer strong {
  color: var(--navy-900);
  font-size: 26px;
  letter-spacing: -0.04em;
}

.product-cta {
  flex: 0 0 auto;
  color: var(--orange-dark) !important;
  font-weight: 700;
}

.product-cta b {
  display: inline-block;
  margin-left: 6px;
  font-size: 16px;
  transition: transform 180ms ease;
}

.guide {
  background: #fff;
  border-top: 1px solid var(--line);
}

.section-heading--center {
  margin-bottom: 42px;
  display: block;
  text-align: center;
}

.section-heading--center h2 {
  margin-top: 8px;
}

.section-heading--center > p:last-child {
  max-width: none;
  margin-top: 12px;
  padding: 0;
  text-align: center;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.guide-grid article {
  min-height: 245px;
  padding: 30px;
  background: #f7f8fa;
  border: 1px solid #e6e8ec;
  border-radius: 12px;
}

.guide-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--navy-800);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.guide-grid h3 {
  margin-top: 23px;
  font-size: 18px;
  letter-spacing: -0.035em;
}

.guide-grid p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.investment-notice {
  margin-top: 24px;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  background: #fff8f4;
  border: 1px solid #f4d9cc;
  border-radius: 10px;
}

.investment-notice strong {
  color: var(--orange-dark);
  font-size: 13px;
}

.investment-notice p {
  color: #5e514b;
  font-size: 11px;
  line-height: 1.8;
}

.site-footer {
  padding: 55px 0 42px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-950);
}

.site-footer__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.footer-brand img {
  width: 37px;
  height: 49px;
  object-fit: contain;
}

.footer-brand div {
  display: grid;
  line-height: 1.2;
}

.footer-brand strong {
  font-size: 17px;
}

.footer-brand span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.company-info {
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.9;
}

.company-info p + p {
  margin-top: 2px;
}

.company-info span {
  margin: 0 7px;
  color: rgba(255, 255, 255, 0.22);
}

.footer-links {
  margin-top: 26px;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 600;
}

.copyright {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
  letter-spacing: 0.04em;
}

@media (hover: hover) {
  .site-nav > a:hover,
  .profile-band__inner > a:hover,
  .footer-links a:hover,
  .company-info a:hover {
    color: var(--orange);
  }

  .button:hover {
    transform: translateY(-2px);
  }

  .button--primary:hover {
    background: #a83210;
    border-color: #a83210;
  }

  .button--ghost:hover {
    background: rgba(255, 255, 255, 0.17);
  }

  .product-card:hover {
    border-color: #cdd1d8;
    box-shadow: var(--shadow);
    transform: translateY(-5px);
  }

  .product-card:hover .product-card__visual--advisory > img {
    transform: scale(1.025);
  }

  .product-card:hover .product-card__visual--concert > img {
    transform: translateX(-50%) scale(1.025);
  }

  .product-card:hover .generic-visual__mark {
    transform: translateY(-4px) rotate(-3deg);
  }

  .product-card:hover .product-cta b {
    transform: translateX(4px);
  }
}

@media (max-width: 1080px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header__inner,
  .hero__inner,
  .profile-band__inner,
  .section__inner,
  .site-footer__inner {
    width: min(100% - 32px, 680px);
  }

  .hero__copy {
    width: min(620px, 84%);
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(7, 13, 28, 0.96) 0%, rgba(7, 13, 28, 0.83) 54%, rgba(7, 13, 28, 0.35) 100%),
      linear-gradient(0deg, rgba(7, 13, 28, 0.45), transparent 52%);
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .section-heading > p {
    max-width: 560px;
    padding: 0;
    text-align: left;
  }

  .product-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .guide-grid article {
    min-height: 0;
  }

  .product-card__visual {
    height: 320px;
  }

  .product-card__description {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 68px;
  }

  .site-header {
    height: 66px;
  }

  .site-header__inner {
    width: calc(100% - 24px);
    gap: 10px;
  }

  .brand {
    gap: 7px;
  }

  .brand > img {
    width: 27px;
    height: 37px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 11px;
  }

  .site-nav {
    gap: 3px;
    font-size: 12px;
  }

  .site-nav > a {
    padding: 9px 5px;
  }

  .hero {
    min-height: 510px;
  }

  .hero__image {
    background-position: 61% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(7, 13, 28, 0.96), rgba(7, 13, 28, 0.64)),
      linear-gradient(0deg, rgba(7, 13, 28, 0.55), rgba(7, 13, 28, 0.18));
  }

  .hero__inner {
    width: calc(100% - 32px);
    min-height: 510px;
    padding: 62px 0 74px;
    align-items: flex-end;
  }

  .hero__copy {
    width: 100%;
  }

  .eyebrow {
    font-size: 11px;
  }

  .hero h1 {
    margin-top: 14px;
    font-size: clamp(34px, 10vw, 43px);
    line-height: 1.23;
  }

  .hero__lead {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.75;
  }

  .hero__actions {
    gap: 8px;
    margin-top: 27px;
  }

  .button {
    min-height: 45px;
    padding: 11px 15px;
    font-size: 11px;
  }

  .profile-band__inner {
    width: calc(100% - 32px);
    min-height: 150px;
    grid-template-columns: 78px 1fr;
    gap: 15px;
  }

  .profile-mark {
    width: 78px;
    height: 78px;
    margin-top: -22px;
    border-radius: 18px;
  }

  .profile-mark img {
    width: 41px;
    height: 56px;
  }

  .profile-copy {
    padding: 20px 0 8px;
  }

  .profile-copy p {
    font-size: 11px;
  }

  .profile-copy h2 {
    font-size: 21px;
  }

  .profile-copy span {
    margin-top: 3px;
    font-size: 12px;
    line-height: 1.6;
  }

  .profile-band__inner > a {
    grid-column: 2;
    align-self: start;
    margin-top: -12px;
    padding-bottom: 18px;
    font-size: 11px;
  }

  .section {
    padding: 66px 0;
  }

  .section__inner,
  .site-footer__inner {
    width: calc(100% - 32px);
  }

  .section-heading {
    margin-bottom: 25px;
  }

  .section-heading h2 {
    margin-top: 5px;
    font-size: 30px;
  }

  .section-heading > p {
    font-size: 12px;
    line-height: 1.7;
  }

  .section-kicker {
    font-size: 11px;
  }

  .product-grid {
    gap: 20px;
  }

  .product-card {
    border-radius: 12px;
  }

  .product-card__visual {
    height: 235px;
  }

  .product-card__visual--subscribe {
    padding: 20px;
  }

  .product-card__visual--generic {
    padding: 20px;
  }

  .generic-visual__eyebrow {
    top: 19px;
    left: 21px;
  }

  .generic-visual__mark {
    top: 42px;
    right: 21px;
    width: 62px;
    height: 62px;
    border-radius: 18px;
    font-size: 28px;
  }

  .generic-visual__copy {
    right: 21px;
    bottom: 21px;
    left: 21px;
  }

  .generic-visual__copy strong {
    font-size: 25px;
  }

  .product-card__visual--subscribe > img {
    width: min(62%, 146px);
    height: auto;
  }

  .visual-label {
    top: 18px;
    left: 20px;
    font-size: 11px;
  }

  .visual-copy {
    bottom: 17px;
    left: 50%;
  }

  .visual-copy span {
    padding: 4px 7px;
    font-size: 11px;
  }

  .concert-visual-title span {
    font-size: 27px;
  }

  .concert-visual-title strong {
    font-size: 36px;
  }

  .product-card__body {
    padding: 23px 21px 25px;
  }

  .product-card h3 {
    margin-top: 13px;
    font-size: 21px;
  }

  .product-card__description {
    font-size: 12px;
  }

  .product-facts {
    margin-top: 20px;
    padding: 14px 0;
  }

  .product-facts > div + div {
    padding-left: 15px;
  }

  .product-facts dt {
    font-size: 11px;
  }

  .product-facts dd {
    font-size: 12px;
  }

  .product-card__footer {
    padding-top: 20px;
    gap: 10px;
  }

  .product-card__footer strong {
    font-size: 21px;
  }

  .product-card__footer small,
  .product-card__footer span {
    font-size: 11px;
  }

  .product-cta {
    text-align: right;
  }

  .section-heading--center {
    margin-bottom: 28px;
  }

  .section-heading--center > p:last-child {
    margin-top: 8px;
    text-align: center;
  }

  .guide-grid {
    gap: 12px;
  }

  .guide-grid article {
    padding: 23px 21px;
  }

  .guide-icon {
    width: 38px;
    height: 38px;
    font-size: 11px;
  }

  .guide-grid h3 {
    margin-top: 17px;
    font-size: 16px;
  }

  .guide-grid p {
    margin-top: 7px;
    font-size: 12px;
  }

  .investment-notice {
    margin-top: 16px;
    padding: 19px 20px;
    display: block;
  }

  .investment-notice strong {
    font-size: 12px;
  }

  .investment-notice p {
    margin-top: 7px;
    font-size: 12px;
  }

  .site-footer {
    padding: 42px 0 34px;
  }

  .company-info {
    font-size: 11px;
  }

  .company-info span {
    margin: 0 3px;
  }

  .footer-links {
    gap: 9px 16px;
  }
}

@media (max-width: 390px) {
  .site-nav > a {
    padding-inline: 3px;
  }

  .brand small {
    display: none;
  }

  .hero__actions .button {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
  }

  .hero h1 {
    font-size: 34px;
  }

  .product-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-cta {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
