:root {
  --evergreen: #123b38;
  --evergreen-deep: #072827;
  --ink: #132322;
  --paper: #f4f1ea;
  --white: #fffefa;
  --line: #d9d6cd;
  --muted: #6d736e;
  --coral: #e8523c;
  --coral-dark: #bd3427;
  --amber: #e2ad4b;
  --mint: #9bc9b3;
  --green: #3e956d;
  --shadow: 0 20px 50px rgba(16, 36, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, "Noto Sans Thai", Tahoma, sans-serif;
  line-height: 1.5;
}

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 82px;
  padding: 18px clamp(20px, 5vw, 82px);
  color: var(--white);
}

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

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 11px;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
}

.site-nav a {
  color: rgba(255, 254, 250, 0.78);
}

.site-nav a:hover {
  color: var(--white);
}

.header-cta {
  border-bottom: 1px solid var(--coral);
  padding-bottom: 3px;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  display: flex;
  min-height: 760px;
  overflow: hidden;
  align-items: flex-end;
  background: var(--evergreen-deep);
  color: var(--white);
}

.hero-photo,
.hero-wash {
  position: absolute;
  inset: 0;
}

.hero-photo {
  background: url("/assets/up2auto-content-operations-hero-v1.png") center center / cover no-repeat;
  filter: saturate(0.92) contrast(1.03);
  transform: scale(1.012);
}

.hero-wash {
  background:
    linear-gradient(90deg, rgba(7, 40, 39, 0.98) 0%, rgba(7, 40, 39, 0.88) 28%, rgba(7, 40, 39, 0.36) 59%, rgba(7, 40, 39, 0.15) 100%),
    linear-gradient(0deg, rgba(7, 40, 39, 0.62) 0%, transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(740px, 100%);
  padding: 154px 28px 58px clamp(28px, 10vw, 156px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

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

.hero-slides {
  min-height: 298px;
}

.hero-slide {
  display: none;
}

.hero-slide.is-active {
  display: block;
  animation: reveal 420ms ease-out;
}

.hero h1,
.section-heading h2,
.packages-intro h2,
.member-intro h2,
.admin-heading h2,
.closing-cta h2 {
  margin: 0;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
}

.hero-slide p {
  width: min(510px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 254, 250, 0.83);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--coral);
  color: #fff;
}

.button-primary:hover {
  background: var(--coral-dark);
}

.button-quiet {
  border-color: rgba(255, 254, 250, 0.55);
  color: var(--white);
}

.button-quiet:hover {
  border-color: var(--white);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 50px;
}

.hero-meta div {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.hero-meta strong {
  color: var(--amber);
  font-size: 13px;
}

.hero-meta span {
  color: rgba(255, 254, 250, 0.72);
  font-size: 13px;
}

.hero-controls {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 5vw, 82px);
  bottom: 62px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.arrow-control {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 254, 250, 0.48);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-size: 18px;
}

.arrow-control:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.slide-dots {
  display: flex;
  gap: 8px;
}

.slide-dot {
  width: 26px;
  height: 3px;
  border: 0;
  padding: 0;
  background: rgba(255, 254, 250, 0.38);
}

.slide-dot.is-active {
  background: var(--coral);
}

.signal-band {
  background: var(--coral);
  color: #fff;
}

.signal-wrap {
  display: flex;
  min-height: 126px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: min(1340px, calc(100% - 48px));
  margin: 0 auto;
}

.signal-wrap p {
  max-width: 480px;
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
}

.signal-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.workflow-section,
.packages-section,
.member-section,
.admin-section {
  width: min(1340px, calc(100% - 48px));
  margin: 0 auto;
}

.workflow-section {
  padding: 124px 0;
}

.section-heading,
.packages-intro,
.member-intro,
.admin-heading {
  max-width: 720px;
}

.section-heading h2,
.packages-intro h2,
.member-intro h2,
.admin-heading h2 {
  font-size: clamp(36px, 4vw, 58px);
  color: var(--evergreen-deep);
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.83fr) minmax(440px, 1.17fr);
  gap: clamp(50px, 9vw, 142px);
  align-items: center;
  margin-top: 68px;
}

.workflow-copy {
  display: grid;
  gap: 0;
}

.workflow-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.workflow-step:last-child {
  border-bottom: 1px solid var(--line);
}

.step-number {
  color: var(--coral);
  font-size: 14px;
  font-weight: 800;
}

.workflow-step h3 {
  margin: 0;
  color: var(--evergreen-deep);
  font-size: 20px;
}

.workflow-step p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.workflow-board {
  position: relative;
  overflow: hidden;
  min-height: 508px;
  padding: 34px;
  background: var(--evergreen);
  color: #fff;
  box-shadow: var(--shadow);
}

.workflow-board::after {
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  border: 54px solid rgba(226, 173, 75, 0.2);
  border-radius: 50%;
  content: "";
}

.board-top,
.console-top,
.console-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.board-label,
.board-state,
.console-top span,
.app-breadcrumb {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.board-label {
  color: rgba(255, 254, 250, 0.62);
}

.board-state {
  padding: 6px 9px;
  background: rgba(226, 173, 75, 0.18);
  color: var(--amber);
}

.workflow-board h3 {
  position: relative;
  z-index: 1;
  max-width: 450px;
  margin: 55px 0 28px;
  font-size: clamp(27px, 3vw, 42px);
  letter-spacing: 0;
  line-height: 1.14;
}

.asset-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
}

.asset-thumb {
  width: 76px;
  height: 52px;
}

.asset-photo {
  background:
    linear-gradient(120deg, transparent 52%, rgba(232, 82, 60, 0.9) 52%),
    url("/assets/up2auto-content-operations-hero-v1.png") 76% center / 230px auto no-repeat;
}

.asset-copy span,
.asset-copy strong {
  display: block;
}

.asset-copy span,
.file-size {
  color: rgba(255, 254, 250, 0.58);
  font-size: 11px;
}

.asset-copy strong {
  margin-top: 2px;
  font-size: 13px;
}

.board-flow {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 56px;
  color: rgba(255, 254, 250, 0.68);
  font-size: 12px;
}

.board-flow i {
  flex: 1;
  height: 1px;
  background: rgba(255, 254, 250, 0.27);
}

.board-flow strong {
  color: var(--amber);
}

.channel-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.channel-list span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

.channel-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.coral {
  background: var(--coral);
}

.green {
  background: var(--mint);
}

.amber {
  background: var(--amber);
}

.blue {
  background: #4f7bbf;
}

.packages-section {
  padding: 106px 0 118px;
  border-top: 1px solid var(--line);
}

.packages-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  max-width: none;
}

