@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --font-main: "Inter", "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --ink: #1c2224;
  --muted: #667274;
  --paper: #f6f7f4;
  --surface: #ffffff;
  --line: #dce2de;
  --teal: #0f8f83;
  --teal-dark: #0a615d;
  --coral: #e6654f;
  --amber: #d59b2f;
  --mint: #8fd5c2;
  --graphite: #263033;
  --shadow: 0 22px 70px rgba(20, 31, 32, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1160px, calc(100% - 32px));
  min-height: 58px;
  padding: 10px 12px;
  color: #f8fbf8;
  background: rgba(21, 28, 29, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #123331;
  background: #98e3cf;
  border-radius: 8px;
}

.brand-mark svg {
  width: 22px;
  height: 22px;
}

.brand-mark path {
  fill: currentColor;
  stroke: none;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: rgba(248, 251, 248, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a,
.footer a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.footer a:hover {
  color: #98e3cf;
}

.header-action,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

.header-action {
  justify-self: end;
  color: #0f302e;
  background: #f8fbf8;
}

.header-action svg,
.primary-action svg,
.secondary-action svg {
  width: 18px;
  height: 18px;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 146px max(28px, calc((100vw - 1160px) / 2)) 36px;
  overflow: hidden;
  color: #fbfcf8;
  background: #151a1b;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 12, 13, 0.94) 0%, rgba(8, 12, 13, 0.82) 34%, rgba(8, 12, 13, 0.18) 70%, rgba(8, 12, 13, 0.06) 100%),
    linear-gradient(0deg, rgba(8, 12, 13, 0.78) 0%, rgba(8, 12, 13, 0.1) 30%, rgba(8, 12, 13, 0) 100%);
  pointer-events: none;
}

.meeting-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 108px max(28px, calc((100vw - 1160px) / 2)) 86px 28px;
  background:
    linear-gradient(135deg, #101617 0%, #213133 46%, #654134 100%);
}

.room-shell {
  width: min(650px, 46vw);
  min-width: 560px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(243, 248, 241, 0.18), rgba(20, 27, 28, 0.36)),
    rgba(238, 243, 237, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(8px);
  transform: translateX(124px) perspective(1200px) rotateY(-4deg) rotateX(1.5deg);
  transform-origin: center;
  transition: transform 260ms ease;
}

.room-shell:hover {
  transform: translateX(124px) rotate(0deg) rotateX(0deg) rotateY(0deg);
}

.meeting-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 34px;
  padding: 0 12px;
  color: rgba(247, 250, 246, 0.82);
  font-size: 13px;
  font-weight: 700;
}

.meeting-topbar span:last-child {
  margin-left: auto;
  color: rgba(247, 250, 246, 0.62);
}

.status-dot {
  width: 9px;
  height: 9px;
  background: #60dfa8;
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(96, 223, 168, 0.12);
}

.video-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.78fr 0.78fr;
  grid-auto-rows: clamp(112px, 13.8vh, 150px);
  gap: 8px;
}

.participant {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #303a3c;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.participant.is-speaking {
  outline: 2px solid #98e3cf;
  outline-offset: -2px;
}

.main-speaker {
  grid-row: span 2;
}

.office-bg,
.office-bg::before,
.office-bg::after {
  position: absolute;
  inset: 0;
}

.office-bg {
  background:
    linear-gradient(115deg, rgba(151, 227, 207, 0.48), transparent 43%),
    linear-gradient(155deg, transparent 0 26%, rgba(40, 178, 160, 0.42) 26% 48%, transparent 48% 100%),
    linear-gradient(20deg, #172326 0%, #28595f 48%, #7a4c46 100%);
  background-size: 100% 100%;
}

.office-bg::before {
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.34), transparent 52%);
  background-size: 42px 100%, 100% 100%;
}

.office-bg::after {
  content: "";
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(7, 12, 13, 0.46));
}

