:root {
  color-scheme: light;
  --ink: #171916;
  --muted: #62685f;
  --paper: #f4f1ea;
  --surface: #fffdf8;
  --surface-2: #ebe7dc;
  --line: #d7d0c2;
  --charcoal: #20231f;
  --green: #17624e;
  --blue: #1f6680;
  --amber: #c87b28;
  --coral: #b94e43;
  --lime: #b9d56d;
  --shadow: 0 18px 50px rgba(28, 28, 24, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(23, 98, 78, 0.08), transparent 38rem),
    linear-gradient(180deg, rgba(200, 123, 40, 0.08), transparent 28rem),
    var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  overflow-x: hidden;
}

button,
input,
select,
textarea,
a {
  font: inherit;
}

button,
a,
select {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 6.6rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(1.65rem, 3vw, 3rem);
  line-height: 1;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.15;
}

p,
li {
  line-height: 1.55;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
}

input,
select {
  min-height: 46px;
}

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

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(31, 102, 128, 0.24);
  outline-offset: 2px;
}

.app-root {
  min-height: 100vh;
}

.site-header {
  display: grid;
  grid-template-columns: minmax(220px, auto) 1fr auto;
  gap: 18px;
  align-items: center;
  width: min(1500px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
}

.site-header > * {
  min-width: 0;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--charcoal);
  color: #fffdf8;
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: 800;
}

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

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

.brand small {
  max-width: 250px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.25;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.main-nav a,
.text-button,
.nav-cta {
  min-height: 36px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  padding: 8px 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.main-nav a:hover,
.text-button:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
}

.main-nav .nav-cta {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: #fff;
}

.language-select {
  display: grid;
  gap: 4px;
  min-width: 124px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.language-select select {
  min-height: 36px;
  padding: 6px 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 11px 17px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 28px rgba(23, 98, 78, 0.24);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.66);
  color: var(--charcoal);
}

.button.dark {
  background: var(--charcoal);
  color: #fff;
}

.button.glass {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(14px);
}

.button.full {
  width: 100%;
}

.button:disabled,
.icon-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.toast {
  position: fixed;
  top: 84px;
  right: 20px;
  z-index: 20;
  max-width: min(420px, calc(100% - 40px));
  border: 1px solid rgba(23, 98, 78, 0.24);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 12px 14px;
  color: var(--green);
  font-weight: 850;
}

.toast.error {
  border-color: rgba(185, 78, 67, 0.32);
  color: var(--coral);
}

.status-note {
  border: 1px solid rgba(200, 123, 40, 0.34);
  border-radius: 8px;
  background: rgba(200, 123, 40, 0.1);
  padding: 12px 14px;
  color: #744815;
  font-weight: 850;
}

.status-note.success {
  border-color: rgba(23, 98, 78, 0.28);
  background: rgba(23, 98, 78, 0.08);
  color: var(--green);
}

.loading-screen {
  display: grid;
  min-height: 100vh;
  place-items: center;
}

.loading-pulse {
  width: 46px;
  height: 46px;
  border: 3px solid rgba(23, 98, 78, 0.18);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.home-page,
.workspace-page,
.auth-page,
.landing-index {
  width: min(1500px, calc(100% - 32px));
  margin: 0 auto;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.82fr);
  gap: clamp(22px, 4vw, 72px);
  align-items: center;
  min-height: calc(100svh - 136px);
  padding: 28px 0 42px;
}

.eyebrow,
.section-kicker {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.hero-subtitle {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.38rem);
}

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

.security-strip {
  width: fit-content;
  border-left: 4px solid var(--lime);
  background: rgba(255, 255, 255, 0.66);
  padding: 10px 13px;
  color: var(--charcoal);
  font-weight: 850;
}

.product-visual {
  position: relative;
  min-height: 560px;
}

.phone-frame {
  position: absolute;
  right: 0;
  top: 0;
  width: min(330px, 72vw);
  min-height: 610px;
  border: 10px solid #151713;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(23, 98, 78, 0.08), rgba(200, 123, 40, 0.1)),
    #fbfaf5;
  box-shadow: var(--shadow);
  padding: 58px 18px 24px;
}

.phone-top {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 86px;
  height: 24px;
  border-radius: 999px;
  background: #151713;
  transform: translateX(-50%);
}

.chat-bubble {
  max-width: 88%;
  margin-bottom: 14px;
  border-radius: 8px;
  padding: 12px;
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.35;
}

.chat-bubble.question {
  margin-left: auto;
  background: var(--green);
  color: #fff;
}

.chat-bubble.answer {
  background: #fff;
  color: var(--charcoal);
  box-shadow: 0 10px 22px rgba(28, 28, 24, 0.08);
}

.chat-bubble.small {
  margin-top: 48px;
  background: var(--blue);
}

.rentman-card {
  position: absolute;
  left: 0;
  bottom: 54px;
  width: min(260px, 56vw);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 8px;
  background: rgba(32, 35, 31, 0.92);
  box-shadow: var(--shadow);
  color: #fff;
  padding: 18px;
}

.rentman-card span {
  color: var(--lime);
  font-weight: 950;
  text-transform: uppercase;
}

.rentman-card strong {
  display: block;
  margin: 10px 0 18px;
  font-family: Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.05;
}

.mini-row {
  width: 100%;
  height: 12px;
  margin-top: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.mini-row.short {
  width: 62%;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 20px;
}

.signal-grid i {
  height: 54px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--lime), var(--amber));
}

