:root {
  --ink: #17161a;
  --muted: #716b60;
  --line: #e6ded0;
  --paper: #fbf9f4;
  --white: #ffffff;
  --mint: #10b981;
  --mint-dark: #047857;
  --coral: #b45309;
  --sun: #c6922e;
  --blue: #59412a;
  --shadow: 0 24px 70px rgba(23, 22, 26, 0.14);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

main {
  perspective: 1400px;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: rgba(251, 249, 244, 0.92);
  border-bottom: 1px solid rgba(230, 222, 208, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--blue));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.94rem;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--sun), var(--mint));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-nav a:hover,
.site-footer a:hover {
  color: var(--mint-dark);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 750;
}

.nav-cta {
  position: relative;
  overflow: hidden;
  padding: 0 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--blue) 55%, #7a5c30);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.button {
  position: relative;
  overflow: hidden;
  padding: 0 20px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--blue) 56%, #7a5c30);
  box-shadow: 0 12px 28px rgba(89, 65, 42, 0.22);
}

.button.primary::after,
.nav-cta::after {
  position: absolute;
  top: -80%;
  bottom: -80%;
  left: -35%;
  width: 24%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: rotate(18deg) translateX(-180%);
  transition: transform 620ms ease;
}

.button.primary:hover::after,
.nav-cta:hover::after {
  transform: rotate(18deg) translateX(520%);
}

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

