:root {
  color-scheme: light;
  --bg: #fffaf5;
  --surface: #ffffff;
  --ink: #24211f;
  --muted: #6f6861;
  --line: #eaded3;
  --accent: #d98463;
  --accent-soft: #f7e5da;
  --max: 880px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

html {
  scroll-behavior: smooth;
}

a {
  color: #a94e31;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.site-header,
.site-footer {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.site-header {
  padding: 28px 0 20px;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: inherit;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 18px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
}

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

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

main {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 24px 0 52px;
}

.hero,
.content {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero {
  padding: 34px;
  margin-bottom: 18px;
}

.content {
  padding: 16px 34px 34px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 52px);
}

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

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

p,
ul,
ol {
  color: var(--muted);
}

li + li {
  margin-top: 7px;
}

.summary {
  max-width: 680px;
  margin: 14px 0 0;
  font-size: 18px;
}

.meta {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.link-card {
  display: block;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
}

.link-card strong {
  display: block;
  margin-bottom: 6px;
}

.link-card span {
  color: var(--muted);
  font-size: 14px;
}

.notice {
  padding: 14px 16px;
  margin: 20px 0;
  background: var(--accent-soft);
  border: 1px solid #efcfbe;
  border-radius: 8px;
  color: #6f402f;
}

.site-footer {
  padding: 24px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.company-home {
  --company-bg: #f5f1e9;
  --company-surface: #fbf8f2;
  --company-ink: #121b2a;
  --company-muted: #6d7078;
  --company-blue: #3157ff;
  --company-coral: #ff8e73;
  --company-line: rgba(18, 27, 42, 0.14);
  min-height: 100vh;
  background: var(--company-bg);
  color: var(--company-ink);
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Segoe UI", sans-serif;
}

html[data-language="ko"] [data-i18n="en"],
html[data-language="en"] [data-i18n="ko"] {
  display: none;
}

.company-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 96px;
  padding: 0 max(48px, calc((100vw - 1280px) / 2));
  border-bottom: 1px solid rgba(18, 27, 42, 0.06);
  background: rgba(245, 241, 233, 0.9);
  backdrop-filter: blur(18px);
}

.company-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--company-ink);
  font-size: 20px;
  font-weight: 730;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.company-brand-mark {
  position: relative;
  width: 28px;
  height: 28px;
  display: inline-block;
  border: 2px solid var(--company-blue);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-25deg);
}

.company-brand-mark::before,
.company-brand-mark::after,
.company-brand-mark span {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.company-brand-mark::before {
  width: 7px;
  height: 7px;
  left: -2px;
  top: 1px;
  background: var(--company-blue);
}

.company-brand-mark::after {
  width: 5px;
  height: 5px;
  right: 0;
  bottom: 1px;
  background: var(--company-coral);
}

.company-brand-mark span {
  width: 4px;
  height: 4px;
  top: 10px;
  left: 3px;
  background: var(--company-bg);
}

.company-header-actions,
.company-nav,
.language-switch {
  display: flex;
  align-items: center;
}

.company-header-actions {
  gap: 38px;
}

.company-nav {
  gap: 42px;
}

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

.company-nav a:hover,
.company-nav a:focus-visible {
  color: var(--company-blue);
}

.language-switch {
  padding: 2px;
  border: 1px solid var(--company-ink);
  border-radius: 999px;
}

.language-button {
  min-height: 36px;
  padding: 0 15px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--company-ink);
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

html[data-language="ko"] .language-button[data-language-option="ko"],
html[data-language="en"] .language-button[data-language-option="en"] {
  background: var(--company-ink);
  color: #ffffff;
}

.company-main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.company-hero,
.company-about,
.company-product-inner,
.company-footer {
  width: min(100% - 96px, 1280px);
  margin: 0 auto;
}

.company-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.84fr);
  gap: 90px;
  align-items: center;
  min-height: 710px;
  padding: 72px 0 84px;
}

.company-hero-copy {
  position: relative;
  z-index: 2;
}

.company-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--company-ink);
  font-size: clamp(56px, 5.5vw, 80px);
  font-weight: 540;
  line-height: 1.16;
  letter-spacing: -0.058em;
  word-break: keep-all;
}

.company-summary {
  max-width: 630px;
  margin: 38px 0 0;
  color: #555b65;
  font-size: 18px;
  line-height: 1.8;
  word-break: keep-all;
}

.company-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 44px;
}

.company-primary-link,
.company-secondary-link,
.company-product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 32px;
  border-radius: 999px;
  font-weight: 650;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease;
}

.company-primary-link {
  background: var(--company-blue);
  color: #ffffff;
}

.company-secondary-link {
  border: 2px solid var(--company-ink);
  color: var(--company-ink);
}

.company-primary-link:hover,
.company-secondary-link:hover,
.company-product-link:hover {
  transform: translateY(-2px);
}

