:root {
  color-scheme: light;
  --bg-top: #e7e3dd;
  --bg-bottom: #dedad2;
  --surface: rgba(255, 251, 245, 0.9);
  --surface-strong: #f7f5f2;
  --text: #241f1d;
  --muted: #625a53;
  --border: rgba(36, 31, 29, 0.1);
  --border-strong: rgba(36, 31, 29, 0.16);
  --primary-start: #202322;
  --primary-end: #4f8b75;
  --primary-text: #fff8eb;
  --pill: #2a2623;
  --pill-text: #f7f2eb;
  --shadow: 0 24px 60px rgba(36, 31, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(214, 205, 165, 0.56), transparent 22%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  color: var(--text);
  font-family: "Avenir Next", "Trebuchet MS", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.flash-stack {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 1.5rem;
}

.flash {
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(36, 31, 29, 0.08);
  background: rgba(255, 251, 245, 0.9);
  box-shadow: inset 0 0 0 1px rgba(191, 220, 16, 0.22);
}

.flash-notice {
  border-color: rgba(151, 199, 29, 0.8);
  box-shadow:
    inset 0 0 0 1px rgba(191, 220, 16, 0.7),
    0 0 0 3px rgba(191, 220, 16, 0.12);
}

.flash-alert {
  border-color: rgba(151, 199, 29, 0.6);
  box-shadow:
    inset 0 0 0 1px rgba(191, 220, 16, 0.5),
    0 0 0 3px rgba(191, 220, 16, 0.1);
}


.topbar-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

.topbar-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.7;
}

.topbar-nav-link:hover {
  opacity: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
}

.topbar-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--border);
  color: #3f3935;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.page {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.5rem 0 4rem;
  text-align: center;
}

.hero {
  display: block;
}

.soft-panel {
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -3rem -4rem auto;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191, 220, 16, 0.22), transparent 66%);
  pointer-events: none;
}

.hero-brandline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.logo {
  width: 3.5rem;
  height: 3.5rem;
  display: block;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--pill);
  color: var(--pill-text);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.45rem 0.8rem;
  text-transform: uppercase;
}

.eyebrow {
  margin: 1.25rem 0 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #5f5750;
  font-weight: 700;
}

h1 {
  margin: 0.6rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 100%;
}

.headline-highlight {
  position: relative;
  display: inline-block;
  padding: 0 0.08em;
  z-index: 0;
}

.headline-highlight::before {
  content: "";
  position: absolute;
  left: -0.08em;
  right: -0.08em;
  bottom: 0.04em;
  height: 0.54em;
  border-radius: 999px;
  background:
    radial-gradient(circle at 8px 100%, rgba(191, 220, 16, 0.72) 7px, transparent 7.5px)
      0 0 / 16px 100% repeat-x,
    linear-gradient(0deg, rgba(191, 220, 16, 0.62), rgba(191, 220, 16, 0.62));
  transform: rotate(-1.8deg);
  z-index: -1;
}

.lead {
  margin: 1rem 0 0;
  max-width: 48rem;
  color: var(--muted);
  font-size: 1.02rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.2rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 120ms ease, box-shadow 120ms ease, opacity 120ms ease;
}

.button-primary {
  background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
  color: var(--primary-text);
  box-shadow: 0 12px 24px rgba(36, 31, 29, 0.18);
}