.button.primary:hover,
.nav-cta:hover {
  box-shadow: 0 18px 40px rgba(89, 65, 42, 0.26);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.button.secondary.on-dark {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.button-icon {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.18);
}

.button.secondary .button-icon {
  background: #eff5f3;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.mobile-nav {
  display: none;
}

/* Cinematic 3D aesthetic */
body {
  color: #121212;
  background: #ffffff;
}

.site-header {
  color: #1f2328;
  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: rgba(18, 18, 18, 0.08);
}

.desktop-nav {
  color: #5c6570;
}

.brand-mark {
  color: #11110f;
  background: linear-gradient(135deg, #f6d38b, #10b981);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: clamp(28px, 5vw, 54px);
  min-height: calc(100vh - 76px);
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 72px) clamp(60px, 8vw, 96px);
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 66%, rgba(87, 76, 255, 0.18), transparent 22%),
    radial-gradient(circle at 82% 42%, rgba(23, 222, 162, 0.22), transparent 28%),
    radial-gradient(circle at 58% 72%, rgba(255, 112, 87, 0.16), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 46%, #f6f8fb 100%);
  perspective: 1200px;
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  inset: 0;
  background:
    linear-gradient(rgba(18, 18, 18, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 18, 18, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 45%, black, transparent 72%);
}

.hero::after {
  right: 0;
  bottom: -1px;
  left: 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, #ffffff);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 980px;
  text-align: center;
  animation: hero-copy-in 950ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-copy h1 {
  margin-right: auto;
  margin-left: auto;
  color: #0c0f14;
  text-shadow: none;
}

.hero-copy p {
  margin-right: auto;
  margin-left: auto;
  color: #5b6470;
}

.hero-actions,
.hero-proof {
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 16px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--mint-dark);
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7.4vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4.5vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy p {
  max-width: 610px;
  font-size: 1.16rem;
}

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

.hero-actions {
  margin-top: 16px;
}

.hero-proof {
  margin-top: 26px;
  color: #5f6872;
  font-size: 0.94rem;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
}

.hero-media {
  position: relative;
  z-index: 2;
  width: min(1040px, 100%);
  padding: clamp(10px, 2vw, 18px);
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(135deg, #7c3cff 0%, #ff4e9c 22%, #ffb94d 45%, #48e5b2 70%, #1c6cff 100%);
  box-shadow:
    0 24px 70px rgba(32, 42, 72, 0.18),
    0 54px 120px rgba(28, 108, 255, 0.16);
  backdrop-filter: none;
  animation: hero-media-in 1050ms 120ms cubic-bezier(0.16, 1, 0.3, 1) both, hero-float 8s 1.1s ease-in-out infinite;
  transform-origin: center;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero .eyebrow {
  color: #0969da;
  border-color: rgba(9, 105, 218, 0.14);
  background: rgba(9, 105, 218, 0.06);
}

.agent-command {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  width: min(720px, 100%);
  min-height: 62px;
  margin: 28px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 22px;
  color: #5b6470;
  font: inherit;
  text-align: left;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(32, 42, 72, 0.12);
  backdrop-filter: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.admin-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(16, 185, 129, 0.18), transparent 34%),
    linear-gradient(135deg, #fbf9f4 0%, #f3efe6 100%);
}

.admin-shell {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: clamp(18px, 5vw, 72px);
  perspective: none;
}

.admin-card,
.admin-panel {
  width: min(1040px, 100%);
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.admin-card {
  max-width: 480px;
  padding: clamp(26px, 5vw, 44px);
}

.admin-brand {
  margin-bottom: 26px;
}

.admin-card h1,
.admin-panel h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 0.96;
}

.admin-card p,
.admin-message {
  color: var(--muted);
}

.admin-login-form {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.admin-login-form label {
  font-weight: 800;
}

.admin-login-form input {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.portal-inline-link {
  justify-self: start;
  padding: 0;
  border: 0;
  color: var(--mint-dark);
  background: transparent;
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

.admin-panel {
  padding: clamp(20px, 4vw, 38px);
}

.admin-subsection {
  margin-top: 28px;
}

.admin-subsection-head h2 {
  margin: 8px 0 0;
  font-size: 1.6rem;
  line-height: 1.05;
}

.admin-panel-header,
.admin-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.admin-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px auto;
  gap: 12px;
  align-items: end;
  margin-top: 20px;
}

.admin-toolbar label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.admin-toolbar input,
.admin-toolbar select,
.status-select {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.admin-table-wrap {
  overflow-x: auto;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.portal-user-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.portal-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--line);
}

.admin-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 0.94rem;
}

.admin-table th {
  color: var(--muted);
  background: rgba(251, 249, 244, 0.78);
}

.admin-table tr:last-child td {
  border-bottom: 0;
}

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

.admin-row-actions {
  white-space: nowrap;
}

.admin-mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 8px;
  color: var(--white) !important;
  background: var(--mint-dark);
}

.portal-auth-card {
  max-width: 520px;
}

.portal-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 24px 0 4px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(251, 249, 244, 0.78);
}

.portal-tabs button {
  min-height: 40px;
  border: 0;
  border-radius: 8px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.portal-tabs button.is-active {
  color: var(--white);
  background: var(--ink);
}

.portal-panel {
  max-width: 980px;
}

.portal-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.portal-metrics article,
.portal-request-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.portal-metrics span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.portal-metrics strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1.1;
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.portal-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.portal-grid h2 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  line-height: 1.15;
}

.portal-requests-section {
  margin-top: 28px;
}

.portal-support-section {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.06), transparent 42%),
    linear-gradient(315deg, rgba(198, 146, 46, 0.07), transparent 38%),
    var(--white);
  box-shadow: 0 18px 46px rgba(32, 42, 72, 0.08);
}

.portal-support-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.portal-support-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.portal-support-form input,
.portal-support-form select,
.portal-support-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffdf9;
  color: var(--ink);
  font: inherit;
}

.portal-support-form textarea {
  min-height: 140px;
  padding-top: 12px;
  resize: vertical;
}

.portal-support-message {
  grid-column: 1 / -1;
}

.portal-support-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.portal-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.portal-section-head h2 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.portal-section-head p {
  margin: 0;
}

.portal-filter {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.portal-filter select {
  min-width: 150px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font: inherit;
}

.portal-request-list {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.portal-request-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.portal-request-top strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
}

.portal-request-top p {
  margin: 0;
  color: var(--ink);
}

.portal-request-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.portal-request-meta span,
.portal-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 850;
}

.portal-request-meta span {
  border: 1px solid var(--line);
  color: var(--muted);
  background: #faf7f1;
}

.portal-status {
  text-transform: capitalize;
}

.portal-status-new {
  color: #9a6700;
  background: #fff5d6;
}

.portal-status-contacted {
  color: #0550ae;
  background: #ddeeff;
}

.portal-status-closed {
  color: #1f6f43;
  background: #dff8ea;
}

.portal-request-empty h3 {
  margin: 0 0 10px;
}

.portal-conversation {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.portal-conversation h4 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1rem;
}

.portal-conversation-list {
  display: grid;
  gap: 10px;
}

.portal-conversation-item {
  max-width: 92%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #faf7f1;
}

.portal-conversation-item.is-user {
  justify-self: end;
  background: #dcfff6;
}

.portal-conversation-item.is-team {
  justify-self: start;
  background: #ffffff;
}

.portal-conversation-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 6px;
}

.portal-conversation-meta strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.portal-conversation-meta span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.portal-conversation-item p {
  margin: 0;
  color: var(--ink);
  line-height: 1.55;
  white-space: pre-wrap;
}

