/* Design Tokens */
:root {
  --black: #2C2C2C;
  --white: #FFFFFF;
  --main: #7FD51A;
  --main10: #F5FDEC;
  --main5: #F9FDF3;
  --g100: #404040;
  --g200: #535353;
  --g300: #6C6C6C;
  --g400: #858585;
  --g500: #A0A0A0;
  --g600: #B8B8B8;
  --g700: #CFCFCF;
  --g800: #E5E5E5;
  --g900: #F5F5F5;
  --green-text: #40512A;
  --brand: 'Archivo Black', 'Archivo', system-ui, sans-serif;
  --display: 'Pretendard Variable', 'Pretendard', -apple-system, system-ui, sans-serif;
  --sans: 'Pretendard Variable', 'Pretendard', -apple-system, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--sans); font-size: 16px; background: var(--white); color: var(--black); line-height: 1.7; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.brand-name {
  font-family: var(--brand);
  letter-spacing: -0.4px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

.gnb {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--g800);
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 80px;
  gap: 0;
}
.gnb-logo {
  font-family: var(--brand);
  font-size: 20px;
  color: var(--black);
  letter-spacing: -0.5px;
}
.gnb-logo span { color: var(--main); }
.gnb-nav {
  display: flex;
  gap: 36px;
  margin: 0 auto;
}
.gnb-nav a {
  font-size: 15px;
  color: var(--g200);
  font-weight: 500;
  transition: color 0.2s;
}
.gnb-nav a:hover { color: var(--black); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  border-radius: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}
.btn-primary { background: var(--main); color: var(--black); }
.btn-ghost {
  background: transparent;
  color: var(--black);
  box-shadow: inset 0 0 0 1.5px var(--g700);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--black); opacity: 1; }

main { overflow: hidden; }
section {
  padding: 96px 80px;
  position: relative;
}
.dark-section {
  background: #151515;
  color: var(--white);
}

.hero {
  min-height: calc(100vh - 72px);
  background:
    linear-gradient(130deg, transparent 0 58%, rgba(44,44,44,0.025) 58% 100%),
    radial-gradient(circle at 82% 46%, rgba(64,81,42,0.08), transparent 34%),
    #fafafa;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 64px;
}
.hero-copy {
  max-width: 640px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.15px;
  color: var(--green-text);
  background: var(--main10);
  border: 1px solid var(--main);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 26px;
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(44px, 5.2vw, 72px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -2.6px;
  margin-bottom: 34px;
}
.hero-title span { color: var(--main); }
.hero-sub {
  color: var(--g100);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 34px;
}
mark {
  background: var(--main);
  color: var(--black);
  padding: 0 4px;
  font-weight: 800;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.hero-actions .btn {
  height: 52px;
  border-radius: 12px;
  padding: 0 26px;
  font-size: 16px;
}
.hero-visual {
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.device-stage {
  position: relative;
}
.desktop-mockup,
.tablet-mockup {
  position: relative;
  background: #161616;
  border: 1px solid rgba(255,255,255,0.18);
  overflow: hidden;
  box-shadow: 0 24px 54px rgba(0,0,0,0.18), inset 0 0 0 1px rgba(255,255,255,0.08);
}
.desktop-mockup {
  width: min(680px, 48vw);
  aspect-ratio: 1.55;
  border-radius: 20px;
  padding: 46px 22px 22px;
  transform: rotate(-3deg) rotateY(-8deg);
}
.desktop-mockup::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -70px;
  width: 34%;
  height: 70px;
  transform: translateX(-50%);
  border-radius: 0 0 22px 22px;
  background: linear-gradient(180deg, #2a2a2a, #111);
}
.tablet-mockup {
  width: min(240px, 22vw);
  aspect-ratio: 0.72;
  border-radius: 26px;
  padding: 18px;
  position: absolute;
  right: -14px;
  bottom: 24px;
  transform: rotate(8deg);
  background: #202020;
}
.device-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 32px;
  background: #101010;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-left: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.device-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.24);
}
.screenshot-box {
  height: 100%;
  min-height: 180px;
  border-radius: 14px;
  background: #101010;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.screenshot-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tablet-mockup .screenshot-box {
  min-height: 0;
  border-radius: 18px;
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: 72px;
  align-items: center;
}
.section-copy h2,
.section-title,
.cta-copy h2,
.how-heading h2,
.compare-heading h2 {
  font-family: var(--display);
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -1.8px;
  word-break: keep-all;
}
.section-copy span,
.section-title span,
.cta-copy span { color: var(--main); }
.section-copy p,
.cta-copy p {
  max-width: 720px;
  margin-top: 30px;
  font-size: 19px;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  word-break: keep-all;
}
.how-section p { color: var(--g200); }
.feature-list {
  display: grid;
  gap: 28px;
}
.feature-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}
.feature-icon {
  width: 72px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
}
.feature-card h3 {
  font-size: 21px;
  margin-bottom: 10px;
}
.feature-card p {
  max-width: 420px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.62);
}

