:root {
  --ink: #132022;
  --muted: #516165;
  --paper: #f8fbf9;
  --white: #ffffff;
  --aqua: #0a8f9f;
  --aqua-dark: #075d68;
  --mint: #d9f3eb;
  --sun: #f2c14e;
  --leaf: #1d614d;
  --line: rgba(19, 32, 34, 0.14);
  --shadow: 0 24px 70px rgba(7, 67, 75, 0.2);
  font-family: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

img,
iframe {
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(10, 143, 159, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, #f7fbf9 0%, #eef8f5 46%, #fbfaf5 100%);
  background-size: 42px 42px, auto;
  font-family: Georgia, "Times New Roman", serif;
}

body,
button,
input,
select,
textarea {
  font: 16px/1.5 Georgia, "Times New Roman", serif;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(16px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(6, 35, 39, 0.76), rgba(6, 35, 39, 0.1));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 28px);
  min-width: 0;
}

nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  text-decoration: none;
}

.nav-cta {
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 116px clamp(18px, 5vw, 72px) 46px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 37, 42, 0.9) 0%, rgba(4, 37, 42, 0.72) 37%, rgba(4, 37, 42, 0.16) 76%),
    linear-gradient(180deg, rgba(4, 37, 42, 0.26), rgba(4, 37, 42, 0.72));
}

.hero-content {
  position: relative;
  max-width: 790px;
  color: var(--white);
  animation: rise-in 700ms ease both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--aqua-dark);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.1;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button,
.select-package,
.pay-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  padding: 13px 20px;
  cursor: pointer;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 800;
  text-decoration: none;
}

.button.primary,
.select-package,
.pay-button {
  color: #08282d;
  background: var(--sun);
  box-shadow: 0 16px 30px rgba(242, 193, 78, 0.28);
}

.hero .button.secondary,
.site-header .button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.1);
}

.button.secondary {
  color: #071f22;
  border: 1px solid rgba(19, 32, 34, 0.48);
  background: #f8fbf9;
}

.hero-stats {
  gap: 28px;
  margin: 30px 0 0;
}

.hero-stats div {
  min-width: 88px;
}

.hero-stats dt {
  font-size: 2rem;
  font-weight: 800;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.84rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-strip span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 16px;
  background: var(--white);
  color: var(--leaf);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 800;
  text-align: center;
}