.company-hero-art {
  position: relative;
  min-height: 480px;
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
}

.hero-orbit-dashed {
  width: 390px;
  height: 390px;
  top: 44px;
  left: 28px;
  border: 2px dashed rgba(49, 87, 255, 0.18);
  transform: rotate(18deg);
}

.hero-orbit-line {
  width: 265px;
  height: 360px;
  top: 75px;
  left: 75px;
  border: 1px solid rgba(18, 27, 42, 0.24);
  border-top-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(23deg);
}

.hero-waypoint {
  position: absolute;
  width: 10px;
  height: 10px;
  top: 40px;
  left: 219px;
  border-radius: 50%;
  background: rgba(49, 87, 255, 0.17);
  box-shadow: 0 390px 0 rgba(49, 87, 255, 0.17);
}

.hero-product-card {
  position: absolute;
  top: 142px;
  right: 0;
  width: min(100%, 320px);
  min-height: 218px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid rgba(18, 27, 42, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 26px 60px rgba(18, 27, 42, 0.15);
}

.hero-card-accent {
  width: 52px;
  height: 4px;
  margin-bottom: 24px;
  background: var(--company-blue);
}

.hero-product-card strong {
  font-size: 27px;
  font-weight: 560;
  letter-spacing: -0.035em;
}

.hero-product-card > span:not(.hero-card-accent, .hero-card-dots) {
  margin-top: 12px;
  color: #8b8c92;
  font-size: 15px;
}

.hero-card-dots {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.hero-card-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--company-blue);
}

.hero-card-dots i:nth-child(2) {
  background: var(--company-coral);
}

.hero-card-dots i:nth-child(3) {
  background: #b8b9be;
}

.company-about {
  padding: 110px 0 120px;
}

.company-about h2,
.company-product h2 {
  margin: 0;
  font-size: clamp(38px, 4.1vw, 58px);
  font-weight: 520;
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.company-about-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 88px;
  margin-top: 58px;
}

.company-about-copy p,
.company-product-copy p {
  margin: 0;
  color: #555b65;
  font-size: 17px;
  line-height: 1.85;
  word-break: keep-all;
}

.company-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px;
  margin-top: 110px;
}

.company-principles article {
  min-width: 0;
}

.principle-line {
  display: block;
  width: 48px;
  height: 4px;
  margin-bottom: 24px;
}

.principle-blue {
  background: var(--company-blue);
}

.principle-coral {
  background: var(--company-coral);
}

.principle-navy {
  background: var(--company-ink);
}

.company-principles h3 {
  margin: 0;
  color: var(--company-ink);
  font-size: 22px;
  font-weight: 560;
}

.company-principles p {
  margin: 16px 0 0;
  color: #666a72;
  font-size: 15px;
  line-height: 1.7;
}

.company-product {
  width: 100%;
  background: var(--company-ink);
  color: #ffffff;
}

.company-product-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.7fr);
  gap: 100px;
  align-items: center;
  min-height: 800px;
  padding: 92px 0;
}

.company-product h2 {
  color: #ffffff;
}

