:root {
  --bg: #fdf8f2;
  --bg-soft: #fffdf8;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #fff8ef;
  --text: #1f2230;
  --muted: #62667a;
  --line: rgba(31, 34, 48, 0.1);
  --brand: #e96443;
  --brand-deep: #c94a2d;
  --accent: #ffbe5c;
  --accent-soft: #ffdca5;
  --teal: #3b8f8a;
  --shadow: 0 30px 70px rgba(77, 52, 38, 0.14);
  --radius: 28px;
  --container: min(1140px, calc(100vw - 2rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 190, 92, 0.35), transparent 26%),
    radial-gradient(circle at 85% 12%, rgba(59, 143, 138, 0.16), transparent 20%),
    linear-gradient(180deg, #fff8ef 0%, #fffdf9 30%, #f8efe4 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(31, 34, 48, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 34, 48, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 85%);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(233, 100, 67, 0.35);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 50;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: white;
  box-shadow: 0 16px 28px rgba(31, 34, 48, 0.18);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem 0;
  transition: padding 180ms ease, background-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.scrolled {
  padding: 0.7rem 0;
  background: rgba(253, 248, 242, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(31, 34, 48, 0.06);
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: white;
  font-weight: 700;
  background: linear-gradient(145deg, var(--brand), #f48e57);
  box-shadow: 0 12px 28px rgba(233, 100, 67, 0.35);
}

.brand-copy {
  display: grid;
  gap: 0.05rem;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy span {
  font-size: 0.78rem;
  color: var(--muted);
}

.main-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(31, 34, 48, 0.05);
  box-shadow: 0 10px 35px rgba(86, 67, 53, 0.08);
}

.main-nav a {
  font-size: 0.95rem;
  color: var(--muted);
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--text);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(31, 34, 48, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 10px 30px rgba(86, 67, 53, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0.18rem auto;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button-small {
  min-height: 2.6rem;
  padding-inline: 1.1rem;
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--brand), #ef8d56);
  box-shadow: 0 16px 30px rgba(233, 100, 67, 0.28);
}

.button-primary:hover {
  box-shadow: 0 20px 40px rgba(233, 100, 67, 0.36);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(31, 34, 48, 0.08);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.56);
  border-color: rgba(31, 34, 48, 0.08);
}

.hero {
  padding: 3rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(31, 34, 48, 0.07);
  color: var(--brand-deep);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero h1,
.section-heading h2,
.working-copy h2,
.workflow-copy h2,
.showcase-panel h2,
.cta-card h2 {
  margin: 1rem 0 0;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
}

.hero-text,
.section-heading p,
.workflow-copy p,
.showcase-panel p,
.cta-card p,
.metric-card p,
.feature-card p,
.step-card p,
.price-card p,
.quote-meta span,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 62ch;
  margin: 1.2rem 0 0;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}

.hero-proof div,
.metric-card,
.feature-card,
.step-card,
.price-card,
.floating-card,
.testimonial-card,
.cta-card,
.dashboard-main,
.insight-board article {
  border: 1px solid rgba(31, 34, 48, 0.06);
  box-shadow: var(--shadow);
}

.hero-proof div {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(10px);
}

.hero-proof strong,
.metric-card strong,
.price {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
}

.hero-proof span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 42rem;
}

.dashboard-main {
  position: relative;
  padding: 1.4rem;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.93), rgba(255, 251, 245, 0.82)),
    linear-gradient(135deg, rgba(255, 190, 92, 0.2), rgba(59, 143, 138, 0.12));
  backdrop-filter: blur(14px);
}

.dashboard-top,
.chart-panel {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.dashboard-top h2 {
  margin: 0.35rem 0 0;
  font-size: 1.45rem;
}

.label {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(59, 143, 138, 0.14);
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 700;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1.35rem 0;
}

.stat-band article,
.chart-panel,
.floating-card {
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 34, 48, 0.06);
}

.stat-band span,
.stat-band small,
.chart-copy span,
.floating-card span,
.plan-name,
.plan-copy {
  color: var(--muted);
}

.stat-band strong {
  display: block;
  margin: 0.4rem 0 0.3rem;
  font-size: 1.45rem;
}

.chart-copy {
  max-width: 17rem;
}

.chart-copy strong {
  display: block;
  margin: 0.45rem 0;
  font-size: 1.1rem;
  line-height: 1.35;
}

.chart-bars {
  min-height: 12rem;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.7rem;
}

.chart-bars span {
  flex: 1;
  min-width: 1.8rem;
  height: var(--height);
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(180deg, var(--accent), var(--brand));
  animation: bar-rise 900ms cubic-bezier(0.25, 1, 0.5, 1) both;
}

.chart-bars span:nth-child(2) {
  animation-delay: 70ms;
}

.chart-bars span:nth-child(3) {
  animation-delay: 140ms;
}

.chart-bars span:nth-child(4) {
  animation-delay: 210ms;
}

.chart-bars span:nth-child(5) {
  animation-delay: 280ms;
}

.chart-bars span:nth-child(6) {
  animation-delay: 350ms;
}

.floating-card {
  position: absolute;
  max-width: 15rem;
  backdrop-filter: blur(12px);
}

.floating-card strong {
  display: block;
  margin: 0.4rem 0;
}

.floating-card-top {
  top: 2rem;
  right: -1rem;
}

.floating-card-bottom {
  bottom: 2rem;
  left: -1.25rem;
}

.metrics-section,
.features-section,
.working-section,
.workflow-section,
.showcase-section,
.testimonial-section,
.pricing-section,
.faq-section,
.cta-section {
  padding: 2rem 0 5rem;
}

.metrics-grid,
.feature-grid,
.pricing-grid {
  display: grid;
  gap: 1.2rem;
}

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

.metric-card {
  padding: 1.5rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.68);
}