.portal-reply-form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.portal-reply-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.portal-reply-form textarea {
  width: 100%;
  min-height: 94px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffdf9;
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

.portal-reply-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.portal-files {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.portal-files-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.portal-files-head h4 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
}

.portal-files-head span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.portal-file-list {
  display: grid;
  gap: 10px;
}

.portal-file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fffdf9;
}

.portal-file-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.94rem;
}

.portal-file-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.portal-file-form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.portal-file-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.portal-file-form input[type="file"] {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffdf9;
  color: var(--ink);
  font: inherit;
}

.portal-timeline {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.portal-timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
}

.portal-timeline-step:not(:last-child)::after {
  position: absolute;
  top: 18px;
  left: 8px;
  bottom: -12px;
  width: 2px;
  content: "";
  background: #e8e1d4;
}

.portal-timeline-dot {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 2px solid #d7d0c3;
  border-radius: 50%;
  background: #ffffff;
}

.portal-timeline-step strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.96rem;
}

.portal-timeline-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.portal-timeline-step.is-done .portal-timeline-dot {
  border-color: var(--mint);
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.portal-timeline-step.is-done:not(:last-child)::after {
  background: rgba(16, 185, 129, 0.34);
}

@media (max-width: 720px) {

  .admin-panel-header,
  .admin-actions,
  .admin-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-toolbar {
    display: flex;
  }

  .admin-toolbar label,
  .admin-toolbar .button {
    width: 100%;
  }

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

  .portal-metrics {
    grid-template-columns: 1fr;
  }

  .portal-section-head,
  .portal-request-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .portal-filter,
  .portal-filter select {
    width: 100%;
  }

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

  .portal-conversation-item {
    max-width: 100%;
  }

  .portal-reply-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .portal-file-item,
  .portal-files-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

.agent-command:hover,
.agent-command:focus-visible {
  border-color: rgba(17, 197, 167, 0.45);
  box-shadow: 0 22px 54px rgba(32, 42, 72, 0.16);
  transform: translateY(-2px);
  outline: none;
}

.command-icon,
.command-spark {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  border-radius: 14px;
  font-size: 0.78rem;
  font-weight: 900;
}

.command-icon {
  color: #ffffff;
  background: linear-gradient(135deg, #0969da, #11c5a7);
}

.command-spark {
  padding: 0 14px;
  color: #0969da;
  border: 1px solid rgba(9, 105, 218, 0.16);
  background: rgba(9, 105, 218, 0.07);
}

.hero-media::before,
.hero-media::after {
  position: absolute;
  content: "";
  pointer-events: none;
  border-radius: 28px;
}

.hero-media::before {
  inset: 10% 8% -8% 8%;
  z-index: -3;
  background:
    radial-gradient(ellipse at center, rgba(70, 89, 255, 0.26), transparent 54%),
    linear-gradient(90deg, transparent, rgba(255, 78, 156, 0.16), transparent);
  filter: blur(28px);
  transform: translate3d(0, 34px, -62px);
  animation: dashboard-shadow 7s ease-in-out infinite;
}

.hero-media::after {
  inset: 12px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.22) 42%, transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%);
  opacity: 0.55;
  mix-blend-mode: screen;
  transform: translateZ(38px);
  animation: glass-sweep 6.5s ease-in-out infinite;
}

.hero-media img {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 52px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 12px;
  opacity: 1;
  background: #ffffff;
  box-shadow: 0 18px 62px rgba(20, 30, 52, 0.18);
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateZ(24px);
  transition: transform 260ms ease, filter 260ms ease;
  transform-style: preserve-3d;
}

.dashboard-topbar {
  position: absolute;
  top: clamp(16px, 2.8vw, 24px);
  right: clamp(16px, 2.8vw, 24px);
  left: clamp(16px, 2.8vw, 24px);
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 10px) 1fr auto;
  gap: 9px;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 12px;
  color: #3a4350;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(32, 42, 72, 0.1);
  backdrop-filter: blur(18px);
  transform: translateZ(58px);
}

.dashboard-topbar strong {
  margin-left: 8px;
  font-size: 0.8rem;
  font-weight: 800;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
}

.window-dot:nth-child(1) {
  background: #ff7a5f;
}

.window-dot:nth-child(2) {
  background: #f1c85f;
}

.window-dot:nth-child(3) {
  background: #32d89a;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(9, 105, 218, 0.14);
  border-radius: 999px;
  color: #0969da;
  background: rgba(9, 105, 218, 0.07);
  font-size: 0.72rem;
  font-weight: 850;
}

.status-pill::before {
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 14px rgba(16, 185, 129, 0.9);
}

.hero-media:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateZ(40px) scale(1.014);
}

