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

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: #f0fdfa;
  color: #0f172a;
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: #0f766e;
  color: #fff;
  z-index: 1000;
  border-radius: 6px;
}

/* NAV */
.nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 40px;
background: white;
position: sticky;
top: 0;
}

.nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #334155;
}


#langToggle {
  cursor: pointer;
  border: 1px solid #cbd5e1;
  background: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
}

#langToggle:focus-visible {
  outline: 2px solid #14b8a6;
  outline-offset: 2px;
}

.nav a:hover,
.nav a:focus-visible {
  color: #0f766e;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  color: #0f766e;
  text-decoration: none;
}

.logo img {
  border-radius: 8px;
  display: block;
}

@media (max-width: 600px) {
  .nav {
    padding: 14px 16px;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
  }

  .nav > .logo {
    flex: 0 0 auto;
  }

  .nav nav {
    flex: 1 1 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 14px;
  }

  .nav a {
    margin: 0;
    font-size: 0.95rem;
  }

  #langToggle {
    margin-left: auto;
  }
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  text-align: left;
  padding: 60px 40px;
}

.hero-content {
  min-width: 0;
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #ccfbf1;
  color: #0f766e;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin: 0 0 1.25rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-top: 0;
}

.hero p {
  font-size: 1.15rem;
  color: #475569;
}

.hero-lead {
  font-size: 1rem !important;
  max-width: 40rem;
  margin: 1rem 0 0;
  color: #64748b !important;
}

.hero-mockup img {
  max-width: 240px;
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  display: block;
}

.cta {
  display: inline-block;
  margin-top: 20px;
  background: #14b8a6;
  color: white;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}

.cta:hover,
.cta:focus-visible {
  background: #0d9488;
}

.badges {
  margin: 1rem 0 0;
}

.badges span {
  margin: 5px 5px 0 0;
  padding: 5px 10px;
  background: #ccfbf1;
  border-radius: 20px;
  font-size: 0.9rem;
  display: inline-block;
}

@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 50px 20px;
    gap: 2rem;
  }

  .hero-mockup {
    order: -1;
    display: flex;
    justify-content: center;
  }

  .hero-mockup img {
    max-width: 190px;
  }

  .hero-proof {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }
}

/* SECTIONS */
section {
padding: 60px 20px;
max-width: 1000px;
margin: auto;
}

.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}

.card {
background: white;
padding: 20px;
border-radius: 12px;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.tags span {
  display: inline-block;
  margin: 5px;
  padding: 8px 12px;
  background: #ccfbf1;
  border-radius: 20px;
}

/* FAQ */
.faq-list {
  margin: 0;
  padding: 0;
}

.faq-item {
  margin-bottom: 1.25rem;
}

.faq-item dt {
  font-weight: 700;
  color: #134e4a;
  margin-bottom: 0.35rem;
}

.faq-item dd {
  margin: 0;
  color: #475569;
}

/* WAITLIST */
.waitlist-intro {
  color: #475569;
  max-width: 36rem;
}

.waitlist-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  margin-top: 1rem;
  max-width: 32rem;
}

.waitlist-form label {
  width: 100%;
  font-weight: 600;
  font-size: 0.9rem;
}

.waitlist-form input[type="email"] {
  flex: 1 1 200px;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 1rem;
}

.waitlist-form button {
  padding: 12px 20px;
  background: #14b8a6;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.waitlist-form button:hover,
.waitlist-form button:focus-visible {
  background: #0d9488;
}

.waitlist-form button:disabled {
  opacity: 0.6;
  cursor: wait;
}

.form-message {
  padding: 14px 16px;
  border-radius: 10px;
  max-width: 36rem;
  margin-top: 1rem;
}

.form-message--success {
  background: #ccfbf1;
  color: #134e4a;
  border: 1px solid #99f6e4;
}

.form-message--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.form-message--setup {
  background: #fffbeb;
  color: #92400e;
  border: 1px solid #fde68a;
}

.form-message a {
  color: inherit;
  font-weight: 600;
}

.form-fallback {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #64748b;
  max-width: 36rem;
}

.form-fallback a {
  color: #0f766e;
}

.hp-field {
  display: none;
}

.contact {
  margin-top: 2rem;
  color: #64748b;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-row {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  align-items: baseline;
}

.contact-row > span:first-child {
  font-weight: 600;
  color: #334155;
  min-width: 6rem;
}

.contact a {
  color: #0f766e;
  font-weight: 500;
}

.contact a:hover,
.contact a:focus-visible {
  color: #0d9488;
}

.contact a[href*="discord"]::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.25em;
  vertical-align: -0.15em;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20.3 4.4c-1.6-.7-3.3-1.2-5.1-1.5-.2.4-.5.9-.7 1.3-1.9-.3-3.7-.3-5.5 0-.2-.4-.4-.9-.7-1.3-1.8.3-3.5.8-5.1 1.5C1.1 8.6.4 12.6.9 16.5c2.1 1.5 4.1 2.4 6.1 3 .5-.7.9-1.4 1.2-2.2-.7-.2-1.3-.5-1.9-.8.2-.1.3-.2.5-.3 3.6 1.7 7.5 1.7 11 0 .2.1.3.2.5.3-.6.3-1.2.6-1.9.8.3.8.7 1.5 1.2 2.2 2-0.6 4-1.5 6.1-3 .6-4.5-.9-8.4-3.5-12.1zM8.6 14.2c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6.8 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  background: white;
}

