:root {
  --bg: #d9e2ed;
  --card: #ffffff;
  --text: #2f3a4a;
  --sub: #5b6878;
  --blue: #76b3da;
  --blue-soft: #e8f4fb;
  --pink: #f3b8c6;
  --gold: #f4dfa3;
  --line: rgba(47, 58, 74, 0.12);
  --shadow: rgba(82, 112, 133, 0.18);
}

* {
  box-sizing: border-box;
}

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

a {
  color: #3179a8;
  text-decoration: none;
}

.site-header,
.site {
  max-width: 880px;
  margin: 0 auto;
  padding: 24px 16px 0;
}

.site {
  padding-bottom: 40px;
}

.page {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 16px 40px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header nav,
.site-footer,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.site-header nav a,
.site-footer a,
.footer-links a {
  font-weight: 700;
}

.site-footer {
  max-width: 880px;
  margin: 0 auto;
  padding: 8px 16px 40px;
  color: var(--sub);
}

.hero,
.card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  box-shadow: 0 12px 30px var(--shadow);
}

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

.card {
  padding: 24px;
  margin: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.site-header .brand {
  margin-bottom: 0;
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 900;
}

.brand-title {
  font-size: 1.35rem;
  font-weight: 800;
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: #376f94;
  font-size: 0.9rem;
  font-weight: 700;
}

h1 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 7vw, 3.5rem);
  line-height: 1.15;
}

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

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

p {
  margin: 0 0 12px;
  color: var(--sub);
}

.eyebrow {
  margin-bottom: 6px;
  color: #4d87aa;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.updated {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: #376f94;
  font-size: 0.92rem;
  font-weight: 800;
}

.lead {
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 700;
}

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

.summary-item {
  min-height: 116px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.summary-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

ul {
  padding-left: 1.2em;
}

li {
  margin: 4px 0;
}

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

.button {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 16px;
  background: var(--blue);
  color: white;
  font-weight: 800;
}

.button.secondary {
  background: var(--blue-soft);
  color: var(--text);
}

.notice {
  padding: 14px 16px;
  border-radius: 18px;
  background: #fff9e8;
  border: 1px solid var(--gold);
}

.table-wrap {
  overflow-x: auto;
}

.todo {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: #fff7df;
  color: #7b6221;
  font-size: 0.88em;
  font-weight: 700;
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 16px;
}

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

th {
  width: 34%;
  background: var(--blue-soft);
}

.footer {
  margin-top: 22px;
  padding: 18px 0;
  color: var(--sub);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 8px;
}

.home-page {
  background:
    linear-gradient(180deg, rgba(217, 226, 237, 0.96) 0%, rgba(247, 250, 253, 0.9) 48%, rgba(217, 226, 237, 0.98) 100%);
  overflow-x: hidden;
}

.home-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 22px;
  backdrop-filter: blur(18px);
}

.home-logo {
  display: inline-flex;
  align-items: center;
}

.home-logo {
  gap: 12px;
  color: var(--text);
  font-size: 1.22rem;
  font-weight: 900;
}

.home-logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(82, 112, 133, 0.16);
}

.home-logo-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(82, 112, 133, 0.18);
  color: #4d8fba;
  font-size: 0.86rem;
  letter-spacing: 0;
}

.home-nav-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  font-size: 0.95rem;
  font-weight: 800;
}

.home-nav-links a {
  color: var(--text);
}

.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: 34px;
  max-width: 1120px;
  margin: 0 auto 18px;
  padding: 64px 38px 72px;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 12%, rgba(243, 184, 198, 0.34) 0 18%, transparent 34%),
    radial-gradient(circle at 16% 18%, rgba(118, 179, 218, 0.26) 0 16%, transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(237, 245, 251, 0.72));
  box-shadow: 0 24px 54px rgba(82, 112, 133, 0.14);
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: inherit;
}

.home-hero-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 590px;
  min-width: 0;
}

.home-visual {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 472px;
  place-items: center;
}

.home-device-frame {
  width: min(100%, 364px);
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.9);
  border-radius: 42px;
  background: #d9e2ed;
  box-shadow: 0 28px 58px rgba(82, 112, 133, 0.24);
}

.home-device-screen {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
}

.phone-preview {
  position: relative;
  width: min(100%, 360px);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 34px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f9fc 100%);
  box-shadow: 0 26px 52px rgba(82, 112, 133, 0.22);
}

.phone-preview::before {
  content: "";
  display: block;
  width: 58px;
  height: 5px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: rgba(47, 58, 74, 0.12);
}