.how-section {
  background: var(--white);
  display: grid;
  grid-template-columns: 0.8fr 1.6fr;
  gap: 64px;
}
.how-intro {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.8;
}
.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 44px;
}
.step strong {
  display: block;
  font-family: var(--display);
  font-size: 42px;
  font-weight: 700;
  color: var(--g800);
  line-height: 1;
  margin-bottom: 28px;
}
.step h3 {
  font-size: 21px;
  margin-bottom: 12px;
}
.step p {
  font-size: 17px;
  line-height: 1.75;
}
.mock-flow {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) 48px minmax(210px, 1fr) 48px minmax(210px, 1fr);
  align-items: center;
  gap: 34px;
  margin-top: 8px;
}
.mock-card {
  min-height: 180px;
  border: 1px solid var(--g700);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(44,44,44,0.06);
  padding: 30px 34px;
  position: relative;
}
.cc-badge {
  position: absolute;
  top: 14px;
  left: 18px;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  border-radius: 10px;
  background: var(--main);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 800;
}
.shot-card p {
  margin-top: 34px;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}
.flow-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main);
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
}
.shot-card .shot-visual {
  margin-top: 16px;
  aspect-ratio: 16 / 10;
  min-height: 0;
  border-radius: 10px;
}

.case-section {
  text-align: center;
  background: #151515;
  color: var(--white);
}
.section-title {
  max-width: 620px;
  margin: 0 auto 54px;
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.case-card {
  text-align: left;
  min-height: 220px;
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  background: #1c1c1c;
}
.case-card span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(127,213,26,0.12);
  font-size: 24px;
  margin-bottom: 42px;
}
.case-card .case-icon svg {
  width: 26px;
  height: 26px;
  stroke: #afc69a;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.case-card h3 {
  font-size: 21px;
  margin-bottom: 14px;
}
.case-card p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.68);
}
.case-screenshot {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.case-screenshot-box {
  width: min(560px, 88vw);
  aspect-ratio: 1.73 / 1;
  min-height: 0;
  border-radius: 22px;
}

.compare-section {
  background: var(--white);
}
.compare-heading {
  max-width: 1080px;
  margin: 0 auto 22px;
  text-align: center;
}
.compare-heading h2 span { color: var(--main); }
.compare-heading p {
  margin: 26px auto 0;
  max-width: 640px;
  font-size: 19px;
  color: var(--g200);
  line-height: 1.85;
  word-break: keep-all;
}
.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  max-width: 1080px;
  margin: 54px auto 0;
  align-items: stretch;
}
.compare-card {
  border-radius: 0;
  padding: 34px 38px 40px;
  border: 0;
  border-top: 1px solid var(--g600);
  background: #fafafa;
}
.compare-card.ours {
  border-top: 3px solid var(--main);
  border-left: 1px solid var(--g800);
  background: #f5faee;
  box-shadow: none;
}
.compare-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  padding: 0;
  margin-bottom: 18px;
  background: transparent;
  color: var(--g300);
}
.compare-label.brand-name {
  font-family: var(--brand);
  letter-spacing: -0.4px;
}
.compare-card.ours .compare-label {
  background: transparent;
  color: #568e18;
  font-weight: 700;
}
.compare-card h3 {
  font-size: 24px;
  margin-bottom: 26px;
}
.compare-card.ours h3 { font-weight: 800; }
.compare-card h3 span { color: var(--main); }
.compare-card ul {
  list-style: none;
  display: grid;
  gap: 18px;
}
.compare-card li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--g200);
  font-size: 17px;
  line-height: 1.75;
}
.compare-card.ours li { color: var(--g100); font-weight: 600; }
.compare-card li b {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  margin-top: 2px;
  background: transparent;
  color: var(--g300);
}
.compare-card.ours li b {
  background: var(--main);
  color: var(--black);
  border-radius: 50%;
}