.scene-orb {
  display: none;
}

.orb-one {
  top: -36px;
  right: 7%;
  animation: orb-drift 9s ease-in-out infinite;
}

.orb-two {
  bottom: -14px;
  left: 4%;
  width: clamp(54px, 7vw, 94px);
  height: clamp(54px, 7vw, 94px);
  opacity: 0.36;
  animation: orb-drift 8s 1s ease-in-out infinite reverse;
}

.orb-three {
  top: 24%;
  left: -18px;
  width: clamp(34px, 5vw, 58px);
  height: clamp(34px, 5vw, 58px);
  opacity: 0.28;
  animation: orb-drift 7s 0.4s ease-in-out infinite;
}

.hero-glow-ring {
  position: absolute;
  inset: 17% 18%;
  z-index: 0;
  border: 1px solid rgba(9, 105, 218, 0.16);
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(9, 105, 218, 0.08), transparent 68%);
  filter: blur(0.2px);
  pointer-events: none;
  transform: translateZ(4px) rotate(-4deg);
  animation: ring-breathe 6.5s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 3px;
  min-width: 168px;
  padding: 14px 16px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 14px;
  color: #121212;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 54px rgba(32, 42, 72, 0.16);
  backdrop-filter: blur(18px) saturate(140%);
  pointer-events: none;
  transform-style: preserve-3d;
}

.floating-card strong {
  font-size: 0.9rem;
  line-height: 1.1;
}

.floating-card span {
  color: #69717c;
  font-size: 0.76rem;
  font-weight: 650;
}

.floating-card::before {
  width: 8px;
  height: 8px;
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 18px rgba(16, 185, 129, 0.8);
}

.card-leads {
  top: 22%;
  left: -28px;
  animation: card-float-a 6.8s ease-in-out infinite;
}

.card-whatsapp {
  right: -30px;
  top: 42%;
  animation: card-float-b 7.5s 0.7s ease-in-out infinite;
}

.card-crm {
  right: 16%;
  bottom: 2%;
  animation: card-float-a 7.2s 1.2s ease-in-out infinite reverse;
}

@keyframes orb-drift {

  0%,
  100% {
    transform: translate3d(0, 0, 36px);
  }

  50% {
    transform: translate3d(10px, -16px, 48px);
  }
}

@keyframes ring-breathe {

  0%,
  100% {
    opacity: 0.45;
    transform: translateZ(4px) rotate(-4deg) scale(0.96);
  }

  50% {
    opacity: 0.8;
    transform: translateZ(18px) rotate(3deg) scale(1.04);
  }
}

@keyframes glass-sweep {

  0%,
  100% {
    background-position: -180px 0, 0 0;
    opacity: 0.34;
  }

  50% {
    background-position: 260px 0, 0 0;
    opacity: 0.62;
  }
}

@keyframes dashboard-shadow {

  0%,
  100% {
    opacity: 0.58;
    transform: translate3d(0, 34px, -62px) scale(0.96);
  }

  50% {
    opacity: 0.86;
    transform: translate3d(0, 42px, -62px) scale(1.04);
  }
}

@keyframes card-float-a {

  0%,
  100% {
    transform: translate3d(0, 0, 78px) rotate(-2deg);
  }

  50% {
    transform: translate3d(8px, -14px, 98px) rotate(2deg);
  }
}

@keyframes card-float-b {

  0%,
  100% {
    transform: translate3d(0, 0, 86px) rotate(2deg);
  }

  50% {
    transform: translate3d(-10px, 12px, 108px) rotate(-2deg);
  }
}

.stats-section {
  padding-top: 0 !important;
  background: #ffffff;
}

.results-section {
  background: #ffffff;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: 18px;
}

.results-grid article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(9, 105, 218, 0.05), transparent 42%),
    linear-gradient(135deg, #ffffff, #f7fafc);
  box-shadow: 0 18px 46px rgba(32, 42, 72, 0.08);
}

.results-grid strong {
  display: block;
  margin-bottom: 14px;
  color: #111827;
  font-size: 1.18rem;
  line-height: 1.2;
}

.results-grid p {
  margin: 0;
  color: #667085;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1050px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 58px rgba(32, 42, 72, 0.08);
  transform-style: preserve-3d;
}

.stats-grid div {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 24px;
  border-right: 1px solid rgba(18, 18, 18, 0.08);
  transition: transform 180ms ease, background-color 180ms ease;
}

.stats-grid div:hover {
  transform: translateY(-3px);
  background: #f6f8fb;
}

.stats-grid div:last-child {
  border-right: 0;
}