.preview-top,
.preview-balance,
.preview-row,
.hero-preview-card {
  display: flex;
  align-items: center;
}

.preview-top {
  justify-content: space-between;
  margin-bottom: 14px;
  color: #263343;
  font-weight: 900;
}

.preview-top small {
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: #4d87aa;
  font-size: 0.76rem;
}

.preview-balance {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  padding: 16px;
  border-radius: 24px;
  background: #f8fbfd;
  border: 1px solid rgba(47, 58, 74, 0.08);
}

.preview-balance strong {
  display: block;
  margin-bottom: 2px;
  color: var(--text);
  font-size: 0.98rem;
}

.preview-balance p {
  margin: 0;
  font-size: 0.84rem;
}

.preview-ring {
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: conic-gradient(#d88ccf 0 56%, #82c0dc 56% 100%);
  box-shadow: inset 0 0 0 20px #ffffff;
}

.preview-row {
  justify-content: space-between;
  gap: 10px;
  min-height: 58px;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(47, 58, 74, 0.08);
}

.preview-row img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.preview-row span {
  flex: 1;
  color: #263343;
  font-weight: 850;
}

.preview-row b {
  flex: 0 0 auto;
  padding: 4px 9px;
  border-radius: 999px;
  background: #fff2c8;
  color: #7a6123;
  font-size: 0.78rem;
}

.preview-row-kind {
  background: #fff8fb;
}

.hero-preview-card {
  position: absolute;
  z-index: 2;
  gap: 10px;
  max-width: 218px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 34px rgba(82, 112, 133, 0.16);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 900;
}

.hero-preview-card img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.hero-preview-card-top {
  top: 34px;
  left: 0;
}

.hero-preview-card-bottom {
  right: 0;
  bottom: 34px;
}

.home-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 14px;
  border: 1px solid rgba(118, 179, 218, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #376f94;
  font-size: 0.92rem;
  font-weight: 900;
}

.home-hero h1 {
  margin: 0 0 12px;
  color: #243142;
  font-size: 4.4rem;
  line-height: 1;
  letter-spacing: 0;
}

.home-lead {
  max-width: 540px;
  margin-bottom: 14px;
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.55;
}

.home-lead span,
.home-description span,
.section-heading h2 span {
  display: inline;
}

.home-description {
  max-width: 570px;
  font-size: 1.02rem;
}

.home-lead,
.home-description,
.section-heading h2 {
  line-break: anywhere;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.home-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 54px 22px;
}

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

.section-heading.compact {
  margin-bottom: 16px;
}

.section-heading h2,
.business-card h2 {
  margin: 0 0 10px;
  color: #263343;
  font-size: 2rem;
  line-height: 1.35;
}

.section-heading p:last-child,
.business-card p:last-child {
  margin-bottom: 0;
}

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

.value-card,
.feature-item,
.price-card,
.business-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 16px 34px rgba(82, 112, 133, 0.13);
}

.value-card {
  min-height: 240px;
  padding: 22px;
  border-radius: 24px;
}

.value-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #263343;
  font-size: 0.86rem;
  font-weight: 900;
}

.value-badge.blue,
.feature-mark.blue {
  background: #dff0fa;
}

.value-badge.pink,
.feature-mark.pink {
  background: #f9e1eb;
}

.value-badge.gold,
.feature-mark.gold {
  background: #fff1c7;
}

.feature-mark.mint {
  background: #ddf2ec;
}

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

.value-card h3,
.feature-item h3,
.price-card h3 {
  margin: 0 0 8px;
  color: var(--text);
}

.value-card p,
.feature-item p,
.price-card p {
  margin-bottom: 0;
}

.feature-section {
  padding-top: 34px;
}

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

.feature-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 128px;
  padding: 18px;
  border-radius: 22px;
}

.feature-mark {
  width: 16px;
  height: 48px;
  border-radius: 999px;
}

.feature-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.premium-section {
  padding-top: 34px;
}

.price-card {
  position: relative;
  min-height: 178px;
  padding: 22px;
  border-radius: 24px;
}

.price-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: #376f94;
  font-size: 0.88rem;
  font-weight: 900;
}

.price-card strong {
  display: block;
  margin-bottom: 8px;
  color: #263343;
  font-size: 1.55rem;
  line-height: 1.3;
}

.price-card.recommended {
  border-color: rgba(244, 223, 163, 0.95);
  background: linear-gradient(180deg, #fffdf7 0%, #ffffff 100%);
}

.price-card.recommended span {
  background: #fff2c8;
  color: #806323;
}

.price-note {
  margin: 16px 0 0;
  font-size: 0.92rem;
}

.business-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 26px;
  align-items: start;
  padding: 28px;
  border-radius: 26px;
}