.company-product-copy p {
  max-width: 600px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.company-product-link {
  min-height: 52px;
  margin-top: 38px;
  padding: 0 28px;
  background: var(--company-blue);
  color: #ffffff;
}

.babynote-phone {
  position: relative;
  width: min(100%, 360px);
  min-height: 610px;
  justify-self: center;
  display: flex;
  flex-direction: column;
  gap: 34px;
  padding: 52px 38px 46px;
  border-radius: 42px;
  background: var(--company-surface);
  color: var(--company-ink);
  text-decoration: none;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.phone-speaker {
  position: absolute;
  width: 92px;
  height: 24px;
  top: -13px;
  left: 50%;
  border-radius: 999px;
  background: #080d16;
  transform: translateX(-50%);
}

.phone-day {
  color: #a1a1a7;
  font-size: 13px;
}

.phone-timeline {
  position: absolute;
  width: 1px;
  height: 265px;
  top: 129px;
  left: 61px;
  background: #c7c8cd;
}

.phone-entry {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  grid-template-areas:
    "icon time"
    "icon title"
    "icon detail";
  min-height: 76px;
  column-gap: 17px;
}

.timeline-icon {
  position: relative;
  z-index: 1;
  grid-area: icon;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--company-blue);
}

.sleep-icon {
  background: var(--company-coral);
}

.timeline-icon i,
.timeline-icon i::before,
.timeline-icon i::after {
  position: absolute;
  content: "";
}

.feeding-icon i {
  width: 9px;
  height: 18px;
  border: 2px solid #ffffff;
  border-radius: 3px 3px 5px 5px;
}

.feeding-icon i::before {
  width: 7px;
  height: 3px;
  top: -6px;
  left: -1px;
  border: 2px solid #ffffff;
  border-bottom: 0;
}

.sleep-icon i {
  width: 14px;
  height: 14px;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.sleep-icon i::after {
  width: 4px;
  height: 4px;
  right: -3px;
  top: -3px;
  border-radius: 50%;
  background: var(--company-coral);
}

.diaper-icon i {
  width: 16px;
  height: 11px;
  border: 2px solid #ffffff;
  border-radius: 3px 3px 6px 6px;
}

.diaper-icon i::before {
  width: 2px;
  height: 7px;
  left: 5px;
  top: 0;
  background: #ffffff;
}

.phone-time {
  grid-area: time;
  color: #999aa1;
  font-size: 12px;
}

.phone-entry strong {
  grid-area: title;
  align-self: center;
  font-size: 15px;
  font-weight: 600;
}

.phone-entry small {
  grid-area: detail;
  color: #888a92;
  font-size: 12px;
}

.company-footer {
  padding: 64px 0 42px;
  color: var(--company-ink);
}

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

.company-footer-grid > strong,
.company-footer-grid > a {
  color: var(--company-ink);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.company-footer-grid div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.company-footer-grid div > span {
  color: #8b8d94;
  font-size: 13px;
}

.company-footer-grid div a {
  color: var(--company-blue);
  text-decoration: none;
}

.company-footer > p {
  margin: 56px 0 0;
  padding-top: 30px;
  border-top: 1px solid rgba(18, 27, 42, 0.08);
  color: #92949a;
  font-size: 13px;
}

.company-home a:focus-visible,
.company-home button:focus-visible {
  outline: 3px solid rgba(49, 87, 255, 0.36);
  outline-offset: 4px;
}

.admin-site-header {
  --max: 1080px;
}

.admin-shell {
  --max: 1080px;
}

.admin-hero,
.admin-token-panel,
.admin-toolbar,
.admin-stats article,
.feedback-card,
.admin-empty,
.admin-status {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-hero {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px;
  margin-bottom: 16px;
}

.admin-hero h1 {
  font-size: clamp(30px, 5vw, 44px);
}

.admin-token-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: end;
  padding: 22px;
  margin-bottom: 16px;
}

.admin-token-panel h2 {
  margin-top: 0;
}

.token-form label,
.admin-toolbar label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.token-row {
  display: flex;
  gap: 10px;
}

input,
select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdfb;
  color: var(--ink);
  font: inherit;
}

input:focus,
select:focus {
  outline: 2px solid #efcfbe;
  outline-offset: 2px;
}

.primary-button,
.secondary-button {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.primary-button {
  background: var(--accent);
  color: #ffffff;
}

.secondary-button {
  background: var(--accent-soft);
  color: #7a452f;
  border-color: #efcfbe;
}

.primary-button:disabled,
.secondary-button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.admin-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 240px) minmax(110px, 140px);
  gap: 14px;
  padding: 16px;
  margin-bottom: 16px;
}

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

.admin-stats article {
  padding: 16px;
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.admin-stats strong {
  display: block;
  margin-top: 6px;
  font-size: 24px;
  line-height: 1.2;
}

.admin-status {
  padding: 12px 14px;
  margin-bottom: 16px;
  color: var(--muted);
}

.admin-status-success {
  border-color: #b8e6cf;
  background: #f0fbf5;
  color: #26724a;
}

.admin-status-error {
  border-color: #ffd0ca;
  background: #fff5f3;
  color: #a53d2e;
}

.admin-status-loading {
  border-color: #d8dff2;
  background: #f7f9ff;
  color: #52658c;
}

.admin-hidden {
  display: none;
}

.feedback-list {
  display: grid;
  gap: 12px;
}

.feedback-card {
  padding: 18px;
}

.feedback-card-header {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}

.feedback-card-title {
  display: grid;
  gap: 3px;
}

.feedback-card-title span,
.feedback-details,
.admin-empty span {
  color: var(--muted);
}

.pill {
  flex: 0 0 auto;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #7a452f;
  font-size: 12px;
  font-weight: 800;
}

.feedback-message {
  margin: 14px 0;
  color: var(--ink);
  white-space: pre-wrap;
}

.feedback-details {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  font-size: 13px;
}

.feedback-details dt {
  font-weight: 800;
  color: var(--ink);
}

.feedback-details dd {
  margin: 2px 0 0;
  overflow-wrap: anywhere;
}

.admin-empty {
  display: grid;
  gap: 6px;
  padding: 28px;
  text-align: center;
}

@media (max-width: 640px) {
  .hero,
  .content {
    padding: 24px 20px;
  }

  .admin-hero,
  .admin-token-panel,
  .admin-toolbar {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .admin-hero,
  .token-row {
    flex-direction: column;
  }

  .admin-stats,
  .feedback-details {
    grid-template-columns: 1fr;
  }

  .company-header {
    min-height: 80px;
    padding: 0 18px;
  }

  .company-nav {
    display: none;
  }

  .company-header-actions {
    gap: 0;
  }

  .language-button {
    min-height: 34px;
    padding: 0 10px;
    font-size: 11px;
  }

  .company-brand {
    gap: 9px;
    font-size: 18px;
  }

  .company-hero {
    width: min(100% - 32px, 1280px);
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: 0;
    padding: 80px 8px 72px;
  }

  .company-hero h1 {
    font-size: clamp(40px, 12.2vw, 54px);
    line-height: 1.18;
  }

  .company-summary {
    margin-top: 32px;
    font-size: 16px;
    line-height: 1.78;
  }

  .company-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .company-primary-link,
  .company-secondary-link {
    width: 100%;
  }

  .company-hero-art {
    min-height: 330px;
  }

  .hero-orbit-dashed {
    width: 290px;
    height: 290px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) rotate(18deg);
  }

  .hero-orbit-line {
    width: 200px;
    height: 270px;
    top: 32px;
    left: 50%;
    transform: translateX(-50%) rotate(23deg);
  }

  .hero-waypoint {
    top: 16px;
    left: 50%;
    box-shadow: 0 292px 0 rgba(49, 87, 255, 0.17);
  }

  .hero-product-card {
    width: min(92%, 292px);
    min-height: 196px;
    top: 72px;
    right: 0;
    padding: 28px;
  }

  .company-about {
    width: min(100% - 32px, 1280px);
    padding: 84px 8px 96px;
  }

  .company-about-copy,
  .company-principles,
  .company-product-inner {
    grid-template-columns: 1fr;
  }

  .company-about-copy {
    gap: 22px;
    margin-top: 38px;
  }

  .company-about-copy p,
  .company-product-copy p {
    font-size: 16px;
  }

  .company-principles {
    gap: 48px;
    margin-top: 72px;
  }

  .company-product-inner {
    width: min(100% - 32px, 1280px);
    gap: 72px;
    min-height: 0;
    padding: 88px 8px 96px;
  }

  .babynote-phone {
    width: min(100%, 330px);
    min-height: 590px;
    padding-right: 28px;
    padding-left: 28px;
  }

  .company-footer {
    width: min(100% - 32px, 1280px);
    padding-top: 54px;
  }

  .company-footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

/* BabyNote marketing, legal, support, and admin */
.babynote-site,
.babynote-doc,
.babynote-admin {
  --baby-bg: #f5f1e9;
  --baby-surface: #fffdf9;
  --baby-ink: #121b2a;
  --baby-muted: #676b75;
  --baby-blue: #3157ff;
  --baby-coral: #ff8e73;
  --baby-gold: #e8b44a;
  --baby-mint: #65bda5;
  --baby-line: rgba(18, 27, 42, 0.12);
  --baby-navy: #121b2a;
  --baby-max: 1280px;
  min-height: 100vh;
  background: var(--baby-bg);
  color: var(--baby-ink);
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Segoe UI", sans-serif;
}

.babynote-site a,
.babynote-doc a,
.babynote-admin a {
  color: inherit;
}

.babynote-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 0 max(32px, calc((100vw - var(--baby-max)) / 2));
  border-bottom: 1px solid rgba(18, 27, 42, 0.07);
  background: rgba(245, 241, 233, 0.92);
  backdrop-filter: blur(18px);
}

.babynote-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--baby-ink);
  font-size: 18px;
  font-weight: 780;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.babynote-brand small {
  margin-left: -4px;
  color: var(--baby-muted);
  font-size: 11px;
  font-weight: 620;
  letter-spacing: 0;
}

.orbit-mark {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 2px solid var(--baby-blue);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-24deg);
}

