:root {
  color-scheme: light;
  --ink: #1e2f35;
  --muted: #607178;
  --surface: #f6f8f4;
  --surface-strong: #e7ece8;
  --paper: #fffdf7;
  --line: #d6ddd6;
  --field-green: #17473d;
  --field-green-soft: #2f6f5e;
  --safety-yellow: #f2c14e;
  --link-blue: #2868c7;
  --signal-red: #c8463e;
  --shadow: 0 18px 42px rgba(30, 47, 53, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Yu Gothic UI", "Meiryo", sans-serif;
  line-height: 1.7;
  letter-spacing: 0;
}

a {
  color: var(--link-blue);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

img {
  max-width: 100%;
}

.site-header {
  background: rgba(246, 248, 244, 0.94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
}

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

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
}

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

.hero,
.page-hero,
.content-band {
  padding: 64px 0;
}

.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  color: var(--field-green-soft);
  font-size: 14px;
  font-weight: 800;
  margin: 0 0 10px;
}

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

h1 {
  font-size: clamp(42px, 7vw, 82px);
  max-width: 780px;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
}

h3 {
  font-size: 20px;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 680px;
  margin: 22px 0 0;
}

.cta-row,
.link-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
}

.button {
  align-items: center;
  border: 1px solid var(--field-green);
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  text-decoration: none;
}

.button.primary {
  background: var(--field-green);
  color: #fffdf7;
}

.button.secondary {
  background: transparent;
  color: var(--field-green);
}

.hero-note {
  color: var(--muted);
  font-size: 13px;
  margin-top: 14px;
}

.meeting-preview {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.preview-top {
  align-items: center;
  background: var(--field-green);
  color: #fffdf7;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
}

.preview-top strong {
  font-size: 18px;
}

.pill {
  border: 1px solid rgba(255, 253, 247, 0.55);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  white-space: nowrap;
}

.preview-body {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.preview-section {
  border-left: 4px solid var(--safety-yellow);
  padding-left: 14px;
}

.preview-section:nth-child(2) {
  border-left-color: var(--link-blue);
}

.preview-section:nth-child(3) {
  border-left-color: var(--signal-red);
}

.preview-section h3 {
  font-size: 15px;
  margin-bottom: 8px;
}

.preview-section ul,
.plain-list {
  margin: 0;
  padding-left: 1.15em;
}

.preview-section li,
.plain-list li {
  margin: 5px 0;
}

.band-title {
  max-width: 760px;
  margin-bottom: 28px;
}

.band-title p {
  color: var(--muted);
  font-size: 17px;
  margin: 14px 0 0;
}

.feature-grid,
.pricing-grid,
.support-grid {
  display: grid;
  gap: 16px;
}

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

.pricing-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

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

.feature-card,
.pricing-panel,
.support-card,
.notice {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.feature-card p,
.support-card p,
.pricing-panel p,
.notice p {
  color: var(--muted);
  margin: 10px 0 0;
}

.stack-gap {
  margin-top: 24px;
}

.price {
  align-items: baseline;
  display: flex;
  gap: 8px;
  margin: 14px 0 4px;
}

.price strong {
  font-size: 42px;
  line-height: 1;
}

.page-hero {
  border-bottom: 1px solid var(--line);
}

.page-kicker {
  color: var(--field-green-soft);
  font-weight: 800;
  margin-bottom: 8px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.side-nav {
  border-left: 4px solid var(--field-green);
  color: var(--muted);
  font-size: 14px;
  padding-left: 14px;
  position: sticky;
  top: 102px;
}

.side-nav a {
  display: block;
  margin: 8px 0;
}

.doc-section {
  margin-bottom: 34px;
}

.doc-section p {
  margin: 10px 0;
}

.doc-section h2 {
  font-size: 25px;
  margin-bottom: 10px;
}

.table-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  min-width: 760px;
  width: 100%;
}

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

th {
  background: var(--surface-strong);
  width: 210px;
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

.footer {
  background: var(--ink);
  color: #fffdf7;
  padding: 34px 0;
}

.footer a {
  color: #fffdf7;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

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

[data-launch-placeholder] {
  background: rgba(242, 193, 78, 0.25);
  border-radius: 4px;
  padding: 0 4px;
}

@media (max-width: 860px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero-grid,
  .pricing-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

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

  .side-nav {
    position: static;
  }
}

@media (max-width: 520px) {
  .header-inner,
  .section-inner {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: 42px;
  }

  .hero,
  .page-hero,
  .content-band {
    padding: 42px 0;
  }

  .button {
    width: 100%;
  }

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