:root {
  --ink: #17202a;
  --muted: #59636e;
  --line: #d9e1e8;
  --paper: #fffaf0;
  --surface: #ffffff;
  --blue: #0e4f77;
  --green: #3d6b52;
  --coral: #c95f47;
  --gold: #f5c84b;
  --shadow: 0 22px 70px rgb(15 32 42 / 18%);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Noto Sans KR", sans-serif;
  line-height: 1.6;
  overflow-wrap: break-word;
  word-break: keep-all;
}

a {
  color: inherit;
}

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

.hero {
  min-height: 86svh;
  position: relative;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgb(12 30 39 / 88%) 0%, rgb(12 30 39 / 64%) 44%, rgb(12 30 39 / 20%) 100%),
    url("lazydaddy-storytime.png") center right / cover no-repeat;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  height: 22%;
  z-index: -1;
  background: linear-gradient(0deg, rgb(255 250 240 / 82%), transparent);
}

.topbar {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
  padding-block: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgb(0 0 0 / 18%);
}

.topbar__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid rgb(255 255 255 / 42%);
  border-radius: 8px;
  background: rgb(255 255 255 / 14%);
  color: inherit;
  backdrop-filter: blur(12px);
}

.topbar--plain .language-switcher {
  border-color: var(--line);
  background: var(--surface);
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.language-switcher a[aria-current="page"] {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 20px rgb(15 32 42 / 12%);
}

.nav-link,
.text-link {
  font-weight: 700;
  text-underline-offset: 5px;
}

.hero__content {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
  padding-block: 42px 96px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3 {
  margin-block: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.7rem, 7vw, 5.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.22rem;
}

.hero__lead {
  max-width: 680px;
  margin-block: 28px 0;
  color: rgb(255 255 255 / 88%);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.no-break {
  white-space: nowrap;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-block-start: 34px;
}

.support-widget {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: rgb(255 255 255 / 90%);
  font-weight: 800;
}

.support-widget span {
  line-height: 1.25;
}

.support-widget iframe,
.support-widget a {
  min-height: 44px;
}

.support-widget iframe {
  height: 44px !important;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgb(255 255 255 / 46%);
  border-radius: 8px;
  background: rgb(255 255 255 / 14%);
  color: #fff;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.status-badge[href] {
  text-decoration: none;
}

.section {
  padding-block: clamp(54px, 8vw, 92px);
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.65fr);
  align-items: center;
  gap: clamp(34px, 7vw, 90px);
}

.section p {
  max-width: 720px;
  margin-block: 22px 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.app-mark {
  margin: 0;
}

.app-mark img {
  width: min(320px, 72vw);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.app-mark figcaption {
  margin-block-start: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section--details,
.section--showcase,
.section--voice,
.section--business {
  background: var(--surface);
}

.section--recommend {
  background: #f6fbf8;
}

.showcase-copy {
  margin-block-end: 28px;
}

.feature-showcase {
  margin: 0;
}

.feature-showcase img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 58px rgb(15 32 42 / 12%);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-block-end: 28px;
}

.section-heading--spaced {
  margin-block-start: clamp(44px, 7vw, 76px);
}

.detail-grid,
.business-list,
.policy-meta {
  margin: 0;
}

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

.detail-grid div,
.business-list div,
.policy-meta div {
  background: var(--surface);
}

.detail-grid div {
  min-height: 124px;
  padding: 22px;
}

dt {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

dd {
  margin: 8px 0 0;
  color: var(--ink);
  font-weight: 800;
}

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

.feature-list--dense {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-list article {
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgb(255 255 255 / 58%);
}

.feature-list article:nth-child(2) {
  border-color: rgb(61 107 82 / 36%);
}

.feature-list article:nth-child(3) {
  border-color: rgb(201 95 71 / 36%);
}

.feature-list p {
  margin-block-start: 16px;
  font-size: 1rem;
}

.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: start;
}

.info-panel,
.keyword-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: clamp(22px, 4vw, 32px);
}

.info-panel p {
  margin-block: 16px 0;
  color: var(--muted);
}

.table-wrap--compact {
  margin-block-end: 0;
}

.table-wrap--compact table {
  min-width: 0;
}

.check-list,
.plain-list,
.keyword-list {
  margin-block: 18px 0;
  padding-inline-start: 20px;
}

.check-list li,
.plain-list li {
  margin-block: 8px;
  color: var(--muted);
}

.recommend-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

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

.keyword-list li {
  border: 1px solid rgb(61 107 82 / 24%);
  border-radius: 8px;
  padding: 8px 11px;
  background: #fff;
  color: var(--green);
  font-weight: 800;
}

.business-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

.business-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.business-list div {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 24px;
  padding: 20px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
  padding-block: 34px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.social-link svg {
  flex: 0 0 auto;
}

.page-header {
  background: var(--surface);
  border-block-end: 1px solid var(--line);
}

.topbar--plain {
  color: var(--ink);
}

.page-header__content {
  width: min(960px, calc(100% - 40px));
  margin-inline: auto;
  padding-block: 56px 64px;
}

.page-header__content p:not(.eyebrow) {
  max-width: 720px;
  margin-block: 18px 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.policy {
  width: min(960px, calc(100% - 40px));
  margin-inline: auto;
  padding-block: 54px 90px;
}

.policy section + section {
  margin-block-start: 48px;
  padding-block-start: 42px;
  border-block-start: 1px solid var(--line);
}

.policy h2 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.policy h3 {
  margin-block-start: 28px;
}

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

.policy code {
  padding: 2px 5px;
  border-radius: 6px;
  background: #eef3f5;
  color: var(--blue);
  font-size: 0.92em;
}

.policy-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-block: 22px;
  border: 1px solid var(--line);
  background: var(--line);
}

.policy-meta div {
  padding: 18px;
}

.table-wrap {
  overflow-x: auto;
  margin-block: 22px;
  border: 1px solid var(--line);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: var(--surface);
}

th,
td {
  padding: 16px;
  border-block-end: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: #eef3f5;
  color: var(--ink);
  font-size: 0.94rem;
}

td {
  color: var(--muted);
}

@media (max-width: 860px) {
  .hero {
    min-height: 88svh;
    background:
      linear-gradient(180deg, rgb(12 30 39 / 88%) 0%, rgb(12 30 39 / 58%) 58%, rgb(12 30 39 / 18%) 100%),
      url("lazydaddy-storytime.png") center bottom / cover no-repeat;
  }

  .topbar {
    width: min(100% - 28px, 1120px);
  }

  .hero__content,
  .section__inner,
  .page-header__content,
  .policy,
  .site-footer {
    width: min(100% - 28px, 1120px);
  }

  .split,
  .business-panel,
  .feature-list,
  .feature-list--dense,
  .info-grid,
  .recommend-grid {
    grid-template-columns: 1fr;
  }

  .detail-grid,
  .policy-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .business-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .brand span {
    max-width: 142px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-link {
    font-size: 0.92rem;
  }

  .topbar__links {
    gap: 8px;
  }

  .language-switcher a {
    min-height: 32px;
    padding-inline: 8px;
    font-size: 0.84rem;
  }

  .hero__content {
    padding-block-end: 74px;
  }

  h1 {
    font-size: clamp(2.35rem, 14vw, 3.8rem);
  }

  .detail-grid,
  .policy-meta {
    grid-template-columns: 1fr;
  }

  .detail-grid div {
    min-height: auto;
  }
}