.orbit-mark::before,
.orbit-mark::after,
.orbit-mark span {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.orbit-mark::before {
  width: 7px;
  height: 7px;
  left: -2px;
  top: 1px;
  background: var(--baby-blue);
}

.orbit-mark::after {
  width: 5px;
  height: 5px;
  right: -1px;
  bottom: 1px;
  background: var(--baby-coral);
}

.orbit-mark span {
  width: 4px;
  height: 4px;
  top: 10px;
  left: 3px;
  background: var(--baby-bg);
}

.orbit-mark.large {
  width: 58px;
  height: 58px;
  border-width: 3px;
}

.orbit-mark.large::before {
  width: 12px;
  height: 12px;
}

.orbit-mark.large::after {
  width: 9px;
  height: 9px;
}

.orbit-mark.large span {
  width: 7px;
  height: 7px;
  top: 21px;
  left: 7px;
}

.babynote-header-actions,
.babynote-nav,
.babynote-language {
  display: flex;
  align-items: center;
}

.babynote-header-actions {
  gap: 34px;
}

.babynote-nav {
  gap: 28px;
}

.babynote-nav a {
  color: var(--baby-ink);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.babynote-nav a:hover,
.babynote-nav a:focus-visible {
  color: var(--baby-blue);
}

.babynote-language {
  padding: 3px;
  border: 1px solid var(--baby-ink);
  border-radius: 999px;
}

.babynote-language button {
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--baby-ink);
  font: inherit;
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
}

html[data-language="ko"] .babynote-language [data-language-option="ko"],
html[data-language="en"] .babynote-language [data-language-option="en"] {
  background: var(--baby-ink);
  color: #ffffff;
}

.babynote-main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.babynote-hero,
.babynote-features,
.babynote-story-section,
.babynote-closing {
  width: min(100% - 64px, var(--baby-max));
  margin: 0 auto;
}

.babynote-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.72fr);
  gap: 76px;
  align-items: center;
  min-height: 720px;
  padding: 78px 0 96px;
}

