:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --accent-primary: #00b894;
  --accent-secondary: #0984e3;
  --text-primary: #0f1923;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --radius-card: 16px;
  --radius-button: 10px;
  --shadow-soft: 0 4px 24px rgba(0, 184, 148, 0.08);
  --gradient: linear-gradient(135deg, #00b894, #0984e3);
  --container: min(1120px, calc(100% - 2rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-primary);
  font-family: "Inter", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 4rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(9, 132, 227, 0.03), rgba(0, 184, 148, 0.02));
}

.section-grid {
  position: relative;
  isolation: isolate;
}

.section-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(9, 132, 227, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 184, 148, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1), transparent 90%);
  pointer-events: none;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.7rem;
  color: var(--accent-secondary);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.text-white {
  color: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.75rem 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(248, 250, 252, 0.84);
  box-shadow: 0 10px 28px rgba(9, 25, 35, 0.08);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--gradient);
  font-size: 1rem;
}

.logo-text {
  color: var(--text-primary);
  font-size: 1.1rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text-primary);
}

.nav-cta {
  margin-left: 0.25rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  background: #ffffff;
  border-radius: 10px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px auto;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  max-width: 16ch;
}

.hero-subtitle {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: clamp(1rem, 2.7vw, 1.2rem);
  max-width: 60ch;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.trust-row {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.88rem;
}

.hero-orb {
  position: relative;
  min-height: 300px;
}

.orb-shape {
  position: absolute;
  inset: 12% 8% 0;
  border-radius: 48% 52% 54% 46% / 47% 43% 57% 53%;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.45), transparent 42%),
    linear-gradient(135deg, rgba(0, 184, 148, 0.65), rgba(9, 132, 227, 0.85));
  filter: drop-shadow(0 24px 30px rgba(9, 132, 227, 0.2));
}

.orb-card {
  position: absolute;
  right: 0;
  bottom: 1.2rem;
  width: min(310px, 90%);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.orb-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.orb-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-button);
  padding: 0.72rem 1rem;
  font-weight: 700;
  font-size: 0.93rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gradient {
  background: var(--gradient);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(9, 132, 227, 0.24);
}

.btn-gradient:hover {
  box-shadow: 0 16px 32px rgba(9, 132, 227, 0.3);
}

.btn-outline {
  border-color: var(--border);
  background: #ffffff;
  color: var(--text-primary);
}

.btn-outline:hover {
  border-color: var(--accent-secondary);
}

.btn-light {
  background: #ffffff;
  color: var(--text-primary);
}

.btn-block {
  width: 100%;
  min-height: 52px;
  font-size: 0.98rem;
}

.section-head {
  margin-bottom: 1.8rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
}

.section-head p {
  margin-top: 0.6rem;
  color: var(--text-muted);
  max-width: 58ch;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.card-grid-3 {
  grid-template-columns: 1fr;
}

.info-card,
.article-card,
.blog-card,
.resource-card,
.offer-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--surface);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover,
.article-card:hover,
.blog-card:hover,
.resource-card:hover,
.offer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 184, 148, 0.48);
  box-shadow:
    0 10px 30px rgba(9, 132, 227, 0.14),
    0 0 0 1px rgba(0, 184, 148, 0.2);
}

.icon-chip {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  background: var(--gradient);
  font-size: 1.3rem;
}

.info-card h3,
.article-card h3,
.blog-card h2,
.resource-card h3,
.offer-card h3 {
  font-size: 1.18rem;
}

