/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/.pnpm/next@14.2.35_react-dom@18.3.1_react@18.3.1/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/.pnpm/next@14.2.35_react-dom@18.3.1_react@18.3.1/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./src/app/globals.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
:root {
  color-scheme: dark;
  --bg: #111312;
  --surface: #1d201e;
  --surface-2: #252925;
  --text: #f5f4ee;
  --muted: #b6b3a8;
  --border: #3a3f3a;
  --accent: #f4f1e8;
  --accent-text: #111312;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button {
  font: inherit;
}

main {
  min-height: 100vh;
}

.siteHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 24px;
}

.brand {
  font-size: 22px;
  font-weight: 800;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
}

.navButton {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  padding: 9px 16px;
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  grid-gap: 48px;
  gap: 48px;
  align-items: center;
  max-width: 1140px;
  margin: 32px auto 0;
  padding: 42px 24px 70px;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.heroButton,
.primaryButton {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: var(--accent-text);
  font-weight: 700;
  cursor: pointer;
}

.heroButton {
  margin-top: 30px;
  padding: 0 22px;
}

.heroPanel {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  padding: 22px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.panelTop {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.panelTop span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #77746b;
}

.heroPanel h2 {
  margin: 0 0 18px;
  font-size: 24px;
}

.heroPanel ul,
.planCard ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.heroPanel li,
.planCard li {
  color: #ddd8ca;
  line-height: 1.8;
}

.heroPanel li::before,
.planCard li::before {
  content: "✓";
  margin-right: 10px;
  color: #9bcf9b;
}

.accountBox {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 18px;
  gap: 18px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px 72px;
}

.accountBox > div,
.planCard {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

.accountBox > div {
  padding: 22px;
}

.label {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.accountBox h2 {
  margin: 0;
  font-size: 24px;
}

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

.pricing {
  border-top: 1px solid var(--border);
  padding: 68px 24px 90px;
}

.sectionTitle {
  max-width: 1140px;
  margin: 0 auto 32px;
  text-align: center;
}

.sectionTitle h2 {
  margin: 0;
  font-size: 40px;
}

.sectionTitle p {
  color: var(--muted);
}

.planGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 20px;
  gap: 20px;
  max-width: 1140px;
  margin: 0 auto;
}

.planCard {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.planCard:nth-child(2) {
  background: var(--surface-2);
  border-color: #5d665c;
}

.planCard h3 {
  margin: 0 0 8px;
  font-size: 28px;
}

.planCard p {
  min-height: 48px;
  margin: 0;
  color: var(--muted);
}

.planCard strong {
  display: block;
  margin-top: 28px;
  font-size: 30px;
}

.primaryButton {
  width: 100%;
  margin-top: 24px;
  padding: 0 16px;
}

.primaryButton:disabled {
  cursor: wait;
  opacity: 0.7;
}

.inlineError {
  margin: 10px 0 0;
  color: #ffb4a8;
  font-size: 14px;
}

@media (max-width: 820px) {
  .siteHeader {
    padding-inline: 18px;
  }

  .hero,
  .accountBox,
  .planGrid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 28px;
    padding-inline: 18px;
  }

  .accountBox,
  .pricing {
    padding-inline: 18px;
  }
}