.babynote-kicker {
  margin: 0 0 18px;
  color: var(--baby-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.babynote-kicker.light {
  color: #aebcff;
}

.babynote-hero h1 {
  margin: 0;
  color: var(--baby-ink);
  font-size: clamp(54px, 5.8vw, 82px);
  font-weight: 560;
  line-height: 1.14;
  letter-spacing: -0.06em;
  word-break: keep-all;
}

.babynote-lede {
  max-width: 680px;
  margin: 32px 0 0;
  color: #565c68;
  font-size: 18px;
  line-height: 1.8;
  word-break: keep-all;
}

.babynote-store-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
}

.coming-soon {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(49, 87, 255, 0.1);
  color: var(--baby-blue);
  font-size: 12px;
  font-weight: 720;
}

.app-store-button {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 60px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: #747b87;
  color: #ffffff;
  opacity: 1;
}

.app-store-button span:last-child {
  display: grid;
  justify-items: start;
}

.app-store-button small {
  font-size: 10px;
  line-height: 1.15;
}

.app-store-button strong {
  font-size: 14px;
  line-height: 1.3;
}

.apple-mark {
  font-size: 22px;
}

.babynote-text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 52px;
  padding: 0 8px;
  color: var(--baby-blue) !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.babynote-phone-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
}

.babynote-orbit {
  position: absolute;
  border: 1px solid rgba(49, 87, 255, 0.22);
  border-radius: 50%;
}

.orbit-one {
  width: 500px;
  height: 320px;
  transform: rotate(-22deg);
}

.orbit-two {
  width: 420px;
  height: 520px;
  border-color: rgba(255, 142, 115, 0.22);
  transform: rotate(29deg);
}

.babynote-phone {
  position: relative;
  z-index: 2;
  width: 300px;
  min-height: 548px;
  padding: 18px 18px 28px;
  overflow: hidden;
  border: 9px solid #ffffff;
  border-radius: 48px;
  background: #f8f5ee;
  box-shadow: 0 30px 70px rgba(18, 27, 42, 0.18);
}

.phone-top,
.phone-title,
.phone-record {
  display: flex;
  align-items: center;
}

.phone-top {
  justify-content: space-between;
  color: #282c35;
  font-size: 10px;
}

.phone-top i {
  width: 64px;
  height: 19px;
  border-radius: 999px;
  background: #050505;
}

.phone-top b {
  width: 12px;
  height: 8px;
  border: 1px solid #282c35;
  border-radius: 3px;
}

.phone-title {
  justify-content: space-between;
  margin: 25px 2px 21px;
}

.phone-title strong {
  font-size: 20px;
}

.phone-title span {
  color: var(--baby-muted);
  font-size: 11px;
}

.phone-record {
  gap: 10px;
  margin: 0 0 14px;
}

.phone-record time {
  width: 39px;
  color: #92959c;
  font-size: 10px;
}

.phone-record > div {
  position: relative;
  display: grid;
  flex: 1;
  gap: 4px;
  padding: 13px 16px 13px 25px;
  border: 1px solid rgba(18, 27, 42, 0.08);
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(18, 27, 42, 0.07);
}

.phone-record strong {
  font-size: 12px;
}

.phone-record small {
  color: var(--baby-muted);
  font-size: 10px;
}

.record-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  left: 12px;
  top: 17px;
  border-radius: 50%;
}

.coral { background: var(--baby-coral); }
.blue { background: var(--baby-blue); }
.gold { background: var(--baby-gold); }
.mint { background: var(--baby-mint); }