.info-card p,
.article-card p,
.blog-card p,
.resource-card p,
.offer-card p {
  margin-top: 0.65rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.article-card a,
.blog-meta a {
  margin-top: 0.9rem;
  display: inline-flex;
  color: var(--accent-secondary);
  font-weight: 700;
}

.article-category {
  margin-bottom: 0.85rem;
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
}

.article-category.nutrition,
.badge.nutrition,
.category-top.nutrition {
  background: #00b894;
}

.article-category.sleep,
.badge.sleep,
.category-top.sleep {
  background: #0984e3;
}

.article-category.gut,
.badge.gut,
.category-top.gut {
  background: #16a085;
}

.badge.mental,
.category-top.mental {
  background: #6c5ce7;
}

.badge.remedies,
.category-top.remedies {
  background: #2d98da;
}

.newsletter-banner {
  border-radius: var(--radius-card);
  background: var(--gradient);
  color: #ffffff;
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
  box-shadow: 0 16px 32px rgba(9, 132, 227, 0.22);
}

.newsletter-banner h2 {
  margin-top: 0.15rem;
  font-size: clamp(1.3rem, 2.8vw, 2rem);
}

.newsletter-banner p {
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.4rem;
}

.banner-form {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.banner-form input {
  flex: 1 1 220px;
  min-height: 48px;
  border: none;
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.banner-form input:focus,
.lead-form input:focus {
  outline: 2px solid rgba(9, 132, 227, 0.3);
  outline-offset: 1px;
}

.banner-success {
  display: none;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
}

.banner-success.show {
  display: inline-flex;
}

.success-dot {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--accent-primary);
  background: #ffffff;
}

.page-hero {
  padding: 4.4rem 0 2.2rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.page-hero p {
  margin-top: 0.7rem;
  color: var(--text-muted);
  max-width: 58ch;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}

.filter-pill {
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text-muted);
  border-radius: 999px;
  font-weight: 700;
  padding: 0.55rem 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-pill:hover {
  color: var(--text-primary);
  border-color: rgba(9, 132, 227, 0.45);
}

.filter-pill.is-active {
  border-color: transparent;
  background: var(--gradient);
  color: #ffffff;
}

.blog-grid .blog-card {
  padding: 0;
  overflow: hidden;
}

.category-top {
  height: 8px;
}

.blog-card .badge,
.blog-card h2,
.blog-card p,
.blog-meta {
  margin-left: 1.1rem;
  margin-right: 1.1rem;
}

.blog-card .badge {
  margin-top: 1rem;
}

.badge {
  display: inline-flex;
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.24rem 0.64rem;
}

.blog-card h2 {
  font-size: 1.1rem;
  margin-top: 0.8rem;
}

.blog-card p {
  min-height: 3.1em;
}

.blog-meta {
  margin: 1rem 1.1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.blog-card.is-hidden {
  display: none;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.4rem;
}

.page-link {
  border: 1px solid var(--border);
  background: #ffffff;
  border-radius: 9px;
  padding: 0.5rem 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

.page-link.is-current,
.page-link:hover {
  color: var(--text-primary);
  border-color: rgba(9, 132, 227, 0.45);
}

.notice-box {
  margin-bottom: 1.4rem;
  border: 1px solid #d6eaf9;
  background: #f0f9ff;
  border-radius: 12px;
  padding: 1rem;
  color: #2d4456;
}

.resource-section + .resource-section {
  margin-top: 2rem;
}

.section-title {
  margin-bottom: 0.9rem;
  font-size: clamp(1.2rem, 2.8vw, 1.6rem);
}

.resource-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.offer-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.offer-card .btn {
  align-self: flex-start;
}

.resource-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(0, 184, 148, 0.16), rgba(9, 132, 227, 0.2));
}

.pill-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #ffffff;
}

.pill-tag.green {
  background: #00b894;
}

.pill-tag.blue {
  background: #0984e3;
}

.newsletter-page {
  padding-top: 4.4rem;
}

.newsletter-shell {
  max-width: 600px;
  margin-inline: auto;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 20px;
  padding: clamp(1.2rem, 4vw, 2rem);
  box-shadow: var(--shadow-soft);
}

.badge-gradient {
  display: inline-flex;
  align-self: flex-start;
  background: var(--gradient);
  color: #ffffff;
  border-radius: 999px;
  padding: 0.32rem 0.75rem;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.newsletter-shell h1 {
  margin-top: 0.8rem;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
}

.newsletter-subtitle {
  margin-top: 0.75rem;
  color: var(--text-muted);
}

.guide-mockup {
  margin-top: 1.2rem;
  padding: 1.2rem;
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(0, 184, 148, 0.1), rgba(9, 132, 227, 0.11));
}

.guide-cover {
  border-radius: 12px;
  background: var(--gradient);
  padding: 1.2rem;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(9, 132, 227, 0.2);
}

.guide-cover span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.guide-cover h2 {
  margin-top: 0.55rem;
  font-size: 1.2rem;
}

.inside-list {
  margin-top: 1.3rem;
}

.inside-list h2 {
  font-size: 1.2rem;
}

.inside-list li {
  margin-top: 0.65rem;
  color: #344b5d;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.gradient-check {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gradient);
  color: #ffffff;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.lead-form {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.45rem;
}

.lead-form label {
  font-weight: 600;
  font-size: 0.88rem;
}

.lead-form input {
  min-height: 48px;
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 0.8rem 0.9rem;
  font-size: 0.95rem;
}

.form-error {
  min-height: 1.2rem;
  font-size: 0.82rem;
  color: #d63031;
}

.form-trust {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.thank-you-state {
  display: none;
  margin-top: 1.4rem;
  text-align: center;
  border: 1px solid #d6f5ee;
  background: #f5fffc;
  border-radius: 14px;
  padding: 1.2rem;
}

.thank-you-state.show {
  display: block;
  animation: fadeUp 0.5s ease;
}

.admin-shell {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: clamp(1rem, 3vw, 1.5rem);
}

.admin-top {
  display: grid;
  gap: 0.5rem;
}

.admin-top label {
  font-weight: 700;
  font-size: 0.88rem;
}

.admin-top input {
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
}

.admin-status {
  min-height: 1.3rem;
  margin-top: 0.55rem;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.86rem;
}

.admin-tabs {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.admin-tab {
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text-muted);
  border-radius: 999px;
  font-weight: 700;
  padding: 0.5rem 0.9rem;
  cursor: pointer;
}

.admin-tab.is-active {
  background: var(--gradient);
  border-color: transparent;
  color: #ffffff;
}

.admin-panel {
  display: none;
  margin-top: 1.1rem;
}

.admin-panel.is-active {
  display: block;
}

.admin-panel h2 {
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
}

.admin-form {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fbfdff;
  padding: 0.95rem;
  display: grid;
  gap: 0.5rem;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  border: 1px solid var(--border);
  border-radius: 10px;
  min-height: 44px;
  padding: 0.65rem 0.8rem;
  font: inherit;
}

.admin-form textarea {
  min-height: 82px;
  resize: vertical;
}

.admin-inline-check {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-weight: 600;
}

.admin-inline-check input {
  min-height: 16px;
}

.admin-form-actions {
  margin-top: 0.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.admin-list {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.55rem;
}

.admin-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
  padding: 0.75rem;
  display: grid;
  gap: 0.35rem;
}

.admin-item h3 {
  font-size: 1rem;
}

.admin-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.admin-item small {
  color: #7d8c99;
  font-size: 0.8rem;
}

.admin-item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.3rem;
}

.btn.btn-danger {
  border-color: #ffc9c9;
  background: #fff5f5;
  color: #d63031;
}

.btn.btn-danger:hover {
  border-color: #ffb0b0;
}

.check-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.8rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid rgba(0, 184, 148, 0.3);
}

.animated-check {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--gradient);
  transform: scale(0.4);
  opacity: 0;
  animation: checkPop 0.45s ease forwards;
  animation-delay: 0.12s;
}