.office-bg.alt {
  background:
    linear-gradient(125deg, rgba(226, 99, 79, 0.42), transparent 45%),
    linear-gradient(30deg, #191f25 0%, #58345f 50%, #0f8f83 100%);
}

.office-bg.green {
  background:
    linear-gradient(145deg, rgba(143, 213, 194, 0.5), transparent 44%),
    linear-gradient(35deg, #122a28 0%, #17645f 46%, #d59b2f 100%);
}

.office-bg.warm {
  background:
    linear-gradient(120deg, rgba(213, 155, 47, 0.48), transparent 42%),
    linear-gradient(35deg, #22282b 0%, #6d4037 48%, #0f8f83 100%);
}

.person {
  display: none;
}

.main-speaker .person {
  width: 178px;
  height: 238px;
}

.person::before {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 54px;
  height: 60px;
  content: "";
  background: #d7a47c;
  border-radius: 45% 45% 48% 48%;
  transform: translateX(-50%);
}

.main-speaker .person::before {
  width: 82px;
  height: 90px;
}

.person::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 106px;
  height: 86px;
  content: "";
  background: #2f6f76;
  border-radius: 46px 46px 8px 8px;
  transform: translateX(-50%);
}

.main-speaker .person::after {
  width: 170px;
  height: 132px;
}

.person span {
  position: absolute;
  left: 50%;
  top: 2px;
  z-index: 2;
  width: 70px;
  height: 34px;
  background: #33221f;
  border-radius: 38px 38px 16px 16px;
  transform: translateX(-50%);
}

.main-speaker .person span {
  width: 106px;
  height: 52px;
}

.person-b::after {
  background: #7b5d85;
}

.person-c::after {
  background: #95634a;
}

.person-d::after {
  background: #255f45;
}

.caption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 28px;
  padding: 0 9px;
  color: #f8fbf8;
  background: rgba(12, 15, 16, 0.48);
  border-radius: 8px;
  font-size: 12px;
}

.voice-bars {
  display: inline-flex;
  align-items: end;
  gap: 3px;
  height: 18px;
}

.voice-bars i {
  width: 4px;
  height: 8px;
  background: #74e7b8;
  border-radius: 8px;
  animation: voice 950ms ease-in-out infinite;
}

.voice-bars i:nth-child(2) {
  height: 14px;
  animation-delay: 120ms;
}

.voice-bars i:nth-child(3) {
  height: 10px;
  animation-delay: 240ms;
}

.screen-board {
  position: absolute;
  inset: 18px;
  padding: 18px;
  background: #eef2e9;
  border-radius: 8px;
}

.screen-board div {
  width: 66%;
  height: 12px;
  margin-bottom: 10px;
  background: #253134;
  border-radius: 4px;
}

.screen-board div:nth-child(2) {
  width: 48%;
  background: var(--teal);
}

.screen-board div:nth-child(3) {
  width: 74%;
  background: #d9a13b;
}

.screen-board span {
  display: block;
  height: 52px;
  margin-top: 22px;
  background:
    linear-gradient(90deg, #d95f4c 0 28%, transparent 28% 36%, #0f8f83 36% 65%, transparent 65% 72%, #263033 72% 100%);
  border-radius: 8px;
}

.notes-tile {
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(222, 230, 220, 0.94)),
    #eef2e9;
}

.note-line {
  height: 11px;
  width: 70%;
  margin-bottom: 11px;
  background: #263033;
  border-radius: 4px;
}

.note-line.wide {
  width: 88%;
}

.note-line.short {
  width: 42%;
  background: #0f8f83;
}

.task-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.task-row span {
  width: 16px;
  height: 16px;
  border: 2px solid #d59b2f;
  border-radius: 4px;
}

.task-row b {
  width: 78%;
  height: 10px;
  background: #aab7ad;
  border-radius: 4px;
}

.meeting-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 54px;
}

.tool-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #f8fbf8;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  cursor: pointer;
}

.tool-btn.is-active {
  color: #092926;
  background: #94dfca;
}

.tool-btn.danger {
  background: #d85f4c;
}