.stats-grid strong {
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
}

.stats-grid span {
  color: var(--muted);
  font-weight: 700;
}

.section-heading {
  width: min(860px, 100%);
  margin: 0 auto 40px;
  text-align: center;
}

section:not(.hero) {
  padding: clamp(68px, 9vw, 116px) clamp(18px, 5vw, 72px);
}

.pain-section,
.solutions,
.testimonials,
.features,
.pricing,
.faq {
  background: #ffffff;
  color: #121212;
}

.pain-grid,
.steps,
.feature-grid,
.price-grid,
.trust-grid {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: 18px;
}

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

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

.price-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.solution-grid,
.testimonial-grid {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: 18px;
}

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

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

.pain-grid article,
.steps article,
.solution-grid article,
.feature-grid article,
.testimonial-grid article,
.trust-grid article,
.price-grid article,
.faq-list details {
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #fbfcff);
  box-shadow: 0 16px 44px rgba(32, 42, 72, 0.08);
}

.pain-grid article,
.steps article,
.solution-grid article,
.feature-grid article,
.testimonial-grid article,
.trust-grid article {
  padding: 26px;
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  will-change: transform;
}

.pain-grid article:hover,
.steps article:hover,
.solution-grid article:hover,
.feature-grid article:hover,
.testimonial-grid article:hover,
.trust-grid article:hover,
.price-grid article:hover,
.faq-list details:hover {
  transform: translateY(-4px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  border-color: rgba(9, 105, 218, 0.18);
  box-shadow: 0 24px 62px rgba(32, 42, 72, 0.14);
}

.pain-grid h3,
.solution-grid h3,
.feature-grid h3,
.testimonial-grid strong,
.price-grid h3,
.trust-grid h3,
.faq-list summary {
  color: #111827;
}

.pain-grid p,
.solution-grid p,
.feature-grid p,
.testimonial-grid p,
.price-grid li,
.trust-grid p,
.faq-list p,
.section-heading p {
  color: #667085;
}

.solution-grid article {
  display: flex;
  min-height: 270px;
  flex-direction: column;
}

.solution-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--mint-dark);
  background: #f7ead0;
  font-weight: 900;
}

.solution-grid a {
  margin-top: auto;
  color: #0969da;
  font-weight: 850;
}

.testimonial-grid article {
  background: #ffffff;
}

.testimonial-grid p {
  color: #475467;
  font-size: 1.02rem;
}

.testimonial-grid strong {
  display: block;
  margin-top: 18px;
}

.workflow,
.comparison,
.trust {
  background: #f6f8fb;
  color: #121212;
}

.trust-cta {
  width: min(1180px, 100%);
  margin: 22px auto 0;
  padding: 22px 24px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.08), transparent 40%),
    linear-gradient(315deg, rgba(198, 146, 46, 0.08), transparent 42%),
    #ffffff;
  box-shadow: 0 18px 46px rgba(32, 42, 72, 0.08);
}

.trust-cta p {
  margin: 0 0 14px;
  color: var(--ink);
  font-weight: 800;
}

.workflow {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(9, 105, 218, 0.08), transparent 28%),
    radial-gradient(circle at 78% 82%, rgba(23, 222, 162, 0.12), transparent 30%),
    #f6f8fb;
}

.workflow::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: linear-gradient(rgba(18, 18, 18, 0.04) 1px, transparent 1px);
  background-size: 100% 34px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 74%, transparent);
}

.workflow .section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}

.workflow .section-heading h2 {
  text-wrap: balance;
}

.workflow .section-heading p {
  font-size: 1.03rem;
}

.steps {
  position: relative;
  z-index: 1;
  gap: 24px;
}

.steps::before {
  position: absolute;
  top: 46px;
  right: 12%;
  left: 12%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(198, 146, 46, 0.52), rgba(16, 185, 129, 0.34), transparent);
}

.steps article {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 22px;
  border-color: rgba(18, 18, 18, 0.08);
  background: linear-gradient(180deg, #ffffff, #fbfcff);
  box-shadow: 0 22px 54px rgba(32, 42, 72, 0.09);
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateZ(0);
}

.steps article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--sun), var(--mint));
}

.steps article::after {
  position: absolute;
  right: -42px;
  bottom: -50px;
  width: 150px;
  height: 150px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 146, 46, 0.16), transparent 68%);
  transition: transform 260ms ease;
}

.steps article:hover {
  transform: translateY(-8px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateZ(28px);
  border-color: rgba(9, 105, 218, 0.18);
  box-shadow: 0 30px 72px rgba(32, 42, 72, 0.14);
}

.steps article:hover::after {
  transform: scale(1.18);
}

.steps article h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
  font-size: 1.18rem;
  transform: translateZ(22px);
}

