@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap";
/* [next]/internal/font/google/inter_396b12ce.module.css [app-client] (css) */
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/2c55a0e60120577a-s.2a48534a.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/9c72aa0f40e4eef8-s.18a48cbc.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/ad66f9afd8947f86-s.7a40eb73.woff2") format("woff2");
  unicode-range: U+1F??;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/5476f68d60460930-s.c995e352.woff2") format("woff2");
  unicode-range: U+370-377, U+37A-37F, U+384-38A, U+38C, U+38E-3A1, U+3A3-3FF;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/2bbe8d2671613f1f-s.76dcb0b2.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/1bffadaabf893a1e-s.7cd81963.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/83afe278b6a6bb3c-s.p.3a6ba036.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Inter Fallback;
  src: local(Arial);
  ascent-override: 90.44%;
  descent-override: 22.52%;
  line-gap-override: 0.0%;
  size-adjust: 107.12%;
}

.inter_396b12ce-module__rRjk0G__className {
  font-family: Inter, Inter Fallback;
  font-style: normal;
}

/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --background: #fafafa;
  --foreground: #111;
  --card-bg: #fff;
  --card-border: #eaeaea;
  --card-shadow: 0 4px 12px #0000000d;
  --card-shadow-hover: 0 12px 24px #0000001a;
  --primary: #000;
  --primary-foreground: #fff;
  --secondary: #f4f4f5;
  --secondary-foreground: #18181b;
  --muted: #71717a;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: Inter, sans-serif;
  line-height: 1.5;
}

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

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.page {
  flex-direction: column;
  min-height: 100vh;
  display: flex;
}

.main-content {
  flex: 1;
  padding: 64px 0;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -.02em;
  margin-bottom: .5em;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.5rem;
}

.subtitle {
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 24px;
  font-size: 1.125rem;
}

.card-grid {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 32px;
  display: grid;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  flex-direction: column;
  padding: 32px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.card:hover {
  box-shadow: var(--card-shadow-hover);
  border-color: #d4d4d8;
  transform: translateY(-4px);
}

.card-title {
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.card-price {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 1.25rem;
  font-weight: 600;
}

.card-content {
  color: var(--muted);
  flex: 1;
  margin-bottom: 24px;
}

.btn {
  border-radius: var(--radius-sm);
  transition: var(--transition);
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  display: inline-flex;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background: #27272a;
  transform: scale(1.02);
}

.btn-primary:active {
  transform: scale(.98);
}

.btn-outline {
  border: 1px solid var(--card-border);
  color: var(--foreground);
  background: none;
}

.btn-outline:hover {
  background: var(--secondary);
}

.btn-block {
  width: 100%;
}

.form-group {
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  display: flex;
}

.form-label {
  font-size: .875rem;
  font-weight: 500;
}

.form-input {
  border-radius: var(--radius-sm);
  border: 1px solid var(--card-border);
  background: var(--background);
  width: 100%;
  transition: var(--transition);
  outline: none;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 1rem;
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px #0000001a;
}

.header {
  border-bottom: 1px solid var(--card-border);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  z-index: 10;
  background: #fffc;
  align-items: center;
  height: 80px;
  display: flex;
  position: sticky;
  top: 0;
}

.logo {
  align-items: center;
  display: flex;
}

.logo-img {
  object-fit: contain;
  width: auto;
  height: 48px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: .6s cubic-bezier(.16, 1, .3, 1) forwards fadeIn;
}

.glass {
  -webkit-backdrop-filter: blur(16px);
  background: #ffffffb3;
  border: 1px solid #ffffff80;
}

/*# sourceMappingURL=%5Broot-of-the-server%5D__2dc75fed._.css.map*/