footer nav a {
  margin: 0 12px;
  color: #475569;
  text-decoration: none;
}

footer nav a:hover,
footer nav a:focus-visible {
  color: #0f766e;
}

/* LEGAL PAGES */
.legal-page {
  padding: 40px 20px 80px;
  max-width: 720px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: #0f766e;
  text-decoration: none;
}

.legal-page h1 {
  margin-top: 0;
}

.legal-page h2 {
  margin-top: 2rem;
  font-size: 1.15rem;
}

.legal-page blockquote {
  margin: 1.5rem 0;
  padding: 14px 20px;
  background: #f0fdfa;
  border-left: 4px solid #14b8a6;
  border-radius: 8px;
  color: #0f172a;
}

.legal-page blockquote p {
  margin: 0;
}

.article-lang {
  margin: 0 0 1rem;
  font-size: 0.9rem;
}

.article-lang a {
  color: #0f766e;
  font-weight: 600;
}

/* STORY (Charly) */
.story-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.story-block {
  display: grid;
  grid-template-columns: 1fr minmax(200px, 280px);
  gap: 2rem;
  align-items: start;
}

.story-text p {
  color: #475569;
  margin: 0 0 1rem;
}

.story-text p:last-child {
  margin-bottom: 0;
}

.story-photo {
  margin: 0;
  text-align: center;
}

.story-photo img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.story-photo figcaption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 600;
}

.grid--compact {
  margin-bottom: 1.5rem;
}

@media (max-width: 700px) {
  .story-block {
    grid-template-columns: 1fr;
  }

  .story-photo {
    order: -1;
  }

  .story-photo img {
    max-width: 220px;
  }
}

/* FEATURE CARD ICONS */
.card-icon {
  width: 44px;
  height: 44px;
  background: #f0fdfa;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: #0f766e;
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

/* PREPARE FOR VET */
.prepare-for-vet {
  background: #f0fdfa;
  border-radius: 12px;
  padding: 24px 28px;
  margin-top: 0;
  border-left: 4px solid #14b8a6;
}

.prepare-for-vet h3 {
  margin-top: 0;
  color: #0f766e;
}

.prepare-for-vet p {
  color: #475569;
  margin: 0;
}

/* ARTICLES HUB */
.articles-hub {
  padding: 40px 20px 80px;
  max-width: 860px;
  margin: 0 auto;
}

.articles-hub h1 {
  margin-top: 0;
  font-size: 2rem;
}

.articles-hub > p {
  color: #475569;
  max-width: 54ch;
  margin-bottom: 0;
}

.articles-hub h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.article-card {
  background: white;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
  margin-bottom: 1rem;
  border: 1px solid #e2e8f0;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.article-card:hover,
.article-card:focus-within {
  border-color: #14b8a6;
  box-shadow: 0 4px 16px rgba(20,184,166,0.12);
}

.article-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.article-card h3 a {
  color: #0f172a;
  text-decoration: none;
}

.article-card h3 a:hover,
.article-card h3 a:focus-visible {
  color: #0f766e;
}

.article-card p {
  color: #475569;
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.article-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.article-tag {
  font-size: 0.8rem;
  background: #ccfbf1;
  color: #0f766e;
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.article-lang-link {
  font-size: 0.85rem;
  color: #64748b;
}

.article-lang-link a {
  color: #0f766e;
  font-weight: 600;
  text-decoration: none;
}

.article-lang-link a:hover {
  text-decoration: underline;
}

.articles-cta {
  background: #f0fdfa;
  border-radius: 12px;
  padding: 28px 24px;
  margin-top: 3rem;
  text-align: center;
  border: 1px solid #99f6e4;
}

.articles-cta p {
  color: #475569;
  margin: 0 0 1rem;
}

.articles-hub .breadcrumb {
  margin-bottom: 2rem;
}

/* SECTION-LEVEL CTA */
.section-cta {
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 0;
}

/* CONDITION TAG LINKS */
.tag-link {
  display: inline-block;
  margin: 5px;
  padding: 8px 12px;
  background: #ccfbf1;
  border-radius: 20px;
  color: #0f766e;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.tag-link:hover,
.tag-link:focus-visible {
  background: #14b8a6;
  color: #fff;
}