.business-table {
  display: grid;
  gap: 10px;
}

.business-table div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.business-table div:last-child {
  border-bottom: 0;
}

.business-table span {
  color: var(--sub);
  font-size: 0.92rem;
  font-weight: 800;
}

.business-table strong {
  color: var(--text);
}

.info-business {
  margin-bottom: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 34px rgba(82, 112, 133, 0.13);
}

.info-business h3 {
  margin-top: 0;
}

.info-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.info-links a {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(82, 112, 133, 0.11);
  color: var(--text);
  font-weight: 850;
  text-align: center;
}

.home-footer {
  max-width: 1120px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto;
  padding: 28px 22px 42px;
  color: var(--sub);
  font-size: 0.94rem;
}

@media (max-width: 640px) {
  .site-header,
  .site {
    padding: 16px 12px 32px;
  }

  .page {
    padding: 0 12px 32px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 12px;
  }

  .site-footer {
    padding: 8px 12px 32px;
  }

  .hero,
  .card {
    border-radius: 20px;
    padding: 20px;
  }

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

  .summary-grid {
    grid-template-columns: 1fr;
  }

  .home-nav {
    position: static;
    align-items: center;
    flex-direction: row;
    width: 100%;
    max-width: 100%;
    padding: 14px 18px;
  }

  .home-logo {
    font-size: 1.08rem;
  }

  .home-logo-icon {
    width: 44px;
    height: 44px;
  }

  .home-nav-links {
    justify-content: flex-start;
    gap: 8px 12px;
    font-size: 0.86rem;
  }

  .home-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    width: auto;
    max-width: none;
    min-height: 0;
    align-items: start;
    margin: 0 14px;
    padding: 30px 16px 22px;
    border-radius: 28px;
  }

  .home-hero h1 {
    font-size: 3rem;
  }

  .home-lead {
    max-width: calc(100vw - 32px);
    font-size: 1.16rem;
    word-break: break-all;
  }

  .home-lead span,
  .home-description span,
  .section-heading h2 span {
    display: block;
  }

  .home-description,
  .section-heading h2 {
    max-width: calc(100vw - 28px);
    word-break: break-all;
  }

  .home-visual {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    min-height: 0;
  }

  .home-device-frame {
    width: min(100%, 322px);
    border-width: 8px;
    border-radius: 36px;
  }

  .home-device-screen {
    height: 500px;
  }

  .phone-preview {
    width: min(100%, 330px);
    padding: 16px;
    border-radius: 30px;
  }

  .hero-preview-card {
    position: static;
    max-width: 190px;
    padding: 9px 11px;
    font-size: 0.82rem;
  }

  .hero-preview-card img {
    width: 34px;
    height: 34px;
  }

  .hero-preview-card-top {
    align-self: flex-start;
    margin-left: 10px;
  }

  .hero-preview-card-bottom {
    align-self: flex-end;
    margin-right: 10px;
  }

  .preview-ring {
    width: 66px;
    height: 66px;
    box-shadow: inset 0 0 0 17px #ffffff;
  }

  .home-section {
    width: 100%;
    max-width: 390px;
    padding: 34px 14px;
    overflow: hidden;
  }

  .section-heading h2,
  .business-card h2 {
    font-size: 1.55rem;
  }

  .value-grid,
  .feature-list,
  .price-grid,
  .business-card,
  .info-links {
    width: 100%;
    max-width: calc(100vw - 28px);
    grid-template-columns: 1fr;
  }

  .value-card,
  .feature-item,
  .price-card,
  .business-card,
  .info-links a {
    max-width: calc(100vw - 28px);
  }

  .feature-item {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 12px;
  }

  .feature-mark {
    width: 12px;
    height: 44px;
  }

  .feature-item h3,
  .feature-item p,
  .value-card h3,
  .value-card p,
  .price-card p,
  .business-table strong {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .feature-item img {
    width: 56px;
    height: 56px;
  }

  .business-card,
  .info-business {
    padding: 22px;
  }

  .business-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .home-footer {
    flex-direction: column;
    width: 100%;
    max-width: 390px;
    padding: 22px 14px 34px;
  }

  table,
  tbody,
  tr,
  th,
  td {
    display: block;
    width: 100%;
  }

  th {
    border-bottom: 0;
    border-radius: 14px 14px 0 0;
  }
}