.section {
  padding: clamp(56px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(260px, 1.1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.14rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading p {
  color: var(--muted);
}

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

.package-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 32px rgba(20, 65, 70, 0.08);
}

.package-card.featured {
  background: linear-gradient(180deg, #ffffff 0%, var(--mint) 100%);
  box-shadow: var(--shadow);
  transform: translateY(-10px);
}

.tag {
  width: fit-content;
  margin-bottom: 24px;
  padding: 6px 10px;
  border: 1px solid rgba(10, 143, 159, 0.28);
  border-radius: 999px;
  color: var(--aqua-dark);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.price {
  margin-bottom: 4px;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.price span,
.alt-price {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 400;
}

.alt-price {
  min-height: 48px;
  margin-bottom: 24px;
}

ul {
  margin: 0 0 28px;
  padding-left: 20px;
  color: var(--muted);
}

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

.select-package {
  width: 100%;
  margin-top: auto;
}

.package-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.package-actions .select-package {
  margin-top: 0;
}

.secondary-select {
  color: var(--aqua-dark);
  border: 1px solid rgba(10, 143, 159, 0.24);
  background: var(--white);
  box-shadow: none;
}

.package-note {
  max-width: 940px;
  margin: 24px 0 0;
  color: var(--muted);
}

.fit {
  background:
    linear-gradient(135deg, rgba(10, 143, 159, 0.16), rgba(29, 97, 77, 0.08)),
    var(--paper);
}

.fit-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.fit-panel > div:first-child p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
}

.quiz,
.reserve-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(19, 32, 34, 0.18);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font-family: "Trebuchet MS", Verdana, sans-serif;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

.quiz-result {
  grid-column: 2;
  padding: 18px 20px;
  border-left: 5px solid var(--sun);
  background: var(--white);
  color: var(--aqua-dark);
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 12px 34px rgba(20, 65, 70, 0.1);
}

.checkout {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(300px, 1fr);
  gap: clamp(26px, 6vw, 90px);
  align-items: start;
}

.checkout-copy {
  position: sticky;
  top: 98px;
}

.checkout-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.12rem;
}

.reserve-form {
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.checkout-part {
  display: grid;
  gap: 14px;
}

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

.form-part .form-step,
.form-part label:last-child {
  grid-column: 1 / -1;
}

.terms-summary {
  margin-top: 8px;
  padding: 20px;
  border-radius: 8px;
  background: #eef8f5;
}

.terms-summary h3 {
  margin-bottom: 12px;
}

.terms-summary p {
  margin-bottom: 10px;
  color: var(--muted);
}

.agreement-check {
  grid-template-columns: auto 1fr;
  align-items: start;
  margin-top: 14px;
  color: var(--ink);
}

.agreement-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.agreement-check a {
  color: var(--aqua-dark);
}

.pay-button {
  width: 100%;
  margin-top: 6px;
  font-size: 1.04rem;
}

.form-step {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
  color: var(--ink);
  font-family: "Trebuchet MS", Verdana, sans-serif;
}

.form-step span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--aqua-dark);
  font-weight: 800;
}

.submit-registration {
  width: 100%;
  font-size: 1.04rem;
}

.registration-status {
  display: block;
  padding: 15px 16px;
  border-left: 5px solid var(--leaf);
  border-radius: 6px;
  color: var(--leaf);
  background: #edf8ed;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 800;
}

.registration-status[hidden] {
  display: none;
}

.paypal-checkout {
  position: relative;
  display: grid;
  gap: 10px;
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.paypal-checkout[hidden] {
  display: none;
}

.payment-locked {
  opacity: 0.62;
}

.payment-locked #paypal-buttons {
  pointer-events: none;
  user-select: none;
}

.payment-locked .payment-gate {
  display: grid;
}

.is-disabled {
  pointer-events: none;
  filter: grayscale(0.25);
}

.paypal-note,
.paypal-redirect-note,
.paypal-error,
.payment-divider {
  margin: 0;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.88rem;
}

.payment-divider {
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-divider::before,
.payment-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

.paypal-redirect-note code {
  color: var(--aqua-dark);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 800;
}

.paypal-error {
  padding: 14px;
  border: 1px solid rgba(144, 35, 35, 0.24);
  border-radius: 6px;
  color: #7a2424;
  background: #fff1ec;
}

#paypal-buttons {
  min-height: 48px;
  overflow: hidden;
}

.payment-gate {
  display: none;
  min-height: 48px;
  place-items: center;
  padding: 12px;
  border: 1px dashed rgba(19, 32, 34, 0.22);
  border-radius: 6px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.86);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.terms {
  background: #102a2e;
  color: var(--white);
}

.terms .eyebrow {
  color: var(--sun);
}

.terms .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.terms-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.terms-layout article {
  min-height: 220px;
  padding: 24px;
  background: #123337;
}

.terms-layout h3 {
  color: var(--sun);
}

.terms-layout p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 5vw, 72px);
  background: #071f22;
  color: var(--white);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.65);
}

.site-footer a {
  color: var(--sun);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 800;
}

.status-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(10, 143, 159, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #f7fbf9 0%, #eef8f5 52%, #fbfaf5 100%);
  background-size: 42px 42px, auto;
}

.status-shell {
  width: min(760px, 100%);
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.status-shell h1 {
  color: var(--ink);
  font-size: clamp(2.6rem, 8vw, 5.6rem);
}

.status-shell p:not(.eyebrow) {
  max-width: 580px;
  color: var(--muted);
  font-size: 1.1rem;
}

.status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.status-actions .button.secondary {
  color: var(--aqua-dark);
  border-color: rgba(7, 93, 104, 0.28);
  background: rgba(10, 143, 159, 0.08);
}

.auth-form {
  margin-top: 22px;
  padding: 0;
  box-shadow: none;
}

.failed-state .eyebrow {
  color: #9f3d22;
}

.view-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(10, 143, 159, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #f7fbf9 0%, #eef8f5 52%, #fbfaf5 100%);
  background-size: 42px 42px, auto;
}

.view-shell {
  width: min(1480px, 100%);
  margin: 0 auto;
  padding: clamp(22px, 5vw, 56px);
}

.view-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.view-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.view-heading h1 {
  color: var(--ink);
  font-size: clamp(2.4rem, 7vw, 5rem);
}

.view-subtitle {
  margin: -8px 0 0;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 800;
}

.compact-heading {
  margin: 34px 0 14px;
}

.compact-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.view-back {
  color: var(--white);
  border: 1px solid #071f22;
  background: #071f22;
  box-shadow: none;
}

.view-back:hover,
.view-back:focus-visible {
  color: #071f22;
  background: var(--white);
}

.view-error,
.view-empty {
  padding: 16px 18px;
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(20, 65, 70, 0.08);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 800;
}

.view-error {
  color: #7a2424;
}

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

.registrations-table {
  width: 100%;
  min-width: 1280px;
  border-collapse: collapse;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.88rem;
}

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

.registrations-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: var(--white);
  background: var(--aqua-dark);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.registrations-table tbody tr:nth-child(even) {
  background: #f5fbf8;
}

.registrations-table a {
  color: var(--aqua-dark);
  font-weight: 800;
}

.status-pill {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--leaf);
  background: #edf8ed;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 22px;
}