.metric-label {
  color: var(--brand-deep);
  font-weight: 700;
}

.metric-card strong {
  margin: 0.8rem 0 0.65rem;
  font-size: clamp(2.6rem, 4vw, 3.5rem);
}

.section-heading {
  max-width: 43rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.working-copy h2,
.workflow-copy h2,
.showcase-panel h2,
.cta-card h2 {
  font-size: clamp(2.3rem, 4.8vw, 4rem);
}

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

.feature-card {
  padding: 1.6rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.64);
}

.feature-icon,
.step-number {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-weight: 700;
}

.feature-icon {
  color: var(--brand-deep);
  background: rgba(233, 100, 67, 0.12);
}

.feature-card h3,
.working-panel h3,
.step-card h3,
.price-card .plan-name {
  margin-bottom: 0.7rem;
}

.working-layout,
.workflow-layout,
.showcase-grid,
.footer-wrap,
.cta-card {
  display: grid;
  gap: 1.5rem;
}

.working-layout,
.workflow-layout,
.showcase-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.working-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.working-points {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.working-points div,
.working-shell,
.working-panel,
.login-modal {
  border: 1px solid rgba(31, 34, 48, 0.06);
  box-shadow: var(--shadow);
}

.working-points div {
  padding: 1.15rem 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.64);
}

.working-points strong {
  display: block;
  margin-bottom: 0.4rem;
}

.working-points span {
  color: var(--muted);
  line-height: 1.6;
}

.working-shell {
  padding: 1.2rem;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 249, 240, 0.85)),
    linear-gradient(135deg, rgba(255, 190, 92, 0.18), rgba(59, 143, 138, 0.08));
}

.working-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.working-tab {
  min-height: 2.85rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(31, 34, 48, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.working-tab:hover {
  transform: translateY(-1px);
  color: var(--text);
}

.working-tab.is-active {
  background: linear-gradient(135deg, var(--brand), #ef8d56);
  color: white;
  border-color: transparent;
  box-shadow: 0 16px 30px rgba(233, 100, 67, 0.22);
}

.working-panel {
  padding: 1.35rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
}

.working-panel[hidden] {
  display: none;
}

.panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.panel-header h3 {
  margin-top: 0.35rem;
}

.panel-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1.2rem 0;
}

.panel-metrics div {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(31, 34, 48, 0.06);
}

.panel-metrics strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.45rem;
}

.panel-metrics span {
  color: var(--muted);
  line-height: 1.55;
}

.activity-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.activity-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

.activity-list li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--accent));
}

.workflow-steps,
.insight-board {
  display: grid;
  gap: 1rem;
}

.step-card {
  padding: 1.4rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.68);
}

.step-number {
  color: white;
  background: linear-gradient(145deg, var(--teal), #64bab3);
}

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

.insight-board article {
  padding: 1.35rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.66);
}

.insight-board strong {
  display: block;
  margin: 0.5rem 0;
  font-size: 1.08rem;
}

.insight-board span {
  color: var(--muted);
  line-height: 1.6;
}

.testimonial-card {
  padding: 2rem;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 236, 0.84)),
    linear-gradient(135deg, rgba(233, 100, 67, 0.12), rgba(59, 143, 138, 0.08));
}

.quote {
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.quote-meta {
  margin-top: 1.2rem;
}

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

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

.faq-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 1.5rem;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 0 1.35rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(31, 34, 48, 0.06);
  box-shadow: var(--shadow);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.35rem;
  line-height: 1;
  color: var(--brand-deep);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 0 1.35rem;
  color: var(--muted);
  line-height: 1.65;
}

.price-card {
  position: relative;
  padding: 1.6rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.68);
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(255, 250, 239, 0.98), rgba(255, 242, 220, 0.98));
  transform: translateY(-0.6rem);
}