.babynote-features {
  padding: 96px 0 116px;
  border-top: 1px solid var(--baby-line);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading h2,
.babynote-timeline-section h2,
.story-card h2,
.babynote-closing h2 {
  margin: 0;
  color: var(--baby-ink);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 560;
  line-height: 1.2;
  letter-spacing: -0.052em;
  word-break: keep-all;
}

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

.feature-card {
  min-height: 270px;
  padding: 34px;
  border: 1px solid var(--baby-line);
  border-radius: 26px;
  background: rgba(255, 253, 249, 0.76);
  box-shadow: 0 12px 32px rgba(18, 27, 42, 0.05);
}

.feature-card h3 {
  margin: 38px 0 12px;
  color: var(--baby-ink);
  font-size: 22px;
}

.feature-card p,
.timeline-copy p,
.story-card p,
.babynote-closing p {
  color: var(--baby-muted);
  line-height: 1.75;
  word-break: keep-all;
}

.feature-icon {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  background: rgba(49, 87, 255, 0.09);
}

.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
}

.icon-record::before {
  width: 17px;
  height: 17px;
  border: 2px solid var(--baby-blue);
  border-left-color: transparent;
  border-radius: 50%;
}

.icon-record::after {
  width: 5px;
  height: 5px;
  top: 13px;
  right: 14px;
  border-radius: 50%;
  background: var(--baby-blue);
}

.icon-family {
  background: rgba(255, 142, 115, 0.11);
}

.icon-family::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--baby-coral);
  box-shadow: 12px 0 var(--baby-coral), 6px 9px var(--baby-coral);
}

.icon-moment::before {
  width: 19px;
  height: 15px;
  border: 2px solid var(--baby-blue);
  border-radius: 4px;
}

.icon-moment::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--baby-coral);
}

.babynote-timeline-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: 90px;
  align-items: center;
  padding: 116px max(32px, calc((100vw - var(--baby-max)) / 2));
  background: var(--baby-navy);
}

.babynote-timeline-section h2,
.babynote-timeline-section p {
  color: #ffffff;
}

.timeline-copy p:last-child {
  max-width: 520px;
  color: #b8bec8;
}

.timeline-card {
  padding: 34px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.timeline-card-head,
.timeline-line {
  display: grid;
  align-items: center;
}

.timeline-card-head {
  grid-template-columns: 1fr auto;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--baby-line);
}

.timeline-line {
  grid-template-columns: 62px 10px minmax(0, 1fr) auto;
  gap: 16px;
  min-height: 58px;
  border-bottom: 1px solid rgba(18, 27, 42, 0.07);
  color: var(--baby-muted);
  font-size: 14px;
}

.timeline-line:last-child {
  border-bottom: 0;
}

.timeline-line i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.timeline-line strong {
  color: var(--baby-ink);
}

.babynote-story-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 116px 0;
}

.story-card {
  min-height: 520px;
  padding: 50px;
  overflow: hidden;
  border: 1px solid var(--baby-line);
  border-radius: 34px;
  background: var(--baby-surface);
}

.family-story {
  background: #e9edff;
}

.diary-story {
  background: #fff0ea;
}

.story-number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 76px;
  border: 1px solid rgba(18, 27, 42, 0.18);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 750;
}

.story-card h2 {
  font-size: clamp(34px, 3.5vw, 50px);
}

.moment-photo {
  position: relative;
  float: right;
  width: 150px;
  height: 130px;
  margin: -44px -10px 26px 24px;
  overflow: hidden;
  border: 8px solid #ffffff;
  border-radius: 24px;
  background: linear-gradient(150deg, #ffd5c8 0 48%, #bcc8ff 49% 100%);
  transform: rotate(5deg);
  box-shadow: 0 15px 30px rgba(18, 27, 42, 0.13);
}

.moment-photo::before,
.moment-photo::after,
.moment-photo span,
.moment-photo i {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.moment-photo::before {
  width: 58px;
  height: 58px;
  left: 44px;
  top: 28px;
  background: #ffb7a5;
}

.moment-photo::after {
  width: 7px;
  height: 7px;
  left: 61px;
  top: 48px;
  background: var(--baby-ink);
  box-shadow: 23px 0 var(--baby-ink);
}

.moment-photo span {
  width: 24px;
  height: 9px;
  left: 60px;
  top: 69px;
  border-bottom: 3px solid var(--baby-ink);
}

.babynote-closing {
  display: grid;
  justify-items: center;
  padding: 94px 24px 112px;
  border-top: 1px solid var(--baby-line);
  text-align: center;
}

.babynote-closing h2 {
  margin-top: 28px;
}

.babynote-closing .app-store-button {
  margin-top: 20px;
}

.babynote-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  padding: 48px max(32px, calc((100vw - var(--baby-max)) / 2));
  border-top: 1px solid var(--baby-line);
  background: #efebe3;
}

.babynote-footer p {
  margin: 14px 0 0;
  color: var(--baby-muted);
  font-size: 13px;
}

.babynote-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
}