.stat-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(20, 65, 70, 0.08);
}

.stat-card span,
.stat-card strong {
  display: block;
}

.stat-card span {
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.stat-card strong {
  margin-top: 8px;
  color: var(--aqua-dark);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
}

.stats-section {
  margin-top: 26px;
}

.stats-table {
  min-width: 760px;
}

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

.admin-link-card {
  display: block;
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(19, 32, 34, 0.16);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(20, 65, 70, 0.08);
  text-decoration: none;
}

.admin-link-card span,
.admin-link-card strong {
  display: block;
}

.admin-link-card span {
  color: var(--aqua-dark);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-link-card strong {
  margin-top: 10px;
  font-size: 1.45rem;
  line-height: 1.1;
}

.admin-link-card:hover,
.admin-link-card:focus-visible {
  border-color: var(--aqua-dark);
}

.admin-denied {
  box-shadow: 0 12px 32px rgba(20, 65, 70, 0.08);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
    align-items: center;
    background: linear-gradient(180deg, rgba(6, 35, 39, 0.86), rgba(6, 35, 39, 0.28));
  }

  nav {
    gap: 10px;
  }

  nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 90vh;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(4, 37, 42, 0.8), rgba(4, 37, 42, 0.56) 55%, rgba(4, 37, 42, 0.82)),
      linear-gradient(90deg, rgba(4, 37, 42, 0.68), rgba(4, 37, 42, 0.16));
  }

  .trust-strip,
  .package-grid,
  .terms-layout,
  .admin-link-grid,
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .intro,
  .fit-panel,
  .checkout {
    grid-template-columns: 1fr;
  }

  .quiz-result {
    grid-column: auto;
  }

  .checkout-copy {
    position: static;
  }

  .package-card.featured {
    transform: none;
  }
}

@media (max-width: 760px) {
  .form-part {
    grid-template-columns: 1fr;
  }

  .reserve-form {
    padding: 20px;
  }

  .payment-divider {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .payment-divider::before,
  .payment-divider::after {
    width: 100%;
    flex: none;
  }
}

@media (max-width: 620px) {
  .site-header {
    flex-wrap: wrap;
    padding: 12px 16px;
  }

  nav {
    width: 100%;
    justify-content: flex-end;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    font-size: 0.74rem;
  }

  .nav-cta {
    padding: 8px 12px;
  }

  .hero {
    min-height: 72vh;
    padding: 134px 16px 34px;
  }

  .hero-image {
    height: 72vh;
    object-position: 64% center;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3.15rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
    line-height: 1.04;
  }

  .hero-copy,
  .intro-copy,
  .checkout-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section {
    padding-inline: 16px;
  }

  .hero-stats {
    gap: 18px;
  }

  .hero-stats div {
    min-width: 70px;
  }

  .trust-strip,
  .package-grid,
  .terms-layout {
    grid-template-columns: 1fr;
  }

  .trust-strip span {
    min-height: 54px;
  }

  .package-card,
  .terms-summary,
  .terms-layout article {
    overflow-wrap: anywhere;
  }

  .submit-registration,
  .select-package,
  .button {
    width: 100%;
    padding-inline: 12px;
    text-align: center;
  }

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

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

.admin-link-grid {
    grid-template-columns: 1fr;
  }
}

.trigger-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.webhook-targets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.webhook-target-card {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: var(--white);
  color: var(--ink);
}

.webhook-target-card input {
  width: auto;
}

.webhook-target-card span {
  font-weight: 800;
}

.webhook-target-card strong,
.webhook-target-card code {
  overflow-wrap: anywhere;
}

.webhook-target-card code {
  font-size: 0.84rem;
  color: var(--muted);
}

.trigger-output {
  margin-top: 18px;
  max-height: 460px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111827;
  color: #f9fafb;
  padding: 16px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

@media (max-width: 720px) {
  .webhook-targets {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  .site-header {
    gap: 10px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    max-width: 170px;
    overflow-wrap: anywhere;
  }

  .price {
    font-size: 2.15rem;
  }

  .terms-summary,
  .terms-layout article {
    padding: 18px;
  }
}