.tool-btn svg {
  width: 18px;
  height: 18px;
}

.tool-btn::after {
  position: absolute;
  bottom: 50px;
  left: 50%;
  padding: 6px 8px;
  color: #f8fbf8;
  font-size: 12px;
  white-space: nowrap;
  content: attr(data-tooltip);
  background: rgba(12, 15, 16, 0.82);
  border-radius: 6px;
  opacity: 0;
  transform: translateX(-50%) translateY(5px);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
}

.tool-btn:hover::after,
.tool-btn:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
  padding-top: 52px;
}

.eyebrow,
.section-heading span {
  margin: 0 0 18px;
  color: #98e3cf;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(70px, 7.2vw, 116px);
  line-height: 0.95;
  font-weight: 800;
}

.hero-text {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(248, 251, 248, 0.84);
  font-size: 24px;
  line-height: 1.45;
  font-weight: 500;
}

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

.primary-action {
  color: #0e2c2a;
  background: #98e3cf;
}

.secondary-action {
  color: #f8fbf8;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-metrics {
  position: absolute;
  left: max(28px, calc((100vw - 1160px) / 2));
  bottom: 34px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(620px, calc(100% - 56px));
  color: #f8fbf8;
}

.hero-metrics div {
  padding: 18px 18px 0 0;
}

.hero-metrics strong {
  display: block;
  font-size: 24px;
}

.hero-metrics span {
  display: block;
  margin-top: 4px;
  color: rgba(248, 251, 248, 0.64);
  font-size: 13px;
}

.section {
  padding: 92px max(28px, calc((100vw - 1160px) / 2));
}

.intro-band {
  background: #f6f7f4;
}

.section-heading {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  max-width: 940px;
}

.section-heading span {
  color: var(--teal-dark);
  margin-top: 8px;
}

.section-heading h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.08;
}

.room-types,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 50px;
}

.room-card,
.price-card {
  min-height: 250px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.room-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #092926;
  background: #b8ead9;
  border-radius: 8px;
}

.room-icon.coral {
  color: #3a1711;
  background: #ffc1b6;
}

.room-icon.amber {
  color: #35230a;
  background: #f0d087;
}

.room-icon svg {
  width: 24px;
  height: 24px;
}

.room-card h3,
.security-grid h3,
.timeline-row h3,
.price-card h3 {
  margin: 28px 0 10px;
  font-size: 22px;
}

.room-card p,
.security-grid p,
.timeline-row p,
.price-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.workflow {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 30px;
  background: #e9efea;
}

.workflow-panel {
  min-width: 0;
}

.timeline {
  margin-top: 52px;
}

.timeline-row {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid #cfd8d2;
}

.timeline-row b {
  color: var(--coral);
  font-size: 18px;
}

.timeline-row h3 {
  margin-top: 0;
}

.agenda-preview {
  align-self: start;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(42, 52, 47, 0.12);
}

.agenda-header {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  margin-bottom: 18px;
}

.agenda-header span {
  width: 12px;
  height: 12px;
  background: var(--coral);
  border-radius: 999px;
}

.agenda-item {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) 58px;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  border-top: 1px solid #edf0ec;
  color: var(--muted);
  font-size: 14px;
}

.agenda-item i {
  width: 12px;
  height: 12px;
  border: 2px solid #bdc8c1;
  border-radius: 999px;
}

.agenda-item.done i,
.agenda-item.active i {
  border-color: var(--teal);
  background: var(--teal);
}

.agenda-item.active span {
  color: var(--ink);
  font-weight: 800;
}

.agenda-item b {
  color: var(--ink);
  font-size: 13px;
  text-align: right;
}

.decision-strip {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #edf0ec;
  color: var(--muted);
  font-size: 14px;
}

.decision-strip strong {
  color: var(--ink);
}

.security-band {
  color: #f7faf6;
  background: #263033;
}

.security-band .section-heading span {
  color: #9be5d1;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 54px;
}