.babynote-footer nav a {
  color: var(--baby-ink);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.babynote-footer .copyright {
  grid-column: 1 / -1;
  margin-top: 4px;
}

/* BabyNote document pages */
.babynote-doc .babynote-header {
  background: rgba(245, 241, 233, 0.94);
}

.doc-back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--baby-blue) !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.babynote-doc-main {
  width: min(100% - 64px, 1120px);
  margin: 0 auto;
  padding: 74px 0 112px;
}

.doc-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 30px;
  color: #8a8e96;
  font-size: 13px;
}

.doc-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.doc-hero {
  padding: 22px 0 64px;
}

.doc-hero h1 {
  margin: 0;
  color: var(--baby-ink);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 560;
  line-height: 1.12;
  letter-spacing: -0.058em;
}

.doc-hero .english-title {
  display: block;
  margin-top: 13px;
  color: #9a9ca2;
  font-size: 23px;
  font-weight: 520;
  letter-spacing: -0.02em;
}

.doc-hero .summary {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--baby-muted);
  font-size: 17px;
  line-height: 1.8;
}

.doc-updated {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-top: 24px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(49, 87, 255, 0.09);
  color: var(--baby-blue);
  font-size: 12px;
  font-weight: 700;
}

.doc-layout {
  display: grid;
  grid-template-columns: 228px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.doc-toc {
  position: sticky;
  top: 116px;
  padding: 22px;
  border: 1px solid var(--baby-line);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.72);
}

.doc-toc strong {
  display: block;
  margin-bottom: 14px;
  font-size: 13px;
}

.doc-toc a {
  display: block;
  padding: 7px 0;
  color: var(--baby-muted);
  font-size: 12px;
  line-height: 1.45;
  text-decoration: none;
}

.doc-toc a:hover,
.doc-toc a:focus-visible {
  color: var(--baby-blue);
}

.doc-content {
  padding: 20px 46px 52px;
  border: 1px solid var(--baby-line);
  border-radius: 28px;
  background: var(--baby-surface);
  box-shadow: 0 16px 40px rgba(18, 27, 42, 0.055);
}

.doc-content section {
  scroll-margin-top: 120px;
  padding: 22px 0 30px;
  border-bottom: 1px solid rgba(18, 27, 42, 0.08);
}

.doc-content section:last-child {
  border-bottom: 0;
}

.doc-content h2 {
  margin: 0 0 14px;
  color: var(--baby-ink);
  font-size: 24px;
  letter-spacing: -0.035em;
}

.doc-content h3 {
  margin: 24px 0 8px;
  color: var(--baby-ink);
  font-size: 17px;
}

.doc-content p,
.doc-content li {
  color: var(--baby-muted);
  font-size: 15px;
  line-height: 1.82;
}

.doc-content ul,
.doc-content ol {
  padding-left: 22px;
}

.doc-content a {
  color: var(--baby-blue);
  font-weight: 650;
}

.doc-notice {
  margin: 10px 0 20px;
  padding: 20px 22px;
  border: 1px solid rgba(49, 87, 255, 0.16);
  border-radius: 18px;
  background: rgba(49, 87, 255, 0.07);
  color: #39445f;
  font-size: 14px;
  line-height: 1.7;
}

.support-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 8px 0 22px;
}

.support-card {
  padding: 20px;
  border: 1px solid var(--baby-line);
  border-radius: 18px;
  background: #ffffff;
}

.support-card strong {
  display: block;
  margin-bottom: 7px;
}

.support-card p {
  margin: 0;
  font-size: 13px;
}

.support-email {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--baby-blue);
  color: #ffffff !important;
  font-weight: 730;
  text-decoration: none;
}

/* BabyNote internal admin */
.babynote-admin .admin-site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: none;
  min-height: 82px;
  padding: 0 max(28px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid var(--baby-line);
  background: rgba(18, 27, 42, 0.98);
}

.babynote-admin .admin-site-header .brand,
.babynote-admin .admin-site-header .nav a {
  color: #ffffff;
}

.babynote-admin .admin-site-header .brand-mark {
  background: var(--baby-blue);
  color: #ffffff;
}

.babynote-admin .admin-site-header .nav {
  margin: 0;
}

.babynote-admin .admin-shell {
  width: min(100% - 56px, 1240px);
  max-width: none;
  margin: 0 auto;
  padding: 58px 0 90px;
}

.babynote-admin .admin-hero,
.babynote-admin .admin-token-panel,
.babynote-admin .admin-toolbar,
.babynote-admin .admin-stats article,
.babynote-admin .feedback-card,
.babynote-admin .admin-empty {
  border: 1px solid var(--baby-line);
  border-radius: 22px;
  background: var(--baby-surface);
  box-shadow: 0 10px 30px rgba(18, 27, 42, 0.045);
}

.babynote-admin .admin-hero {
  padding: 38px;
}