.price-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--white);
}

.price-switch button {
  min-height: 42px;
  border: 0;
  padding: 8px 14px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.price-switch button.is-active {
  background: var(--evergreen);
  color: #fff;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 58px;
}

.plan {
  display: flex;
  min-height: 510px;
  flex-direction: column;
  border: 1px solid var(--line);
  padding: 30px;
  background: var(--white);
}

.plan-featured {
  border-color: var(--evergreen);
  background: var(--evergreen);
  color: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-18px);
}

.plan-kicker {
  margin: 0;
  color: var(--coral);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.plan-featured .plan-kicker {
  color: var(--amber);
}

.plan h3 {
  margin: 11px 0 0;
  font-size: 30px;
  letter-spacing: 0;
}

.plan-desc {
  min-height: 56px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.plan-featured .plan-desc {
  color: rgba(255, 254, 250, 0.72);
}

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

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

.price span {
  color: var(--muted);
  font-size: 12px;
}

.plan-featured .price span {
  color: rgba(255, 254, 250, 0.63);
}

.plan ul {
  display: grid;
  gap: 10px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.plan li {
  display: flex;
  gap: 9px;
  align-items: center;
}

.plan li::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.plan-featured ul {
  color: rgba(255, 254, 250, 0.75);
}

.plan-featured li::before {
  background: var(--amber);
}

.plan-button {
  min-height: 46px;
  margin-top: auto;
  border: 1px solid var(--evergreen);
  background: transparent;
  color: var(--evergreen);
  font-size: 14px;
  font-weight: 800;
}

.plan-button:hover {
  background: var(--evergreen);
  color: var(--white);
}

.plan-button:disabled,
.plan-button:disabled:hover {
  cursor: not-allowed;
  border-color: var(--line);
  background: #ece9e1;
  color: var(--muted);
  opacity: 0.9;
}

.plan-button-strong {
  border-color: var(--coral);
  background: var(--coral);
  color: #fff;
}

.plan-button-strong:hover {
  border-color: #fff;
  background: #fff;
  color: var(--evergreen);
}

.plan-note {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.member-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(600px, 1.45fr);
  gap: clamp(48px, 9vw, 138px);
  align-items: center;
  padding: 120px 0;
}

.member-intro p:not(.eyebrow) {
  max-width: 380px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  margin-top: 30px;
  border-bottom: 1px solid var(--coral);
  padding-bottom: 5px;
  color: var(--evergreen-deep);
  font-size: 14px;
  font-weight: 800;
}

.member-app {
  display: grid;
  grid-template-columns: 158px minmax(0, 1fr);
  min-height: 500px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  padding: 22px 15px;
  background: #102e2d;
  color: rgba(255, 255, 255, 0.65);
}

.app-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.app-brand span {
  width: 19px;
  height: 19px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.app-nav {
  display: grid;
  gap: 4px;
  margin-top: 46px;
  font-size: 11px;
}

.app-nav span {
  padding: 9px 8px;
}

.app-nav-active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.app-profile {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  font-size: 10px;
  line-height: 1.25;
}

.app-profile i,
.owner i {
  display: inline-block;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--amber);
}

.app-profile small {
  color: rgba(255, 255, 255, 0.46);
}

.app-main {
  min-width: 0;
  padding: 30px;
}

.app-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.app-breadcrumb {
  color: var(--muted);
}

.app-top h3 {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.app-top button,
.console-top button,
.console-footer button {
  min-height: 34px;
  border: 0;
  padding: 7px 10px;
  background: var(--evergreen);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.app-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 35px;
}

.app-stats div {
  position: relative;
  overflow: hidden;
  min-height: 94px;
  padding: 12px;
  border: 1px solid #eceae4;
}

.app-stats span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}

.app-stats strong {
  display: block;
  margin-top: 5px;
  color: var(--evergreen-deep);
  font-size: 28px;
}

.app-stats i {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 4px;
}

.coral-line {
  background: var(--coral);
}

.green-line {
  background: var(--green);
}

.amber-line {
  background: var(--amber);
}

.queue-heading,
.queue-row {
  display: grid;
  grid-template-columns: minmax(185px, 1fr) 72px 66px;
  gap: 13px;
  align-items: center;
}

.queue-heading {
  margin-top: 34px;
  padding: 0 4px 9px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}

.queue-row {
  min-height: 66px;
  border-top: 1px solid #eceae4;
  padding: 8px 4px;
}

.queue-title,
.owner {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.queue-title span {
  min-width: 0;
}

.queue-title strong,
.queue-title small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.queue-title strong {
  color: var(--ink);
  font-size: 11px;
}

.queue-title small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
}

.type-mark {
  display: inline-block;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.video {
  background: var(--coral);
}

.article {
  background: var(--amber);
}

.photo {
  background: var(--mint);
}

.owner {
  color: var(--muted);
  font-size: 10px;
}

.owner i {
  width: 16px;
  height: 16px;
  background: #ccd5c8;
}

.campaign-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
  padding: 14px;
  border: 1px solid #eceae4;
  background: #f8f7f2;
}

.campaign-form label {
  display: grid;
  gap: 6px;
  color: var(--evergreen-deep);
  font-size: 10px;
  font-weight: 800;
}

.campaign-form input,
.campaign-form select,
.campaign-form textarea {
  width: 100%;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 8px 9px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  outline-color: var(--coral);
}

.campaign-form textarea {
  min-height: 70px;
  resize: vertical;
}

.campaign-form .full-field {
  grid-column: 1 / -1;
}

.file-field input {
  padding-top: 8px;
}

.status {
  justify-self: start;
  padding: 4px 6px;
  font-size: 9px;
  font-weight: 800;
}

.status.review {
  background: #ffede8;
  color: var(--coral-dark);
}

.status.queued {
  background: #e7f1ec;
  color: #25714f;
}

.status.done {
  background: #fff1d8;
  color: #93620c;
}

.admin-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(560px, 1.22fr);
  gap: clamp(48px, 9vw, 142px);
  align-items: center;
  padding: 132px 0;
  border-top: 1px solid var(--line);
}

.admin-heading p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.admin-console {
  overflow: hidden;
  border: 1px solid #1f4946;
  background: #0d302e;
  color: #fff;
  box-shadow: var(--shadow);
}

.console-top {
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.console-top span {
  display: block;
  color: var(--amber);
}

.console-top strong {
  display: block;
  margin-top: 4px;
  font-size: 15px;
}

.console-top button {
  background: var(--coral);
}

.agent-row {
  display: grid;
  grid-template-columns: 38px minmax(150px, 1fr) minmax(115px, 0.65fr) 66px;
  gap: 14px;
  align-items: center;
  padding: 17px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.agent-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--evergreen-deep);
  font-size: 12px;
  font-weight: 800;
}

.editorial {
  background: var(--amber);
}

.social {
  background: var(--mint);
}

.analyst {
  background: #e8e3d9;
}

.agent-name strong,
.agent-name span {
  display: block;
}

.agent-name strong {
  font-size: 13px;
}

.agent-name span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 10px;
}

.model-select {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 7px 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
}

.model-select span {
  float: right;
}

.agent-state {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--mint);
  font-size: 10px;
  font-weight: 700;
}