.featured-badge {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(233, 100, 67, 0.12);
  color: var(--brand-deep);
  font-size: 0.83rem;
  font-weight: 700;
}

.price {
  margin: 0.35rem 0 0.85rem;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}

.price span {
  font-size: 1rem;
  color: var(--muted);
}

.price-card ul {
  margin: 1.3rem 0 1.6rem;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.9rem;
  color: var(--muted);
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--accent));
}

.cta-card {
  grid-template-columns: 1.1fr auto;
  align-items: center;
  padding: 2rem;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(31, 34, 48, 0.96), rgba(53, 76, 82, 0.94));
  color: white;
}

.cta-card .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--accent-soft);
}

.cta-card h2 {
  margin-top: 0.9rem;
}

.cta-copy p {
  max-width: 34rem;
}

.cta-list {
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
}

.cta-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.78);
}

.cta-list li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #fff2c7);
}

.contact-form {
  width: min(100%, 31rem);
  padding: 1.25rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}

.contact-form span {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 0.9rem 1rem;
  font: inherit;
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

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

.contact-form textarea {
  resize: vertical;
  min-height: 7rem;
}

.contact-form option {
  color: var(--text);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.cta-card .button-secondary {
  color: white;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
}

.form-note,
.form-message {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
}

.form-note {
  color: rgba(255, 255, 255, 0.68);
}

.form-message {
  min-height: 1.5rem;
  color: var(--accent-soft);
}

.form-message.is-error {
  color: #ffd1c8;
}

.site-footer {
  padding: 0 0 2.5rem;
}

.footer-wrap {
  grid-template-columns: 1fr auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(31, 34, 48, 0.08);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  align-items: center;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(31, 34, 48, 0.48);
  backdrop-filter: blur(14px);
}

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

body.modal-open {
  overflow: hidden;
}

.login-modal {
  position: relative;
  width: min(100%, 34rem);
  padding: 1.5rem;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 250, 243, 0.94)),
    linear-gradient(135deg, rgba(255, 190, 92, 0.14), rgba(59, 143, 138, 0.08));
}

.login-modal h2 {
  margin: 1rem 0 0;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.login-modal-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(31, 34, 48, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

.login-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.login-form label {
  display: grid;
  gap: 0.45rem;
}

.login-form span {
  font-size: 0.92rem;
  font-weight: 600;
}

.login-form input {
  width: 100%;
  border: 1px solid rgba(31, 34, 48, 0.1);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.8);
}

.login-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.3rem;
}

.login-note,
.login-message {
  margin: 0;
  font-size: 0.92rem;
}

.login-note {
  color: var(--muted);
}

.login-message {
  min-height: 1.4rem;
  color: var(--brand-deep);
}

.login-message.is-error {
  color: #b4442b;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes bar-rise {
  from {
    height: 0%;
    opacity: 0.2;
  }
  to {
    height: var(--height);
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .working-layout,
  .workflow-layout,
  .showcase-grid,
  .pricing-grid,
  .faq-layout,
  .cta-card,
  .footer-wrap {
    grid-template-columns: 1fr;
  }

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

  .floating-card {
    position: static;
    max-width: none;
    margin-top: 1rem;
  }

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

@media (max-width: 800px) {
  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    padding: 0.8rem;
    border-radius: 24px;
    background: rgba(255, 252, 247, 0.96);
    backdrop-filter: blur(18px);
  }

  body.menu-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 0.8rem 0.95rem;
    border-radius: 16px;
  }

  .main-nav a:hover {
    background: rgba(233, 100, 67, 0.08);
  }

  .header-cta {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero-proof,
  .metrics-grid,
  .feature-grid,
  .panel-metrics,
  .insight-board,
  .stat-band {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero h1 {
    max-width: none;
  }

  .dashboard-top,
  .chart-panel {
    flex-direction: column;
  }

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

  .chart-copy {
    max-width: none;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100vw - 1.2rem, 100%);
    --radius: 24px;
  }

  .site-header {
    padding: 0.7rem 0;
  }

  .nav-wrap {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .brand-copy span {
    display: none;
  }

  .button,
  .button-small,
  .login-trigger {
    width: 100%;
  }

  .hero-actions,
  .cta-actions,
  .login-actions,
  .footer-links {
    flex-direction: column;
    align-items: stretch;
  }

  .header-actions {
    width: auto;
    margin-left: auto;
  }

  .header-actions .button {
    width: auto;
  }

  .dashboard-main,
  .working-shell,
  .working-panel,
  .metric-card,
  .feature-card,
  .step-card,
  .testimonial-card,
  .price-card,
  .cta-card,
  .login-modal {
    border-radius: 26px;
  }

  .quote {
    font-size: 1.8rem;
  }
}

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

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

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