@keyframes checkPop {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }
  70% {
    transform: scale(1.15);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.footer-grid {
  padding: 2rem 0 1rem;
  display: grid;
  gap: 1.2rem;
}

.footer-logo {
  margin-bottom: 0.7rem;
}

.site-footer p {
  color: var(--text-muted);
}

.footer-links,
.footer-social {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.footer-links a,
.footer-social a {
  color: var(--text-muted);
  font-weight: 600;
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 0.95rem 0 1.3rem;
}

.footer-bottom small {
  color: var(--text-muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll:nth-child(2) {
  transition-delay: 0.07s;
}

.animate-on-scroll:nth-child(3) {
  transition-delay: 0.14s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 760px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .newsletter-banner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .newsletter-banner > div:first-child {
    grid-column: 1 / -1;
  }

  .banner-form {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1.25fr 1fr auto;
    align-items: start;
  }

  .admin-top {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

@media (min-width: 980px) {
  .card-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 899px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 20px 35px rgba(9, 25, 35, 0.12);
    padding: 0.9rem;
    display: grid;
    gap: 0.5rem;
    transform: translateY(-4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    padding: 0.42rem 0.2rem;
  }

  .nav-cta {
    margin-top: 0.35rem;
  }
}

@media (min-width: 900px) {
  .nav {
    position: static;
  }
}