.agent-state i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.muted-state {
  color: rgba(255, 255, 255, 0.45);
}

.safe-publish-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(560px, 1.18fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
  width: min(1340px, calc(100% - 48px));
  margin: 0 auto;
  padding: 112px 0;
  border-top: 1px solid var(--line);
}

.safe-publish-section h2 {
  margin: 0;
  color: var(--evergreen-deep);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
}

.safe-grid {
  display: grid;
  gap: 12px;
}

.safe-grid article {
  display: grid;
  gap: 7px;
  border: 1px solid var(--line);
  padding: 20px;
  background: var(--white);
}

.safe-grid strong {
  color: var(--evergreen-deep);
  font-size: 18px;
}

.safe-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.console-footer {
  padding: 14px 22px;
  background: rgba(0, 0, 0, 0.14);
}

.console-footer span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
}

.console-footer button {
  background: transparent;
  color: var(--amber);
}

.console-link {
  min-height: 34px;
  padding: 8px 10px;
  color: var(--amber);
  font-size: 11px;
  font-weight: 700;
}

.checkout-dialog {
  width: min(620px, calc(100% - 32px));
  max-height: min(860px, calc(100% - 32px));
  overflow: auto;
  border: 0;
  padding: 0;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 28px 70px rgba(7, 40, 39, 0.3);
}