.signal-grid i:nth-child(2) {
  height: 78px;
}

.signal-grid i:nth-child(3) {
  height: 44px;
}

.signal-grid i:nth-child(4) {
  height: 92px;
}

.offer-band,
.workspace-band,
.pilot-section,
.trust-section,
.final-cta,
.audience-ribbon {
  display: grid;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: clamp(28px, 5vw, 72px) 0;
}

.offer-band {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.offer-band p {
  max-width: 850px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 1.1rem;
}

.feature-grid,
.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0 0 56px;
}

.feature-card,
.summary-card,
.landing-card,
.question-card,
.proof-panel,
.auth-form,
.onboarding-step {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 220px;
  padding: 22px;
}

.feature-card h2 {
  font-size: 1.55rem;
}

.feature-card p {
  margin-top: 14px;
  color: var(--muted);
}

.auth-page {
  display: grid;
  min-height: calc(100svh - 96px);
  place-items: center;
  padding: 28px 0 64px;
}

.auth-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.6fr);
  gap: 24px;
  align-items: stretch;
  width: min(1080px, 100%);
}

.auth-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 520px;
  border-radius: 8px;
  background:
    linear-gradient(rgba(32, 35, 31, 0.76), rgba(32, 35, 31, 0.86)),
    url("/assets/event-production-staging.jpg");
  background-position: center;
  background-size: cover;
  color: #fff;
  padding: clamp(24px, 5vw, 56px);
}

.auth-copy .eyebrow {
  color: var(--lime);
}

.auth-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.auth-form {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 22px;
}

.auth-form label,
.onboarding-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
}

.auth-form label span,
.onboarding-form label span {
  text-transform: uppercase;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-bottom: 8px;
}

.auth-tabs a {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px;
  color: var(--muted);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.auth-tabs a.active {
  background: var(--charcoal);
  color: #fff;
}

.form-switch {
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.form-switch a {
  color: var(--green);
  font-weight: 900;
}

.workspace-page {
  padding: 28px 0 72px;
}

.page-heading,
.dashboard-hero {
  display: grid;
  gap: 14px;
  max-width: 980px;
  padding: 28px 0 34px;
}

.page-heading p,
.dashboard-hero p {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.08rem;
}

.dashboard-hero {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  max-width: none;
  border-bottom: 1px solid var(--line);
}

.onboarding-form {
  display: grid;
  gap: 14px;
}

.onboarding-step {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
}

.step-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.step-title span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--charcoal);
  color: #fff;
  font-weight: 950;
}

.step-title h2 {
  font-size: clamp(1.3rem, 2.2vw, 2.1rem);
}

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

.wide {
  grid-column: 1 / -1;
}

.section-helper {
  max-width: 940px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.employee-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.icon-button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--coral);
  padding: 8px 12px;
  font-weight: 950;
  cursor: pointer;
}