.button-secondary {
  background: var(--surface-strong);
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.button-primary:hover,
.button-secondary:hover {
  transform: translateY(-1px);
}

.button-disabled {
  cursor: not-allowed;
  opacity: 0.74;
}

.hint {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.screenshot-placeholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(36, 31, 29, 0.08);
  color: #403934;
  padding: 0.35rem 0.7rem;
  font-size: 0.8rem;
}

.screenshots,
.feature-card {
  border: 1px solid rgba(36, 31, 29, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.screenshots {
  margin-top: 1.1rem;
  padding: clamp(1.25rem, 2.6vw, 2rem);
  background:
    radial-gradient(circle at top right, rgba(108, 191, 155, 0.18), transparent 28%),
    rgba(255, 251, 245, 0.92);
}

.pricing {
  margin-top: 1.1rem;
  padding: clamp(1.25rem, 2.6vw, 2rem);
}

.section-heading {
  max-width: 62rem;
  margin: 0 auto;
  padding: 0.5rem 0 1rem;
}

.section-heading h2 {
  margin: 0.55rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.04;
}

.section-heading p:last-child {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.75fr);
  gap: 1rem;
}

.screenshot-stack {
  display: grid;
  gap: 1rem;
}

.screenshot-frame {
  padding: 0.7rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
}

.screenshot-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.screenshot-frame-primary,
.screenshot-image-primary {
  min-height: 28rem;
}

.screenshot-image-small {
  min-height: 13.1rem;
}

.feature-card {
  padding: 0.95rem 1rem;
}

.feature-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid rgba(36, 31, 29, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  text-align: left;
}

.pricing-card-featured {
  background:
    radial-gradient(circle at top right, rgba(108, 191, 155, 0.16), transparent 38%),
    rgba(255, 251, 245, 0.9);
  border-color: rgba(79, 139, 117, 0.28);
  box-shadow: 0 18px 36px rgba(36, 31, 29, 0.08);
}

.pricing-card__header {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pricing-card__header h3 {
  margin: 0;
  font-size: 1.3rem;
}

.pricing-card__header p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.pricing-card__price {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  justify-content: flex-start;
}

.pricing-card__price strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  line-height: 0.95;
}

.pricing-card__price span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.25;
  padding-top: 0.2rem;
}

.pricing-card__price-note {
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.pricing-card__price-note strong {
  font-family: inherit;
  font-size: 1rem;
  color: #403934;
  font-weight: 700;
  line-height: 1.2;
}

.pricing-card__features {
  text-align: left;
}

.pricing-card__features p {
  margin: 0 0 0.6rem;
  color: #403934;
  font-weight: 700;
}

.pricing-card__features ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.pricing-card__features li + li {
  margin-top: 0.45rem;
}

.pricing-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  margin-top: auto;
  padding: 0 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
  color: var(--primary-text);
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 120ms ease,
    box-shadow 120ms ease,
    opacity 120ms ease,
    border-color 120ms ease,
    background 120ms ease,
    color 120ms ease;
}

.pricing-card__button-secondary {
  background: var(--surface-strong);
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.contact-request__form {
  display: grid;
  gap: 0.75rem;
  margin-top: auto;
}

.contact-request__input {
  width: 100%;
  min-height: 3rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

.contact-request__submit {
  width: 100%;
  border: 1px solid var(--border-strong);
  cursor: not-allowed;
  opacity: 0.62;
  box-shadow: none;
}

.contact-request__submit.is-ready {
  border-color: rgba(151, 199, 29, 0.72);
  background: linear-gradient(135deg, #202322, #6cbf9b);
  color: var(--primary-text);
  cursor: pointer;
  opacity: 1;
  box-shadow:
    inset 0 0 0 1px rgba(191, 220, 16, 0.3),
    0 10px 22px rgba(80, 128, 94, 0.22);
}

.contact-request__submit.is-ready:hover {
  transform: translateY(-1px);
}

.contact-request__submit:disabled {
  pointer-events: none;
}

@media (max-width: 900px) {
  .screenshot-grid,
  .hero-features,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar-inner {
    min-height: auto;
    padding: 0.9rem 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar-pill {
    font-size: 0.68rem;
  }

  .page {
    padding-top: 1rem;
  }

  .hero-copy,
  .screenshots,
  .pricing {
    padding: 1.25rem;
    border-radius: 24px;
  }

  .hero-brandline,
  .actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .screenshot-frame-primary,
  .screenshot-image-primary,
  .screenshot-placeholder {
    min-height: 18rem;
  }

  .screenshot-placeholder-small {
    min-height: 10rem;
  }
}

.site-footer {
  text-align: center;
  padding: 2rem 1rem 0rem;
  font-size: 0.85rem;
  color: #000;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
}
