:root {
  --primary: #00baf2;
  --primary-dark: #09c;
  --secondary: #0b0c10;
  --background: #fff;
  --foreground: #1f2937;
  --muted: #f3f4f6;
  --border: #e5e7eb;
  --radius: 8px;
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

.btn {
  border-radius: 99px;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.2s;
  display: inline-flex;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-1px);
}

.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 1rem;
}

.text-primary {
  color: var(--primary);
}

.font-bold {
  font-weight: 700;
}

/* Header Styles */
.Header-module__9fWxfa__header {
  border-bottom: 1px solid var(--border);
  z-index: 100;
  background: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.Header-module__9fWxfa__wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.Header-module__9fWxfa__logo {
  color: var(--secondary);
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
}

.Header-module__9fWxfa__highlight {
  color: var(--primary);
}

.Header-module__9fWxfa__menu {
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.Header-module__9fWxfa__menu a {
  color: #4b5563;
  font-weight: 500;
  transition: color 0.2s;
}

.Header-module__9fWxfa__menu a:hover {
  color: var(--primary);
}

@media (max-width: 640px) {
  .Header-module__9fWxfa__header {
    padding: 0.75rem 0;
  }
  .Header-module__9fWxfa__wrapper {
    flex-direction: column;
    gap: 0.5rem;
  }
  .Header-module__9fWxfa__logo {
    font-size: 1.1rem;
  }
  .Header-module__9fWxfa__menu {
    gap: 1rem;
    font-size: 0.85rem;
  }
}

/* Hero Section Styles */
.Hero-module__gNeX-G__hero {
  background: linear-gradient(#f0f9ff 0%, #fff 100%);
  align-items: center;
  min-height: 80vh;
  padding: 2rem 0 4rem;
  display: flex;
  overflow: hidden;
}

.Hero-module__gNeX-G__content {
  z-index: 1;
  max-width: 600px;
  margin-bottom: 3rem;
  position: relative;
}

.Hero-module__gNeX-G__title {
  color: var(--secondary);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
}

@media (max-width: 480px) {
  .Hero-module__gNeX-G__title {
    font-size: 2rem;
  }
  .Hero-module__gNeX-G__hero {
    padding: 1rem 0 3rem;
  }
}

.Hero-module__gNeX-G__subtitle {
  color: #4b5563;
  max-width: 90%;
  margin-bottom: 2rem;
  font-size: 1.125rem;
  line-height: 1.6;
}

.Hero-module__gNeX-G__codeBox {
  cursor: pointer;
  background: #fff;
  border: 1px solid rgba(0, 186, 242, 0.2);
  border-radius: 20px;
  width: 100%;
  min-width: auto;
  max-width: 400px;
  padding: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(0, 186, 242, 0.15);
  user-select: none;
}

.Hero-module__gNeX-G__codeBox:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(0, 186, 242, 0.25);
}

.Hero-module__gNeX-G__codeBox:before {
  content: "";
  background: var(--primary);
  width: 4px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.Hero-module__gNeX-G__label {
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  display: block;
}

.Hero-module__gNeX-G__codeDisplay {
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  display: flex;
}

.Hero-module__gNeX-G__code {
  color: var(--secondary);
  letter-spacing: 1px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 2rem;
  font-weight: 800;
}

.Hero-module__gNeX-G__copyBtn {
  color: var(--primary);
  background: rgba(0, 186, 242, 0.1);
  border-radius: 12px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s;
  border: none;
  white-space: nowrap;
}

.Hero-module__gNeX-G__codeBox:hover .Hero-module__gNeX-G__copyBtn {
  background: var(--primary);
  color: #fff;
}

.Hero-module__gNeX-G__copyBtn.copied {
  background: var(--primary);
  color: #fff;
}

.Hero-module__gNeX-G__note {
  color: #9ca3af;
  max-width: 400px;
  margin-top: 1rem;
  font-size: 0.75rem;
}

.Hero-module__gNeX-G__imageWrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.Hero-module__gNeX-G__heroGraphic {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 500px;
  display: flex;
  position: relative;
}

.Hero-module__gNeX-G__heroImage {
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  width: 100%;
  height: auto;
  animation: 6s ease-in-out infinite Hero-module__gNeX-G__float;
}

@keyframes Hero-module__gNeX-G__float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  to {
    transform: translateY(0);
  }
}

.Hero-module__gNeX-G__brandIcon,
.Hero-module__gNeX-G__brandName {
  display: none;
}

@media (min-width: 768px) {
  .Hero-module__gNeX-G__hero {
    padding: 4rem 0;
  }
  .Hero-module__gNeX-G__hero .container {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 4rem;
    display: grid;
  }
  .Hero-module__gNeX-G__content {
    margin-bottom: 0;
  }
  .Hero-module__gNeX-G__title {
    margin-bottom: 1.5rem;
    font-size: 4rem;
  }
  .Hero-module__gNeX-G__subtitle {
    font-size: 1.25rem;
  }
  .Hero-module__gNeX-G__imageWrapper {
    justify-content: flex-end;
  }
}

/* Features Section Styles */
.Features-module__0vMnSW__features {
  background-color: #fff;
  padding: 3rem 0;
}

.Features-module__0vMnSW__heading {
  text-align: center;
  color: var(--secondary);
  margin-bottom: 2rem;
  padding: 0 1rem;
  font-size: 2rem;
}

.Features-module__0vMnSW__grid {
  grid-template-columns: 1fr;
  gap: 2rem;
  display: grid;
}

.Features-module__0vMnSW__card {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
}

.Features-module__0vMnSW__card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.Features-module__0vMnSW__icon {
  margin-bottom: 1.5rem;
  font-size: 3rem;
}

.Features-module__0vMnSW__title {
  color: var(--secondary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.Features-module__0vMnSW__description {
  color: #6b7280;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .Features-module__0vMnSW__features {
    padding: 5rem 0;
  }
  .Features-module__0vMnSW__heading {
    margin-bottom: 3rem;
    font-size: 2.5rem;
  }
  .Features-module__0vMnSW__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .Features-module__0vMnSW__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Steps Section Styles */
.Steps-module__E7v17q__steps {
  background-color: var(--muted);
  padding: 3rem 0;
}

.Steps-module__E7v17q__heading {
  text-align: center;
  color: var(--secondary);
  margin-bottom: 3rem;
  padding: 0 1rem;
  font-size: 2rem;
}

.Steps-module__E7v17q__timeline {
  flex-direction: column;
  gap: 3rem;
  display: flex;
  position: relative;
}

.Steps-module__E7v17q__step {
  text-align: center;
  z-index: 1;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
}

.Steps-module__E7v17q__circle {
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  box-shadow: 0 4px 10px rgba(0, 186, 242, 0.3);
}

.Steps-module__E7v17q__title {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.Steps-module__E7v17q__desc {
  color: #6b7280;
  max-width: 250px;
}

@media (min-width: 768px) {
  .Steps-module__E7v17q__steps {
    padding: 5rem 0;
  }
  .Steps-module__E7v17q__heading {
    margin-bottom: 4rem;
    font-size: 2.5rem;
  }
  .Steps-module__E7v17q__timeline {
    flex-direction: row;
    justify-content: space-between;
  }
  .Steps-module__E7v17q__timeline:before {
    content: "";
    z-index: 0;
    background: #e5e7eb;
    height: 2px;
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
  }
  .Steps-module__E7v17q__step {
    flex: 1;
  }
  .Steps-module__E7v17q__circle {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: #fff;
  }
}

/* FAQ Section Styles */
.FAQ-module__xrt3Fa__faq {
  background-color: #fff;
  padding: 3rem 0;
}

.FAQ-module__xrt3Fa__heading {
  text-align: center;
  color: var(--secondary);
  margin-bottom: 2rem;
  padding: 0 1rem;
  font-size: 2rem;
}

.FAQ-module__xrt3Fa__list {
  max-width: 800px;
  margin: 0 auto;
}

.FAQ-module__xrt3Fa__item {
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
}

.FAQ-module__xrt3Fa__question {
  cursor: pointer;
  padding-right: 2rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  list-style: none;
  position: relative;
}

.FAQ-module__xrt3Fa__question::-webkit-details-marker {
  display: none;
}

.FAQ-module__xrt3Fa__question:after {
  content: "+";
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1;
  position: absolute;
  right: 0;
}

details[open] .FAQ-module__xrt3Fa__question:after {
  content: "-";
}

.FAQ-module__xrt3Fa__answer {
  color: #4b5563;
  padding-top: 1rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .FAQ-module__xrt3Fa__faq {
    padding: 5rem 0;
  }
  .FAQ-module__xrt3Fa__heading {
    margin-bottom: 3rem;
    font-size: 2.5rem;
  }
  .FAQ-module__xrt3Fa__question {
    font-size: 1.125rem;
  }
}

/* Article Link Section */
.ArticleLink-module__haMdFa__section {
  background-color: #fff;
  padding: 4rem 0;
}

.ArticleLink-module__haMdFa__card {
  text-align: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem;
  display: flex;
}

.ArticleLink-module__haMdFa__content h2 {
  color: var(--secondary);
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
}

.ArticleLink-module__haMdFa__content p {
  color: #6b7280;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .ArticleLink-module__haMdFa__card {
    text-align: left;
    flex-direction: row;
    justify-content: space-between;
    padding: 3rem;
  }
  .ArticleLink-module__haMdFa__content {
    max-width: 600px;
  }
}

/* Article Page Styles */
.Article-module__6zcrCW__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.Article-module__6zcrCW__article {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .Article-module__6zcrCW__article {
    padding: 2rem;
  }
}

.Article-module__6zcrCW__title {
  color: var(--secondary);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.Article-module__6zcrCW__meta {
  color: #6b7280;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  font-size: 0.875rem;
  display: flex;
}

.Article-module__6zcrCW__content h2 {
  color: var(--secondary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  font-weight: 700;
}

.Article-module__6zcrCW__content h3 {
  color: #374151;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.Article-module__6zcrCW__content p {
  color: #4b5563;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.8;
}

.Article-module__6zcrCW__content ul,
.Article-module__6zcrCW__content ol {
  color: #4b5563;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.Article-module__6zcrCW__content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.Article-module__6zcrCW__codeBlock {
  border-left: 4px solid var(--primary);
  color: var(--secondary);
  background: #f3f4f6;
  border-radius: 4px;
  margin: 1.5rem 0;
  padding: 1.5rem;
  font-weight: 600;
}

.Article-module__6zcrCW__cta {
  text-align: center;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 8px;
  margin-top: 3rem;
  padding: 2rem;
}

.Article-module__6zcrCW__ctaHeading {
  color: #0284c7;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

/* Footer Styles */
.Footer-module__nhiC3q__footer {
  background-color: var(--secondary);
  color: #fff;
  padding: 4rem 0 2rem;
}

.Footer-module__nhiC3q__content {
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
  display: flex;
}

.Footer-module__nhiC3q__brand h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.Footer-module__nhiC3q__brand p {
  color: #9ca3af;
}

.Footer-module__nhiC3q__links ul {
  margin-top: 1rem;
  list-style: none;
}

.Footer-module__nhiC3q__links li {
  margin-bottom: 0.5rem;
}

.Footer-module__nhiC3q__links a {
  color: #9ca3af;
  transition: color 0.2s;
}

.Footer-module__nhiC3q__links a:hover {
  color: #fff;
}

.Footer-module__nhiC3q__bottom {
  text-align: center;
  color: #9ca3af;
  border-top: 1px solid #374151;
  padding-top: 2rem;
  font-size: 0.875rem;
}

.Footer-module__nhiC3q__disclaimer {
  color: #6b7280;
  margin-top: 0.5rem;
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .Footer-module__nhiC3q__content {
    flex-direction: row;
    justify-content: space-between;
  }
}