.steps article p {
  position: relative;
  z-index: 2;
  color: #667085;
  transform: translateZ(16px);
}

.audit-section {
  background: #ffffff;
  color: #121212;
}

.audit-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(9, 105, 218, 0.08), transparent 45%),
    linear-gradient(315deg, rgba(23, 222, 162, 0.12), transparent 42%),
    #f8fafc;
  box-shadow: 0 24px 70px rgba(32, 42, 72, 0.1);
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
}

.audit-copy {
  max-width: 680px;
}

.audit-points {
  display: grid;
  gap: 14px;
}

.audit-points article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  min-height: 76px;
  padding: 16px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 14px;
  background: #ffffff;
}

.audit-points strong {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--sun));
}

.audit-points span {
  font-weight: 800;
}

.step-number {
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--mint-dark), var(--mint));
  box-shadow: 0 14px 28px rgba(4, 120, 87, 0.2);
  font-weight: 900;
  transition: transform 220ms ease;
  transform: translateZ(34px);
}

.steps article:hover .step-number {
  transform: translateZ(42px) rotate(-5deg) scale(1.08);
}

.demo-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.08fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background:
    radial-gradient(circle at 16% 16%, rgba(9, 105, 218, 0.18), transparent 28%),
    radial-gradient(circle at 86% 10%, rgba(23, 222, 162, 0.12), transparent 26%),
    linear-gradient(180deg, #111218 0%, #090a0f 100%);
  color: var(--white);
}

.demo-band p,
.demo-band .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.demo-band .eyebrow {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.demo-copy {
  max-width: 610px;
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(9, 105, 218, 0.55), rgba(23, 222, 162, 0.5), rgba(255, 112, 87, 0.42)) border-box;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.hubspot-form-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: #111827;
}

.hubspot-form-card::before {
  position: absolute;
  top: -90px;
  right: -90px;
  width: 220px;
  height: 220px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(9, 105, 218, 0.16), transparent 66%);
  pointer-events: none;
}

.form-card-header {
  position: relative;
  z-index: 1;
  padding: 0 2px 14px;
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
}

.form-card-header span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(9, 105, 218, 0.14);
  border-radius: 999px;
  color: #0969da;
  background: rgba(9, 105, 218, 0.07);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.form-card-header h3 {
  margin: 12px 0 8px;
  color: #111827;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.form-card-header p {
  max-width: 560px;
  margin: 0;
  color: #667085;
  line-height: 1.55;
}

.hubspot-form-card .hs-form-frame {
  position: relative;
  z-index: 1;
  min-height: 430px;
}

.hubspot-form-card .hs-form,
.hubspot-form-card form {
  font-family: inherit !important;
}

.hubspot-form-card .hs-form-field {
  margin-bottom: 16px !important;
}

.hubspot-form-card label {
  margin-bottom: 7px !important;
  color: #253041 !important;
  font-size: 0.92rem !important;
  font-weight: 800 !important;
}

.hubspot-form-card input,
.hubspot-form-card select,
.hubspot-form-card textarea {
  width: 100% !important;
  min-height: 46px !important;
  border: 1px solid rgba(18, 18, 18, 0.13) !important;
  border-radius: 12px !important;
  padding: 0 14px !important;
  color: #111827 !important;
  background: #f8fafc !important;
  box-shadow: none !important;
  font: inherit !important;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease !important;
}

.hubspot-form-card textarea {
  min-height: 96px !important;
  padding-top: 12px !important;
  resize: vertical;
}

.hubspot-form-card input:focus,
.hubspot-form-card select:focus,
.hubspot-form-card textarea:focus {
  border-color: rgba(9, 105, 218, 0.58) !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 4px rgba(9, 105, 218, 0.1) !important;
  outline: none !important;
}

.hubspot-form-card .hs-button,
.hubspot-form-card input[type="submit"] {
  width: auto !important;
  min-width: 150px !important;
  min-height: 50px !important;
  border: 0 !important;
  border-radius: 14px !important;
  padding: 0 24px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #0969da, #11c5a7) !important;
  box-shadow: 0 16px 38px rgba(9, 105, 218, 0.26) !important;
  font-weight: 900 !important;
  cursor: pointer !important;
}

.hubspot-form-card .hs-button:hover,
.hubspot-form-card input[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 46px rgba(9, 105, 218, 0.32) !important;
}

.hubspot-form-card .hs-richtext,
.hubspot-form-card .hs-error-msgs,
.hubspot-form-card .submitted-message {
  color: #667085 !important;
}