.babynote-admin .admin-hero h1 {
  color: var(--baby-ink);
  font-size: clamp(38px, 5vw, 60px);
  letter-spacing: -0.05em;
}

.babynote-admin .admin-token-panel,
.babynote-admin .admin-toolbar,
.babynote-admin .admin-stats,
.babynote-admin .feedback-list {
  margin-top: 18px;
}

.babynote-admin .admin-token-panel,
.babynote-admin .admin-toolbar {
  padding: 26px;
}

.babynote-admin input,
.babynote-admin select {
  min-height: 46px;
  border: 1px solid var(--baby-line);
  border-radius: 12px;
  background: #ffffff;
  color: var(--baby-ink);
}

.babynote-admin .primary-button {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--baby-blue);
  color: #ffffff;
}

.babynote-admin .secondary-button {
  min-height: 44px;
  border: 1px solid var(--baby-line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--baby-ink);
}

.babynote-admin .pill {
  background: rgba(49, 87, 255, 0.1);
  color: var(--baby-blue);
}

.babynote-admin .site-footer {
  width: min(100% - 56px, 1240px);
  max-width: none;
}

@media (max-width: 900px) {
  .babynote-header {
    min-height: 76px;
    padding: 0 24px;
  }

  .babynote-nav {
    display: none;
  }

  .babynote-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 64px;
  }

  .babynote-phone-wrap {
    min-height: 600px;
  }

  .feature-grid,
  .babynote-story-section {
    grid-template-columns: 1fr;
  }

  .babynote-timeline-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .doc-layout {
    grid-template-columns: 1fr;
  }

  .doc-toc {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px;
  }

  .doc-toc strong {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .babynote-header {
    gap: 12px;
    padding: 0 16px;
  }

  .babynote-brand small {
    display: none;
  }

  .babynote-language button {
    min-height: 32px;
    padding: 0 10px;
    font-size: 11px;
  }

  .babynote-hero,
  .babynote-features,
  .babynote-story-section,
  .babynote-closing {
    width: min(100% - 32px, var(--baby-max));
  }

  .babynote-hero {
    min-height: 0;
    padding: 52px 0 72px;
  }

  .babynote-hero h1 {
    font-size: 46px;
  }

  .babynote-lede {
    font-size: 16px;
  }

  .babynote-store-row {
    align-items: stretch;
  }

  .coming-soon {
    width: max-content;
  }

  .babynote-text-link {
    width: 100%;
  }

  .babynote-phone-wrap {
    min-height: 550px;
  }

  .orbit-one {
    width: 360px;
  }

  .orbit-two {
    width: 300px;
  }

  .babynote-phone {
    width: 282px;
  }

  .babynote-features,
  .babynote-story-section {
    padding: 78px 0;
  }

  .feature-card,
  .story-card {
    padding: 28px;
  }

  .story-card {
    min-height: 460px;
  }

  .babynote-timeline-section {
    padding: 84px 16px;
  }

  .timeline-card {
    padding: 22px 18px;
  }

  .timeline-line {
    grid-template-columns: 45px 8px minmax(0, 1fr) auto;
    gap: 9px;
    font-size: 12px;
  }

  .babynote-footer {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .babynote-footer nav {
    justify-content: flex-start;
  }

  .babynote-doc-main {
    width: min(100% - 32px, 1120px);
    padding: 44px 0 76px;
  }

  .doc-hero {
    padding-bottom: 44px;
  }

  .doc-hero h1 {
    font-size: 43px;
  }

  .doc-content {
    padding: 12px 22px 34px;
    border-radius: 22px;
  }

  .support-cards {
    grid-template-columns: 1fr;
  }

  .babynote-admin .admin-site-header {
    padding: 16px 20px;
  }

  .babynote-admin .admin-site-header .nav {
    display: none;
  }

  .babynote-admin .admin-shell {
    width: min(100% - 32px, 1240px);
    padding-top: 32px;
  }
}

@media (min-width: 641px) and (max-width: 1020px) {
  .company-header {
    padding-right: 32px;
    padding-left: 32px;
  }

  .company-header-actions {
    gap: 24px;
  }

  .company-nav {
    gap: 26px;
  }

  .company-hero,
  .company-about,
  .company-product-inner,
  .company-footer {
    width: min(100% - 64px, 1280px);
  }

  .company-hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    gap: 36px;
  }

  .company-hero h1 {
    font-size: clamp(50px, 7vw, 66px);
  }

  .company-summary {
    font-size: 17px;
  }

  .company-hero-art {
    min-height: 420px;
    transform: scale(0.86);
    transform-origin: center;
  }

  .company-about-copy,
  .company-principles {
    gap: 40px;
  }

  .company-product-inner {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
    gap: 52px;
  }
}

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

  .company-primary-link,
  .company-secondary-link,
  .company-product-link {
    transition: none;
  }
}