.final-cta {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 60px;
  align-items: center;
  overflow: hidden;
}
.notify-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 560px;
}
.cta-notify {
  margin-top: 42px;
}
.notify-input {
  flex: 1 1 260px;
  min-width: 0;
  height: 52px;
  border: 1px solid var(--g700);
  background: rgba(255,255,255,0.92);
  border-radius: 12px;
  padding: 0 18px;
  font-size: 16px;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.notify-input::placeholder { color: var(--g400); }
.notify-input:focus {
  border-color: var(--main);
  box-shadow: 0 0 0 4px rgba(127,213,26,0.16);
}
.notify-form .btn {
  height: 52px;
  border-radius: 12px;
  padding: 0 24px;
}
.notify-success {
  display: none;
  flex-basis: 100%;
  color: var(--green-text);
  font-weight: 800;
  font-size: 15px;
}
.dark-section .notify-input {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.09);
  color: var(--white);
}
.dark-section .notify-success {
  color: var(--main);
}
.cta-preview {
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-preview .desktop-mockup {
  width: min(560px, 42vw);
  transform: rotate(3deg) rotateY(8deg);
}
.dark-device {
  background: #111;
}

footer {
  background: var(--black);
  padding: 40px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-family: var(--brand);
  font-size: 18px;
  color: var(--white);
}
.footer-logo span { color: var(--main); }
.footer-links {
  display: flex;
  gap: 32px;
}
.footer-links a {
  font-size: 14px;
  color: var(--g500);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.25px;
  color: var(--g400);
}
.footer-copy .brand-name {
  font-family: var(--sans);
  letter-spacing: inherit;
}

@media (max-width: 1180px) {
  .gnb { padding: 0 40px; }
  section { padding: 80px 40px; }
  .hero {
    grid-template-columns: 1fr 0.72fr;
    gap: 36px;
  }
  .feature-section,
  .final-cta {
    grid-template-columns: 1fr;
  }
  .case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  footer { padding: 32px 40px; }
}

@media (max-width: 860px) {
  .gnb { padding: 0 24px; }
  .gnb-nav { display: none; }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 64px 24px 72px;
  }
  .hero-visual {
    min-height: 360px;
    margin-top: 6px;
  }
  .desktop-mockup {
    width: min(640px, 88vw);
  }
  .tablet-mockup {
    width: min(200px, 28vw);
    right: 10px;
  }
  .cta-preview .desktop-mockup {
    width: min(640px, 88vw);
  }
  .how-section {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .steps { gap: 22px; }
  .mock-flow {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .flow-arrow {
    justify-self: center;
    font-size: 0;
  }
  .flow-arrow::after {
    content: '∨';
    font-size: 22px;
  }
  .compare-grid { grid-template-columns: 1fr; }
  .compare-card.ours { border-left: 0; }
  .cta-preview {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  section { padding: 64px 20px; }
  .gnb {
    height: 64px;
    padding: 0 18px;
  }
  .gnb-logo { font-size: 18px; }
  .gnb .btn {
    height: 36px;
    padding: 0 12px;
    font-size: 14px;
  }
  .hero {
    padding: 48px 20px 64px;
    gap: 36px;
  }
  .hero-title {
    font-size: 38px;
    margin-bottom: 24px;
  }
  .hero-sub {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 28px;
  }
  .hero-actions .btn {
    height: 48px;
    padding: 0 20px;
    font-size: 15px;
  }
  .feature-section { gap: 42px; }
  .section-copy h2,
  .section-title,
  .cta-copy h2,
  .how-heading h2,
  .compare-heading h2 {
    font-size: 34px;
  }
  .section-copy p,
  .cta-copy p {
    font-size: 16px;
    margin-top: 20px;
  }
  .feature-card {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
    align-items: flex-start;
  }
  .feature-icon {
    width: 56px;
    font-size: 23px;
  }
  .steps,
  .case-grid {
    grid-template-columns: 1fr;
  }
  .step strong {
    font-size: 38px;
    margin-bottom: 14px;
  }
  .mock-card { padding: 26px 24px; }
  .compare-card { padding: 30px 24px; }
  .compare-card h3 { font-size: 21px; }
  .final-cta { grid-template-columns: 1fr; }
  .notify-form {
    flex-direction: column;
  }
  .notify-input,
  .notify-form .btn {
    width: 100%;
  }
  .notify-input {
    flex: 0 0 auto;
  }
  .hero-visual { min-height: 280px; }
  .desktop-mockup {
    width: min(520px, 94vw);
    border-radius: 16px;
    padding: 38px 16px 16px;
    transform: rotate(-2deg);
  }
  .desktop-mockup::after { display: none; }
  .tablet-mockup {
    width: 118px;
    right: 2px;
    bottom: 8px;
    border-radius: 20px;
    padding: 12px;
  }
  .device-bar {
    height: 28px;
    padding-left: 12px;
  }
  .screenshot-box {
    min-height: 150px;
  }
  footer {
    padding: 28px 24px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 430px) {
  .gnb {
    gap: 12px;
    justify-content: space-between;
  }
  .gnb .btn {
    max-width: 152px;
    padding: 0 10px;
    font-size: 14px;
  }
  .hero {
    padding-top: 40px;
  }
  .hero-title {
    font-size: 33px;
    letter-spacing: -1.2px;
  }
  .hero-sub {
    font-size: 16px;
  }
  .hero-sub br {
    display: none;
  }
  .hero-actions { flex-wrap: nowrap; }
  .hero-actions .btn { flex: 1; }
  .notify-input {
    height: 48px;
    font-size: 15px;
  }
  .notify-form .btn {
    height: 56px;
    font-size: 16px;
    font-weight: 800;
  }
  .hero-visual {
    min-height: 238px;
  }
  .desktop-mockup {
    width: 92vw;
    padding: 34px 12px 12px;
  }
  .tablet-mockup {
    width: 96px;
  }
  .screenshot-box {
    min-height: 126px;
  }
  .feature-card {
    grid-template-columns: 1fr;
  }
  .feature-icon {
    width: 52px;
  }
  .section-copy h2,
  .section-title,
  .cta-copy h2,
  .how-heading h2,
  .compare-heading h2 {
    font-size: 29px;
  }
  .case-card {
    min-height: 0;
    padding: 28px 24px;
  }
  .case-card span {
    margin-bottom: 28px;
  }
  .final-cta {
    min-height: auto;
    gap: 34px;
  }
  .cta-preview {
    min-height: 230px;
  }
  .cta-preview .desktop-mockup {
    width: 92vw;
    transform: rotate(2deg);
  }
}

@media (max-width: 360px) {
  section { padding-left: 16px; padding-right: 16px; }
  .gnb { padding: 0 14px; }
  .gnb-logo { font-size: 17px; }
  .gnb .btn {
    max-width: 128px;
    font-size: 13px;
  }
  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero-title {
    font-size: 29px;
  }
  .hero-visual {
    min-height: 214px;
  }
  .tablet-mockup {
    width: 84px;
  }
}

/* Legal pages (terms.html / privacy.html) */
.legal-page {
  background: var(--white);
}
.legal-page .brand-name {
  font-family: var(--sans);
  letter-spacing: inherit;
}
.legal-hero .brand-name {
  font-family: var(--brand);
  letter-spacing: -0.4px;
}
.legal-hero {
  padding: 88px 80px 48px;
  background: #fafafa;
  border-bottom: 1px solid var(--g800);
}
.legal-hero p {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--main);
  margin-bottom: 18px;
}
.legal-hero h1 {
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.1;
  letter-spacing: 0;
  margin-bottom: 18px;
}
.legal-hero span {
  color: var(--g300);
  font-weight: 700;
}
.legal-content {
  max-width: 940px;
  margin: 0 auto;
  padding: 72px 40px 96px;
}
.legal-content h2 {
  font-size: 24px;
  line-height: 1.35;
  margin: 42px 0 16px;
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content p,
.legal-content li {
  color: var(--g100);
  font-size: 16px;
  line-height: 1.9;
}
.legal-content ul {
  margin: 12px 0 0 22px;
}
.legal-content a {
  color: var(--green-text);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  border-top: 2px solid var(--black);
}
.legal-content th,
.legal-content td {
  border-bottom: 1px solid var(--g800);
  padding: 16px;
  text-align: left;
  vertical-align: top;
  font-size: 16px;
  line-height: 1.75;
}
.legal-content th {
  width: 24%;
  background: var(--g900);
  font-weight: 800;
}

@media (max-width: 1180px) {
  .legal-hero { padding: 72px 40px 44px; }
}

@media (max-width: 640px) {
  .legal-hero {
    padding: 56px 24px 36px;
  }
  .legal-content {
    padding: 48px 24px 72px;
  }
  .legal-content h2 {
    font-size: 21px;
  }
  .legal-content th {
    width: auto;
  }
  .legal-content th,
  .legal-content td {
    padding: 12px 10px;
    font-size: 14px;
  }
}