.checkout-dialog::backdrop {
  background: rgba(7, 40, 39, 0.68);
}

.checkout-form {
  position: relative;
  padding: 38px;
}

.checkout-form h2 {
  margin: 0;
  color: var(--evergreen-deep);
  font-size: 32px;
  line-height: 1.15;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #ece9e1;
  color: var(--evergreen-deep);
  font-size: 23px;
  line-height: 1;
}

.checkout-description {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.checkout-summary {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.8fr;
  gap: 10px;
  margin-top: 28px;
  padding: 14px;
  background: #eeefe8;
}

.checkout-summary span,
.checkout-summary strong,
.checkout-summary select {
  display: block;
}

.checkout-summary span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.checkout-summary strong,
.checkout-summary select {
  margin-top: 4px;
  color: var(--evergreen-deep);
  font-size: 13px;
}

.checkout-summary select {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  font-weight: 700;
}

.checkout-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.checkout-fields label:last-child {
  grid-column: 1 / -1;
}

.checkout-fields label {
  display: grid;
  gap: 6px;
  color: var(--evergreen-deep);
  font-size: 12px;
  font-weight: 700;
}

.checkout-fields input {
  width: 100%;
  min-height: 43px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 8px 10px;
  background: #fff;
  color: var(--ink);
  outline-color: var(--coral);
}

.checkout-method {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 13px;
  border: 1px solid #b7d7c5;
  background: #f0f8f3;
}

.method-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.checkout-method strong,
.checkout-method small {
  display: block;
}

.checkout-method strong {
  color: var(--evergreen-deep);
  font-size: 13px;
}

.checkout-method small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.checkout-submit {
  width: 100%;
  min-height: 48px;
  margin-top: 18px;
  border: 0;
  background: var(--coral);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.checkout-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.checkout-feedback {
  min-height: 20px;
  margin: 10px 0 0;
  color: var(--coral-dark);
  font-size: 12px;
}

.checkout-qr {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  text-align: center;
}

.checkout-qr strong,
.checkout-qr span,
.checkout-qr p {
  display: block;
}

.checkout-qr strong {
  margin-top: 10px;
  color: var(--evergreen-deep);
  font-size: 22px;
}

.checkout-qr span,
.checkout-qr p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.checkout-qr a {
  color: var(--coral-dark);
  font-weight: 800;
  text-decoration: underline;
}

.checkout-qr.is-paid {
  border-color: var(--green);
  background: #f0f8f3;
}

.closing-cta {
  padding: 120px 24px;
  background: var(--coral);
  color: #fff;
  text-align: center;
}

.closing-cta .eyebrow {
  color: #ffdf9b;
}

.closing-cta h2 {
  max-width: 850px;
  margin: 0 auto;
  font-size: clamp(36px, 4.5vw, 64px);
}

.closing-cta .button {
  margin-top: 34px;
  background: var(--evergreen-deep);
}

.site-footer {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px clamp(24px, 5vw, 82px);
  background: var(--evergreen-deep);
  color: var(--white);
}

.site-footer p,
.site-footer > span {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.site-footer > span {
  color: var(--amber);
  font-size: 10px;
  font-weight: 800;
}

.toast {
  position: fixed;
  z-index: 9;
  right: 24px;
  bottom: 24px;
  max-width: min(370px, calc(100% - 48px));
  transform: translateY(16px);
  opacity: 0;
  padding: 13px 16px;
  background: var(--evergreen-deep);
  color: var(--white);
  font-size: 13px;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@keyframes reveal {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .workflow-grid,
  .member-section,
  .safe-publish-section,
  .admin-section {
    grid-template-columns: 1fr;
  }

  .workflow-grid {
    gap: 48px;
  }

  .member-section,
  .admin-section {
    gap: 46px;
  }

  .member-intro,
  .admin-heading {
    max-width: 620px;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .plan {
    min-height: auto;
  }

  .plan-featured {
    transform: none;
  }

  .plan-button {
    margin-top: 16px;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 70px;
    padding: 16px 20px;
  }

  .header-cta {
    font-size: 12px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-photo {
    background-position: 66% center;
  }

  .hero-wash {
    background:
      linear-gradient(90deg, rgba(7, 40, 39, 0.97) 0%, rgba(7, 40, 39, 0.76) 72%, rgba(7, 40, 39, 0.35) 100%),
      linear-gradient(0deg, rgba(7, 40, 39, 0.74) 0%, transparent 50%);
  }

  .hero-content {
    padding: 128px 24px 122px;
  }

  .hero-slides {
    min-height: 335px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-slide p {
    font-size: 16px;
  }

  .hero-meta {
    gap: 12px 18px;
    margin-top: 34px;
  }

  .hero-controls {
    right: 24px;
    bottom: 36px;
  }

  .signal-wrap,
  .packages-intro {
    display: block;
  }

  .signal-wrap {
    width: min(100% - 48px, 1340px);
    padding: 26px 0;
  }

  .signal-items {
    justify-content: flex-start;
    margin-top: 18px;
  }

  .workflow-section,
  .packages-section,
  .member-section,
  .safe-publish-section,
  .admin-section {
    width: min(100% - 40px, 1340px);
  }

  .workflow-section,
  .member-section,
  .safe-publish-section,
  .admin-section {
    padding: 82px 0;
  }

  .packages-section {
    padding: 82px 0 96px;
  }

  .section-heading h2,
  .packages-intro h2,
  .member-intro h2,
  .admin-heading h2 {
    font-size: 38px;
  }

  .price-switch {
    margin-top: 24px;
  }

  .workflow-board {
    min-height: 465px;
    padding: 24px;
  }

  .workflow-board h3 {
    margin-top: 42px;
    font-size: 30px;
  }

  .board-flow {
    gap: 5px;
    font-size: 10px;
  }

  .member-app {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    display: none;
  }

  .app-main {
    padding: 22px;
  }

  .campaign-form {
    grid-template-columns: 1fr;
  }

  .app-top h3 {
    font-size: 18px;
  }

  .app-top button {
    font-size: 10px;
  }

  .queue-heading,
  .queue-row {
    grid-template-columns: minmax(135px, 1fr) 48px 58px;
    gap: 6px;
  }

  .owner {
    font-size: 9px;
  }

  .agent-row {
    grid-template-columns: 36px minmax(100px, 1fr) 71px;
    gap: 9px;
    padding: 15px;
  }

  .agent-state {
    grid-column: 2 / -1;
  }

  .model-select {
    font-size: 9px;
  }

  .console-top,
  .console-footer {
    padding: 16px;
  }

  .site-footer {
    display: grid;
    min-height: 150px;
    padding: 26px 24px;
  }

  .checkout-form {
    padding: 32px 22px 24px;
  }

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

  .checkout-fields label:last-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