.security-grid div {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.security-grid p {
  color: rgba(247, 250, 246, 0.68);
}

.pricing {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  background:
    linear-gradient(180deg, rgba(246, 247, 244, 0.92), rgba(233, 239, 234, 0.96)),
    linear-gradient(135deg, #f6f7f4 0%, #dcebe5 48%, #f4dfba 100%);
}

.price-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.price-card h3 {
  margin-top: 0;
}

.price-card strong {
  display: block;
  margin-top: 28px;
  font-size: 32px;
}

.price-card > span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

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

.price-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.price-card li::before {
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 12px;
  height: 7px;
  content: "";
  border-bottom: 2px solid var(--teal);
  border-left: 2px solid var(--teal);
  transform: rotate(-45deg);
}

.price-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  margin-top: auto;
  color: #0e2c2a;
  background: #b8ead9;
  border-radius: 8px;
  font-weight: 500;
}

.price-card.featured {
  color: #f8fbf8;
  background: #263033;
  border-color: #263033;
}

.price-card.featured p,
.price-card.featured > span,
.price-card.featured li {
  color: rgba(248, 251, 248, 0.68);
}

.price-card.featured li::before {
  border-color: #f0d087;
}

.price-card.featured a {
  background: #f0d087;
}

.footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(420px, 0.86fr);
  gap: 72px;
  padding: 72px max(28px, calc((100vw - 1160px) / 2)) 84px;
  color: rgba(248, 251, 248, 0.68);
  background: #030303;
}

.footer-identity {
  display: grid;
  align-content: start;
  gap: 26px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: #f8fbf8;
  font-size: 24px;
  font-weight: 700;
}

.footer-brand-mark {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #4f8dff;
}

.footer-brand-mark svg {
  width: 24px;
  height: 24px;
}

.footer-identity p {
  margin: 0;
  max-width: 310px;
  font-size: 18px;
  line-height: 1.5;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
  align-items: start;
}

.footer-group {
  display: grid;
  gap: 18px;
}

.footer-group h3 {
  margin: 0 0 10px;
  color: #f8fbf8;
  font-size: 18px;
  line-height: 1.25;
}

.footer a {
  color: rgba(248, 251, 248, 0.68);
}

.footer-group a {
  font-size: 17px;
  line-height: 1.35;
}

.document-page {
  background: #f6f7f4;
}

.document-main {
  padding: 154px max(28px, calc((100vw - 1160px) / 2)) 86px;
  min-width: 0;
}

.document-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.28fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 42px;
}

.document-hero p {
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.document-hero h1 {
  max-width: 960px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 4.25vw, 64px);
  line-height: 1.06;
  overflow-wrap: normal;
  word-break: normal;
}

.document-meta {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 15px;
}