.hubspot-form-card noscript {
  color: #0969da;
  line-height: 1.5;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  font: inherit;
  outline: none;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.16);
}

.form-status {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-status a {
  color: #9af7ca;
  font-weight: 850;
  text-decoration: underline;
}

.chat-demo {
  display: grid;
  place-items: center;
}

.phone-shell {
  width: min(430px, 100%);
  min-height: 560px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: #fffdf7;
  box-shadow: var(--shadow);
}

.phone-top {
  width: 82px;
  height: 8px;
  margin: 0 auto 34px;
  border-radius: 999px;
  background: #cbd8d5;
}

.message,
.preview-chip,
.deploy-row {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 8px;
  color: var(--ink);
  line-height: 1.5;
}

.message.user {
  margin-left: 44px;
  background: #e8fff5;
}

.message.agent {
  margin-right: 44px;
  background: #eef2f1;
}

.preview-chip {
  border: 1px solid #ead9b7;
  background: var(--white);
  color: var(--mint-dark);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.deploy-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
}

.pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(37, 194, 160, 0.65);
  animation: pulse 1.4s infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  transition: opacity 760ms cubic-bezier(0.16, 1, 0.3, 1), transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-media-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.965) rotateX(4deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0);
  }
}

@keyframes hero-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px) rotate(-0.6deg);
  }
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 14px rgba(37, 194, 160, 0);
  }
}