.secure-step {
  border-color: rgba(23, 98, 78, 0.28);
}

.security-callout {
  display: grid;
  gap: 10px;
  border-left: 4px solid var(--green);
  background: rgba(23, 98, 78, 0.07);
  padding: 14px;
}

.security-callout p {
  color: var(--charcoal);
  font-weight: 750;
}

.form-actions {
  position: sticky;
  bottom: 0;
  z-index: 4;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(244, 241, 234, 0.9);
  backdrop-filter: blur(16px);
  padding: 12px;
}

.summary-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 22px 0;
}

.summary-card {
  display: grid;
  gap: 10px;
  min-height: 136px;
  padding: 16px;
}

.summary-card span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.summary-card strong {
  overflow-wrap: anywhere;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  line-height: 1.25;
}

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

.workspace-band p,
.workspace-band li {
  color: var(--muted);
}

.workspace-band ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 18px;
}

.workspace-band .button {
  margin-top: 18px;
}

.landing-index {
  padding: 28px 0 70px;
}

.landing-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.landing-card {
  display: grid;
  gap: 18px;
  align-content: space-between;
  min-height: 320px;
  padding: 18px;
  border-top: 5px solid var(--green);
}

.landing-card.event {
  border-top-color: var(--blue);
}

.landing-card.dry {
  border-top-color: var(--amber);
}

.landing-card.broadcast {
  border-top-color: var(--coral);
}

.landing-card.corporate {
  border-top-color: #5d6f35;
}

.landing-card span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.landing-card h2 {
  margin-top: 8px;
  font-size: 1.35rem;
}

.landing-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.landing-card strong {
  display: block;
  margin-top: 6px;
}

.campaign-page {
  background: #0d0f0c;
  color: #fff;
}

.campaign-page + * {
  background: var(--paper);
}

.campaign-page .button.primary {
  background: var(--lime);
  color: #131511;
  box-shadow: 0 14px 34px rgba(185, 213, 109, 0.26);
}

.campaign-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 500px;
  height: min(700px, calc(100svh - 136px));
  overflow: hidden;
}

.campaign-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 8, 0.9) 0%, rgba(8, 10, 8, 0.72) 42%, rgba(8, 10, 8, 0.2) 78%, rgba(8, 10, 8, 0.04)),
    linear-gradient(0deg, rgba(8, 10, 8, 0.7), rgba(8, 10, 8, 0.08) 54%);
}

.campaign-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 clamp(28px, 7vw, 76px);
}

.campaign-copy h1 {
  max-width: 920px;
}

.title-line {
  display: block;
}

.campaign-copy h2 {
  max-width: 760px;
  color: var(--lime);
}

.campaign-copy p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.campaign-copy .eyebrow {
  color: var(--lime);
}

.variant-hook {
  color: #fff !important;
  font-family: Georgia, serif;
  font-size: clamp(1.3rem, 2.3vw, 2.2rem) !important;
  line-height: 1.08 !important;
}

.no-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.no-stack span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 900;
}

.audience-ribbon,
.two-column-section,
.questions-section,
.pilot-section,
.trust-section,
.final-cta {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.audience-ribbon {
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: center;
  border-color: rgba(255, 255, 255, 0.14);
}

.audience-ribbon span {
  color: var(--lime);
  font-weight: 950;
  text-transform: uppercase;
}

.audience-ribbon p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.1rem;
}

.two-column-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 56px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: clamp(38px, 7vw, 96px) 0;
}

.two-column-section article {
  display: grid;
  align-content: start;
  gap: 16px;
}

.two-column-section p:not(.section-kicker),
.pilot-section p,
.trust-section li,
.final-cta p {
  color: rgba(255, 255, 255, 0.74);
}

