@import url("./tokens.css?v=20260715-case-isolation-1");
@import url("./layout.css?v=20260715-case-isolation-1");
@import url("./components.css?v=20260715-case-isolation-1");
@import url("./responsive.css?v=20260715-case-isolation-1");

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--surface);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fbfbf8 0%, var(--surface) 72%, #dfe5dc 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(244, 246, 241, 0.08), rgba(244, 246, 241, 0.18)),
    var(--brand-background-active) center center / cover no-repeat;
  pointer-events: none;
}

button,
input,
textarea {
  font: inherit;
}

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

button {
  min-height: 2.55rem;
  border: 1px solid rgba(14, 31, 25, 0.32);
  border-radius: 8px;
  background: rgba(14, 31, 25, 0.94);
  color: #f8faf5;
  padding: 0 0.9rem;
  font-weight: 760;
  cursor: pointer;
}

button:hover {
  background: #263a30;
}

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

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  outline: none;
  padding: 0.74rem 0.78rem;
}

textarea {
  min-height: 5rem;
  max-height: 13rem;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(69, 126, 168, 0.64);
}
