:root {
  --bg: #ffedf5;
  --paper: #ffffff;
  --paper-soft: #ffffff;
  --text: #2f2925;
  --muted: #6f665f;
  --line: rgba(47, 41, 37, 0.08);
  --accent: #f2508e;
  --shadow: 0 18px 50px rgba(34, 28, 24, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-shell {
  padding: 36px 18px 56px;
}

.page {
  max-width: 1120px;
  margin: 0 auto;
}

/* HERO */

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 16px;
  flex-wrap: nowrap;
}

.hero-top h1 {
  flex: 1;
  min-width: 0;
}

/* LANGUAGE */

.top-bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.lang-switch {
  display: flex;
  gap: 12px;
  font-size: 13px;
}

.lang-switch a {
  text-decoration: none;
  color: var(--accent);
  font-weight: 500;
}

.lang-switch a:hover {
  opacity: 0.6;
}

/* SUPPORT */

.support-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #111;
  color: white;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  font-size: 14px;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.support-button:hover {
  background: var(--accent);
}

/* SOCIAL */

.social-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 28px;
}

.social-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(47, 41, 37, 0.1);
  background: #fff;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.social-bar a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* CONTENT */

.content-block,
footer {
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.content-block {
  border-radius: var(--radius-xl);
  padding: 28px;
  margin-bottom: 24px;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 4.8vw, 4.6rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

h2 {
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  line-height: 1.15;
}

.lead {
  margin: 0 0 18px;
  font-size: 1.28rem;
  font-weight: 600;
}

p {
  margin: 0 0 16px;
}

/* GRID */

.intro-grid,
.doubt-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
}

.image-stack {
  display: grid;
  gap: 16px;
}

.image-stack img,
.single-image img {
  border-radius: calc(var(--radius-xl) - 10px);
}

/* CARDS */

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
}

.feature-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--line);
}

.text-card,
.connect-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--line);
}

/* LINKS */

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  list-style: none;
  padding: 0;
}

.links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.links a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* FOOTER */

footer {
  border-radius: 999px;
  padding: 16px 22px;
  text-align: center;
  color: #f2508e;
  font-size: 0.95rem;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .intro-grid,
  .doubt-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-top {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-shell {
    padding: 18px 12px 32px;
  }

  .content-block {
    padding: 22px;
  }

  .feature-card,
  .text-card,
  .connect-card {
    padding: 20px;
  }

  .lead {
    font-size: 1.12rem;
  }
}