.questions-section {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: clamp(38px, 7vw, 96px) 0;
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.question-card {
  display: flex;
  align-items: center;
  min-height: 96px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  color: #fff;
  padding: 16px;
  font-family: Georgia, serif;
  font-size: 1.12rem;
  line-height: 1.25;
}

.pilot-section {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: center;
  border-color: rgba(255, 255, 255, 0.14);
}

.proof-panel {
  border-color: rgba(185, 213, 109, 0.32);
  background: rgba(185, 213, 109, 0.08);
  box-shadow: none;
  padding: 22px;
}

.proof-panel h3 {
  margin: 10px 0;
  color: #fff;
}

.trust-section {
  grid-template-columns: 0.8fr 1.2fr;
  border-color: rgba(255, 255, 255, 0.14);
}

.trust-section ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-section li {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 14px;
}

.final-cta {
  display: grid;
  justify-items: start;
  max-width: 980px;
  padding-bottom: clamp(48px, 8vw, 104px);
  text-align: left;
}

.final-cta h2 {
  max-width: 820px;
}

.final-cta p {
  max-width: 760px;
  font-size: 1.12rem;
}

.campaign-page.event .campaign-copy h2,
.campaign-page.event .campaign-copy .eyebrow,
.campaign-page.event .audience-ribbon span {
  color: #8fd2eb;
}

.campaign-page.dry .campaign-copy h2,
.campaign-page.dry .campaign-copy .eyebrow,
.campaign-page.dry .audience-ribbon span {
  color: #f0b15c;
}

.campaign-page.broadcast .campaign-copy h2,
.campaign-page.broadcast .campaign-copy .eyebrow,
.campaign-page.broadcast .audience-ribbon span {
  color: #f08b80;
}

.campaign-page.corporate .campaign-copy h2,
.campaign-page.corporate .campaign-copy .eyebrow,
.campaign-page.corporate .audience-ribbon span {
  color: #c9df86;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
  }

  .home-hero,
  .auth-panel,
  .questions-section,
  .pilot-section,
  .trust-section {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
  }

  .product-visual {
    min-height: 660px;
  }

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

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

@media (max-width: 780px) {
  .site-header,
  .home-page,
  .workspace-page,
  .auth-page,
  .landing-index {
    width: min(100% - 20px, 1500px);
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 0;
  }

  .brand small {
    max-width: none;
  }

  .main-nav {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
    justify-content: normal;
    order: 0;
  }

  .main-nav a,
  .text-button,
  .main-nav .nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    padding-right: 6px;
    padding-left: 6px;
    overflow-wrap: anywhere;
    text-align: center;
    white-space: normal;
  }

  .language-select {
    width: 100%;
  }

  .home-hero {
    gap: 18px;
    padding-top: 14px;
  }

  h1 {
    font-size: clamp(2.35rem, 16vw, 4.3rem);
  }

  .hero-actions,
  .form-actions,
  .offer-band,
  .dashboard-hero,
  .workspace-band,
  .two-column-section,
  .audience-ribbon {
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .form-actions .button,
  .offer-band .button,
  .dashboard-hero .button {
    width: 100%;
  }

  .product-visual {
    min-height: 560px;
  }

  .phone-frame {
    position: relative;
    right: auto;
    left: auto;
    width: 100%;
    min-height: 540px;
  }

  .rentman-card {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-top: 12px;
  }

  .feature-grid,
  .form-grid,
  .employee-row,
  .summary-grid,
  .landing-list,
  .question-grid,
  .trust-section ul {
    grid-template-columns: 1fr;
  }

  .auth-copy {
    min-height: 380px;
  }

  .form-actions {
    position: static;
  }

  .campaign-hero {
    height: auto;
    min-height: calc(100svh - 170px);
  }

  .campaign-copy {
    width: min(100% - 20px, 1180px);
    padding-top: 140px;
  }

  .campaign-copy h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 12vw, 3.35rem);
    overflow-wrap: break-word;
  }

  .campaign-copy h2 {
    font-size: clamp(1.35rem, 6.7vw, 1.78rem);
    overflow-wrap: break-word;
  }

  .campaign-copy > p:not(.eyebrow):not(.variant-hook) {
    max-width: 31ch;
  }

  .campaign-copy .variant-hook {
    font-size: clamp(1.12rem, 5.4vw, 1.42rem) !important;
    max-width: 23ch;
  }

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

  .audience-ribbon,
  .two-column-section,
  .questions-section,
  .pilot-section,
  .trust-section,
  .final-cta {
    width: min(100% - 20px, 1280px);
  }
}

@media (max-width: 480px) {
  .product-visual {
    min-height: auto;
  }
}