.document-body {
  display: grid;
  gap: 28px;
  padding: 42px;
  min-width: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.document-section {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 30px;
  min-width: 0;
  padding-top: 26px;
  border-top: 1px solid #e5ebe6;
}

.document-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.document-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.document-section div {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.document-section p,
.document-section li {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.document-section ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.document-section a {
  color: var(--teal-dark);
  font-weight: 600;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
}

.modal-overlay[hidden] {
  display: none;
}

.request-modal {
  width: min(560px, 100%);
  color: #f8fbf8;
  background: rgba(8, 9, 9, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.modal-header h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.modal-close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: rgba(248, 251, 248, 0.62);
  background: transparent;
  border: 0;
  border-radius: 8px;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover,
.modal-close:focus-visible {
  color: #f8fbf8;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.request-form {
  display: grid;
  gap: 24px;
  padding: 30px;
}

.request-form label {
  display: grid;
  gap: 12px;
  color: rgba(248, 251, 248, 0.62);
  font-size: 17px;
}

.request-form input {
  width: 100%;
  height: 52px;
  padding: 0 20px;
  color: #f8fbf8;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font: inherit;
  font-size: 17px;
  outline: none;
}

.request-form input::placeholder {
  color: rgba(248, 251, 248, 0.38);
}

.request-form input:focus {
  border-color: rgba(152, 227, 207, 0.76);
  box-shadow: 0 0 0 3px rgba(152, 227, 207, 0.1);
}

.request-form button[type="submit"] {
  height: 52px;
  color: #0b0d0d;
  background: #f8fbf8;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
}

.request-form button[type="submit"]:hover,
.request-form button[type="submit"]:focus-visible {
  background: #98e3cf;
  outline: none;
}

.request-form button[type="submit"]:disabled {
  color: rgba(11, 13, 13, 0.64);
  background: rgba(248, 251, 248, 0.72);
  cursor: progress;
}

.form-status {
  margin: -8px 0 0;
  color: #98e3cf;
  font-size: 14px;
}

@keyframes voice {
  0%, 100% {
    transform: scaleY(0.62);
  }
  50% {
    transform: scaleY(1.35);
  }
}

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

  .nav-links {
    display: none;
  }

  .meeting-stage {
    opacity: 0.68;
    justify-content: center;
    padding-top: 120px;
  }

  .room-shell {
    width: min(720px, 92vw);
    min-width: 0;
    transform: none;
  }

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

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

  .hero-text {
    font-size: 20px;
  }

  .hero-metrics {
    left: 28px;
    right: 28px;
    width: auto;
  }

  .section-heading,
  .workflow {
    grid-template-columns: 1fr;
  }

  .room-types,
  .pricing-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .footer-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }

  .document-hero,
  .document-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1240px) {
  .document-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .document-hero h1 {
    max-width: 900px;
    font-size: clamp(42px, 6vw, 68px);
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    width: calc(100% - 20px);
    min-height: 54px;
  }

  .brand {
    min-width: 0;
    font-size: 14px;
  }

  .brand > span:last-child {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .header-action {
    display: none;
  }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 112px 20px 34px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(12, 15, 16, 0.92) 0%, rgba(12, 15, 16, 0.58) 54%, rgba(12, 15, 16, 0.92) 100%);
  }

  .meeting-stage {
    padding: 92px 16px 150px;
    opacity: 0.56;
  }

  .video-grid {
    grid-auto-rows: 118px;
  }

  .participant:nth-child(n+5) {
    display: none;
  }

  .meeting-toolbar {
    height: 54px;
  }

  .tool-btn {
    width: 38px;
    height: 38px;
  }

  .hero-copy {
    width: 100%;
    max-width: 330px;
    padding-top: 0;
  }

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

  .hero-text {
    width: 100%;
    max-width: 100%;
    font-size: 18px;
    overflow-wrap: break-word;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    bottom: 20px;
  }

  .hero-metrics div {
    padding: 10px 0;
  }

  .hero-metrics div:nth-child(n+2) {
    display: none;
  }

  .section {
    padding: 64px 20px;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .room-card,
  .price-card,
  .agenda-preview {
    padding: 20px;
  }

  .timeline-row {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 52px 20px;
  }

  .footer-brand {
    font-size: 22px;
  }

  .footer-identity p {
    font-size: 16px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-group {
    gap: 14px;
  }

  .footer-group a {
    font-size: 16px;
  }

  .document-main {
    padding: 118px 20px 64px;
  }

  .document-hero {
    gap: 20px;
  }

  .document-hero h1 {
    font-size: 30px;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .document-body {
    padding: 24px 16px;
  }

  .document-section {
    gap: 14px;
  }

  .document-section p,
  .document-section li {
    max-width: calc(100vw - 84px);
    font-size: 15px;
    word-break: break-word;
  }

  .modal-overlay {
    align-items: end;
    padding: 14px;
  }

  .request-modal {
    max-height: calc(100vh - 28px);
    overflow: auto;
  }

  .modal-header {
    padding: 24px 20px;
  }

  .modal-header h2 {
    font-size: 22px;
  }

  .request-form {
    gap: 20px;
    padding: 22px 20px 24px;
  }

  .request-form label,
  .request-form input,
  .request-form button[type="submit"] {
    font-size: 16px;
  }
}