.table-wrap {
  width: min(1050px, 100%);
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

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

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

th {
  background: #f5faf8;
  font-size: 0.86rem;
  text-transform: uppercase;
}

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

.price-grid article {
  display: flex;
  flex-direction: column;
  padding: 28px;
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  will-change: transform;
}

.featured-plan {
  color: var(--white);
  background: var(--ink) !important;
  border-color: var(--ink) !important;
  box-shadow: var(--shadow);
}

.featured-plan p,
.featured-plan li {
  color: rgba(255, 255, 255, 0.75);
}

.plan-label {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 8px;
  background: #f7ead0;
  color: var(--mint-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.featured-plan .plan-label {
  background: rgba(198, 146, 46, 0.2);
  color: #f9d78b;
}

.price {
  color: #f8f3e7;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.price span {
  display: block;
  margin-top: 8px;
  color: rgba(244, 240, 232, 0.68);
  font-size: 0.95rem;
  font-weight: 700;
}

.price-grid ul {
  display: grid;
  gap: 12px;
  margin: 10px 0 28px;
  padding: 0;
  list-style: none;
}

.price-grid li::before {
  content: "+";
  margin-right: 9px;
  color: var(--mint-dark);
  font-weight: 900;
}

.featured-plan li::before {
  color: #77f2d7;
}

.price-grid .button {
  margin-top: auto;
}

.pricing-note {
  width: min(880px, 100%);
  margin: 24px auto 0;
  text-align: center;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 14px;
  width: min(850px, 100%);
  margin: 0 auto;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 850;
}

.faq-list p {
  margin: 12px 0 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) repeat(4, minmax(130px, 0.7fr));
  gap: clamp(24px, 5vw, 70px);
  margin: 18px;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 18%, rgba(16, 185, 129, 0.18), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(198, 146, 46, 0.12), transparent 28%),
    linear-gradient(135deg, #11110f 0%, #151711 100%);
  color: rgba(244, 240, 232, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.footer-brand-block {
  display: grid;
  align-content: start;
  gap: 16px;
}

.footer-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #11110f;
  border-radius: 10px;
  background: linear-gradient(135deg, #f6d38b, #10b981);
  font-size: 1.45rem;
  font-weight: 950;
}

.footer-brand-block strong {
  color: #f8f3e7;
  font-size: 1.18rem;
  line-height: 1.18;
  font-weight: 500;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer-column a {
  color: rgba(244, 240, 232, 0.72);
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 450;
  transition: opacity 180ms ease, transform 180ms ease;
}

.footer-column a:hover {
  color: #9af7ca;
  opacity: 1;
  transform: translateX(3px);
}

.footer-credit {
  grid-column: 1 / 4;
  align-self: end;
  margin: clamp(30px, 5vw, 58px) 0 0;
  color: rgba(244, 240, 232, 0.62);
  font-size: 0.98rem;
  line-height: 1.5;
}

.chatbot {
  position: fixed;
  top: auto !important;
  right: 8px !important;
  bottom: 8px !important;
  left: auto !important;
  z-index: 2147483647;
  transform: none !important;
}

.chatbot-toggle {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 16px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
  cursor: pointer;
  animation: chat-nudge 3.8s ease-in-out infinite;
}

.chatbot-toggle span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--mint);
  color: var(--ink);
  font-weight: 950;
}

@keyframes chat-nudge {

  0%,
  80%,
  100% {
    transform: translateY(0);
  }

  88% {
    transform: translateY(-5px);
  }

  94% {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-media,
  .hero-media img,
  .floating-card,
  .scene-orb,
  .hero-glow-ring {
    transform: none !important;
  }
}

.chatbot-panel {
  position: absolute;
  right: 0;
  bottom: 78px;
  display: none;
  width: min(380px, calc(100vw - 28px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.chatbot-panel.is-open {
  display: block;
}

.chatbot-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 16px;
  color: var(--white);
  background: var(--ink);
}

.chatbot-header strong,
.chatbot-header span {
  display: block;
}

.chatbot-header span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.chatbot-close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.chatbot-messages {
  display: grid;
  gap: 10px;
  max-height: 320px;
  min-height: 260px;
  overflow-y: auto;
  padding: 16px;
  background: #f8fbfa;
}

.bot-message,
.user-message {
  max-width: 86%;
  padding: 12px 14px;
  border-radius: 8px;
  line-height: 1.45;
  font-size: 0.95rem;
}

.bot-message {
  justify-self: start;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
}

.user-message {
  justify-self: end;
  color: var(--ink);
  background: #dcfff6;
}

.quick-replies {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  overflow-x: auto;
  border-top: 1px solid var(--line);
}

.quick-replies button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.chatbot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 14px 16px 16px;
  border-top: 1px solid var(--line);
}

.chatbot-form input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  font: inherit;
}

.chatbot-form button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  color: var(--white);
  background: var(--ink);
  font-weight: 850;
  cursor: pointer;
}

@media (max-width: 920px) {

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    inset: 76px 14px auto;
    z-index: 19;
    display: none;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .mobile-nav a {
    padding: 13px 12px;
    border-radius: 8px;
    background: #fff7e8;
  }

  .hero,
  .demo-band,
  .audit-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .pain-grid,
  .steps,
  .feature-grid,
  .trust-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

  .steps::before {
    display: none;
  }

  .steps article {
    min-height: auto;
  }

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

  .stats-grid div:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 560px) {
  .hero-actions .button {
    width: 100%;
  }

  .demo-band {
    padding-right: 14px;
    padding-left: 14px;
  }

  .lead-form {
    padding: 16px;
    border-radius: 18px;
  }

  .form-card-header h3 {
    font-size: 1.25rem;
  }

  .agent-command {
    grid-template-columns: auto 1fr;
  }

  .command-spark {
    display: none;
  }

  .hero-media {
    width: min(100%, 430px);
    border-radius: 24px;
  }

  .hero-media img {
    margin-top: 44px;
    border-radius: 18px;
  }

  .dashboard-topbar {
    grid-template-columns: repeat(3, 8px) 1fr;
    min-height: 34px;
    padding: 0 10px;
    border-radius: 13px;
  }

  .dashboard-topbar strong {
    font-size: 0.68rem;
  }

  .window-dot {
    width: 8px;
    height: 8px;
  }

  .status-pill {
    display: none;
  }

  .hero-media::after,
  .hero-glow-ring {
    display: none;
  }

  .floating-card {
    min-width: 118px;
    padding: 10px 11px;
    border-radius: 14px;
  }

  .floating-card strong {
    font-size: 0.74rem;
  }

  .floating-card span {
    font-size: 0.66rem;
  }

  .card-leads {
    top: 10px;
    left: 10px;
  }

  .card-whatsapp {
    right: 10px;
    top: auto;
    bottom: 14px;
  }

  .card-crm {
    display: none;
  }

  h1 {
    font-size: clamp(2.7rem, 17vw, 4.8rem);
  }

  .phone-shell {
    min-height: 500px;
    padding: 18px;
  }

  .message.user {
    margin-left: 18px;
  }

  .message.agent {
    margin-right: 18px;
  }

  .site-footer {
    flex-direction: column;
    grid-template-columns: 1fr 1fr;
    margin: 10px;
    padding: 28px;
    border-radius: 22px;
  }

  .footer-brand-block,
  .footer-credit {
    grid-column: 1 / -1;
  }

  .footer-credit {
    margin-top: 18px;
  }

  .chatbot {
    right: 8px !important;
    bottom: 8px !important;
  }

  .solution-grid,
  .stats-grid,
  .price-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-grid div:last-child {
    border-bottom: 0;
  }
}