:root {
  --bg: #0f0f12;
  --surface: #16161a;
  --surface-strong: #16161a;
  --surface-soft: #1e1e24;
  --border: #2a2a33;
  --border-strong: #2a2a33;
  --text: #ffffff;
  --muted: #b3b3b3;
  --muted-soft: #6e6e73;
  --accent: #00b3ff;
  --accent-strong: #66d6ff;
  --success: #00b3ff;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.glow {
  display: none;
}

.glow-one {
  top: 60px;
  left: -40px;
  width: 280px;
  height: 280px;
  background: rgba(44, 125, 255, 0.26);
}

.glow-two {
  top: 540px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: rgba(111, 214, 255, 0.12);
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(15, 15, 18, 0.9);
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 84px;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 10px;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.brand-text {
  font-family: "Montserrat", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-width: 0;
  color: var(--muted);
}

.lang-switch-menu {
  display: none;
}

.nav-links a {
  transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-side {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-soft);
}

.lang-switch.lang-switch-menu {
  display: none;
}

.lang-button {
  min-width: 42px;
  height: 36px;
  padding: 0 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.lang-button:hover,
.lang-button.active {
  background: rgba(0, 179, 255, 0.16);
  color: var(--text);
}

.nav-cta {
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  background: var(--surface-soft);
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface-soft);
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: white;
  border-radius: 999px;
}

.hero {
  padding-top: 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 48px;
  align-items: center;
}

.hero-grid > *,
.lifestyle-card > *,
.cta-card > *,
.footer-layout > *,
.team-member-card > *,
.screen-row > * {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--accent);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.hero-copy h1,
.section-heading h2,
.lifestyle-card h2,
.cta-card h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 8vw, 5.5rem);
}

.hero-text,
.section-heading p,
.info-panel p,
.feature-card p,
.screen-tile p,
.quality-item p,
.cta-card p,
.footer-copy,
.metric-card span,
.lifestyle-card p,
.creator-card p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: 1.08rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: var(--accent);
  box-shadow: 0 14px 28px rgba(0, 179, 255, 0.2);
}

.button-secondary {
  border-color: var(--border-strong);
  background: var(--surface-soft);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.metric-card,
.info-panel,
.feature-card,
.screen-tile,
.quality-item,
.creator-card,
.team-member-card,
.cta-card,
.lifestyle-card,
.phone-frame,
.floating-panel {
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.metric-card {
  padding: 22px;
  border-radius: var(--radius-md);
}

.metric-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: min(100%, 396px);
  padding: 18px;
  border-radius: 30px;
  position: relative;
}

.phone-main {
  transform: rotate(-5deg);
}

.phone-notch {
  width: 132px;
  height: 28px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: #0a0a0d;
}

.screen {
  border-radius: 22px;
  padding: 20px;
  min-height: 640px;
  background: var(--surface-soft);
}

.screen-top,
.screen-row,
.footer-card {
  display: flex;
  gap: 12px;
}

.screen-top,
.footer-card {
  flex-wrap: wrap;
}

.status-pill,
.tile-tag,
.creator-kind {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--surface-soft);
  color: var(--text);
  font-size: 0.82rem;
}

.status-pill.active {
  background: rgba(0, 179, 255, 0.18);
  color: var(--text);
}

.screen-card {
  margin-top: 14px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.screen-card.large {
  padding: 24px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.screen-card h3 {
  margin: 10px 0 0;
  font-size: 1.65rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.screen-row {
  margin-top: 14px;
  flex-wrap: wrap;
}

.screen-card.compact {
  flex: 1;
  padding: 18px;
  min-width: 0;
}

.screen-card.highlight {
  background: rgba(0, 179, 255, 0.12);
}

.screen-card.footer-card {
  justify-content: flex-start;
  align-items: center;
  padding: 16px 18px;
}

.screen-label {
  margin: 0;
  color: var(--accent-strong);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.avatars {
  display: flex;
  gap: 10px;
}

.avatars span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
}

.floating-panel {
  position: absolute;
  width: 220px;
  padding: 18px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

.floating-panel span {
  color: var(--accent-strong);
  font-size: 0.84rem;
}

.floating-panel strong {
  display: block;
  margin-top: 8px;
  line-height: 1.4;
}

.floating-panel-top {
  top: 84px;
  left: -8px;
}

.floating-panel-bottom {
  right: 0;
  bottom: 52px;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.lifestyle-card h2,
.cta-card h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.section-heading p {
  margin-top: 18px;
}

.why-grid,
.feature-grid,
.showcase-grid,
.quality-grid,
.creators-layout {
  display: grid;
  gap: 22px;
  margin-top: 36px;
}

.why-grid,
.feature-grid,
.showcase-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quality-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.creators-layout {
  grid-template-columns: 1fr;
  justify-items: center;
}

.info-panel,
.feature-card,
.screen-tile,
.quality-item,
.creator-card {
  border-radius: var(--radius-lg);
  padding: 28px;
}

.info-panel h3,
.feature-card h3,
.screen-tile h3,
.creator-card h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
  letter-spacing: -0.02em;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: rgba(44, 125, 255, 0.16);
  color: #9ec6ff;
  font-weight: 700;
}

.lifestyle-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 32px;
  align-items: center;
  padding: 42px;
  border-radius: var(--radius-xl);
}

.screen-tile {
  min-height: 220px;
}

.quality-item strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.5;
}

.creators-heading {
  max-width: 880px;
}

.creators-illustration {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: min(100%, 620px);
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.creators-illustration-card {
  width: min(100%, 320px);
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface-soft);
  color: var(--text);
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.creators-illustration-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 179, 255, 0.34);
}

.creators-illustration-line {
  width: 2px;
  height: 46px;
  background: rgba(0, 179, 255, 0.4);
}

.creators-illustration-company img {
  width: min(100%, 220px);
  max-height: 66px;
  object-fit: contain;
}

.creators-illustration-team img {
  width: min(100%, 188px);
  max-height: 74px;
  object-fit: contain;
}

.creators-illustration-app img {
  width: 54px;
  height: 54px;
  border-radius: 12px;
}

.creators-illustration-app-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.creators-illustration-app-mark span {
  font-size: 1.08rem;
}

.team-members-section {
  margin-top: 40px;
}

.team-members-heading {
  max-width: 920px;
}

.team-members-heading h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.team-members-heading p {
  margin-top: 16px;
}

.team-members-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.team-member-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.team-member-card:first-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  align-items: center;
  gap: 28px;
}

.team-member-card:first-child .team-member-photo-wrap {
  aspect-ratio: auto;
  min-height: 100%;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.team-member-card:first-child .team-member-content {
  justify-content: center;
}

.team-member-card:first-child .team-member-photo {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
}

.team-member-photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px;
  background: var(--surface-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.team-member-photo {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.team-member-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(124, 168, 255, 0.22);
  color: var(--muted);
  text-align: center;
  padding: 24px;
}

.team-member-photo-placeholder span {
  max-width: 140px;
  line-height: 1.5;
}

.team-member-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.team-member-content h4 {
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.team-member-role {
  color: var(--accent-strong);
  font-weight: 600;
  line-height: 1.5;
}

.team-member-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.final-cta {
  padding-top: 24px;
  padding-bottom: 110px;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 42px;
  border-radius: var(--radius-xl);
}

.site-footer {
  padding: 0 0 56px;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 24px;
  align-items: start;
  padding-top: 28px;
  border-top: 1px solid rgba(124, 168, 255, 0.1);
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-copy {
  max-width: 480px;
  margin: 0;
}

.footer-links,
.footer-meta {
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.footer-signature-wrap {
  margin-top: 18px;
}

.footer-signature {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(124, 168, 255, 0.08);
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-signature-label {
  text-transform: lowercase;
  letter-spacing: 0.04em;
}

.footer-signature-logos {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-signature-logo {
  display: block;
  width: auto;
  object-fit: contain;
  opacity: 0.92;
}

.footer-signature-logo-company {
  max-width: 104px;
  max-height: 22px;
}

.footer-signature-logo-team {
  max-width: 88px;
  max-height: 26px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .navbar {
    grid-template-columns: auto 1fr;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-links {
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .nav-side {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .hero-grid,
  .lifestyle-card,
  .cta-card,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .why-grid,
  .feature-grid,
  .showcase-grid,
  .quality-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-member-card:first-child {
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  }

  .team-member-card:first-child .team-member-photo {
    max-height: 360px;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-card > * {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .section {
    padding: 88px 0;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.5rem, 5.8vw, 4rem);
  }

  .hero-text,
  .section-heading p,
  .team-member-content p,
  .creator-card p,
  .info-panel p,
  .feature-card p,
  .screen-tile p,
  .quality-item p,
  .cta-card p {
    font-size: 1rem;
    line-height: 1.64;
  }

  .section-heading h2,
  .lifestyle-card h2,
  .cta-card h2 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
  }

  .info-panel,
  .feature-card,
  .screen-tile,
  .quality-item,
  .creator-card,
  .team-member-card,
  .metric-card {
    padding: 22px;
  }

  .screen {
    padding: 18px;
    min-height: 560px;
  }

  .screen-card.large {
    padding: 20px;
    min-height: 210px;
  }

  .screen-card h3 {
    font-size: 1.45rem;
  }

  .floating-panel {
    width: 190px;
    padding: 14px;
  }

  .quality-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .team-members-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .creators-layout {
    grid-template-columns: 1fr;
  }

  .team-member-card:first-child {
    grid-column: 1 / -1;
  }

  .team-member-card:first-child .team-member-photo {
    max-height: 320px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 72px 0;
  }

  .navbar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    position: relative;
  }

  .nav-toggle {
    display: block;
  }

  .nav-side {
    grid-column: auto;
    justify-content: flex-end;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    z-index: 10;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(8, 15, 27, 0.98);
    box-shadow: var(--shadow);
    max-height: calc(100vh - 110px);
    overflow-y: auto;
  }

  .nav-links a,
  .nav-cta {
    width: 100%;
  }

  .lang-switch.lang-switch-menu {
    display: inline-flex;
    width: 100%;
    justify-content: space-between;
    margin-top: 4px;
  }

  .lang-switch.lang-switch-menu .lang-button {
    flex: 1;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-grid {
    gap: 26px;
  }

  .hero-copy {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-copy .eyebrow,
  .section-heading .eyebrow,
  .team-members-heading .eyebrow,
  .creators-heading .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-actions {
    justify-content: center;
  }

  .hero-metrics {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    width: min(100%, 420px);
    margin: 0 auto;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .section-heading,
  .creators-heading,
  .team-members-heading {
    margin: 0 auto;
    text-align: center;
  }

  .hero-metrics,
  .why-grid,
  .feature-grid,
  .showcase-grid,
  .quality-grid,
  .creators-layout,
  .team-members-grid {
    grid-template-columns: 1fr;
  }

  .creators-layout {
    justify-items: center;
  }

  .creators-illustration {
    width: min(100%, 520px);
  }

  .team-member-card:first-child {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team-member-card:first-child .team-member-photo-wrap {
    aspect-ratio: auto;
    min-height: 0;
    padding: 12px;
  }

  .team-member-card:first-child .team-member-photo {
    max-height: 300px;
  }

  .phone-main {
    transform: none;
  }

  .floating-panel {
    position: static;
    width: 100%;
    margin-top: 0;
  }

  .screen {
    min-height: auto;
    padding: 16px;
  }

  .screen-card.footer-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-card,
  .lifestyle-card,
  .info-panel,
  .feature-card,
  .screen-tile,
  .quality-item,
  .creator-card,
  .team-member-card,
  .metric-card {
    padding: 24px;
  }

  .footer-layout {
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(calc(100% - 22px), var(--container));
  }

  .hero {
    padding-top: 34px;
  }

  .eyebrow {
    padding: 7px 12px;
    margin-bottom: 16px;
    font-size: 0.78rem;
  }

  .hero-copy h1 {
    font-size: 2.5rem;
    line-height: 1.04;
  }

  .hero-copy {
    max-width: 100%;
  }

  .section-heading h2,
  .lifestyle-card h2,
  .cta-card h2,
  .team-members-heading h3 {
    font-size: 1.82rem;
    line-height: 1.12;
  }

  .hero-text,
  .section-heading p,
  .team-member-content p,
  .creator-card p,
  .info-panel p,
  .feature-card p,
  .screen-tile p,
  .quality-item p,
  .cta-card p,
  .footer-copy {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .button,
  .nav-cta {
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.95rem;
  }

  .hero-actions,
  .cta-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .hero-metrics,
  .why-grid,
  .feature-grid,
  .showcase-grid,
  .quality-grid,
  .creators-layout,
  .team-members-grid,
  .footer-layout {
    gap: 16px;
  }

  .team-members-section {
    margin-top: 28px;
  }

  .team-members-grid {
    margin-top: 22px;
  }

  .metric-card,
  .info-panel,
  .feature-card,
  .screen-tile,
  .quality-item,
  .creator-card,
  .team-member-card,
  .cta-card,
  .lifestyle-card {
    padding: 18px;
    border-radius: 16px;
  }

  .feature-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
  }

  .phone-frame {
    width: min(100%, 340px);
    padding: 14px;
    border-radius: 24px;
  }

  .phone-notch {
    width: 108px;
    height: 22px;
    margin-bottom: 12px;
  }

  .screen-card.large {
    min-height: 180px;
    padding: 16px;
  }

  .screen-card.compact,
  .screen-card.footer-card {
    padding: 14px;
  }

  .screen-card h3 {
    font-size: 1.2rem;
  }

  .status-pill,
  .tile-tag,
  .creator-kind,
  .screen-label,
  .floating-panel span {
    font-size: 0.74rem;
  }

  .avatars span {
    width: 38px;
    height: 38px;
  }

  .floating-panel {
    width: 100%;
    padding: 14px;
  }

  .creators-illustration {
    padding: 22px;
  }

  .creators-illustration-card {
    width: 100%;
    min-height: 94px;
    padding: 16px 18px;
  }

  .creator-card,
  .team-member-card {
    gap: 14px;
  }

  .team-member-content h4,
  .info-panel h3,
  .feature-card h3,
  .screen-tile h3,
  .creator-card h3 {
    font-size: 1.08rem;
  }

  .team-member-role,
  .quality-item strong,
  .metric-card strong {
    font-size: 0.95rem;
  }

  .team-member-photo-wrap {
    padding: 10px;
  }

  .cta-card,
  .footer-layout,
  .footer-links,
  .footer-meta {
    text-align: center;
  }

  .footer-layout {
    justify-items: center;
  }

  .footer-signature-wrap {
    margin-top: 14px;
  }

  .footer-signature {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-layout {
    padding-top: 22px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .site-header .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero {
    padding-top: 24px;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: 2.16rem;
  }

  .hero-visual {
    width: min(100%, 340px);
  }

  .section-heading h2,
  .lifestyle-card h2,
  .cta-card h2 {
    font-size: 1.64rem;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .lang-switch {
    width: 100%;
    justify-content: space-between;
  }

  .nav-side > .lang-switch {
    display: none;
  }

  .lang-button {
    flex: 1;
  }

  .nav-side {
    width: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
  }

  .screen-card h3 {
    font-size: 1.06rem;
  }

  .hero-text,
  .section-heading p,
  .team-member-content p,
  .creator-card p {
    font-size: 0.92rem;
    line-height: 1.56;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 20px;
  }

  .hero-metrics {
    margin-top: 24px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .metric-card strong,
  .team-member-role,
  .quality-item strong {
    font-size: 0.92rem;
  }

  .status-pill,
  .tile-tag,
  .creator-kind {
    padding: 6px 10px;
  }

  .creators-illustration {
    padding: 18px;
  }

  .creators-illustration-card {
    width: 100%;
    min-height: 88px;
    font-size: 0.94rem;
  }

  .creators-illustration-company img {
    max-width: 180px;
    max-height: 56px;
  }

  .creators-illustration-team img {
    max-width: 160px;
    max-height: 62px;
  }

  .creators-illustration-app img {
    width: 46px;
    height: 46px;
  }

  .team-member-card {
    padding: 16px;
  }

  .team-member-photo-wrap,
  .team-member-card:first-child .team-member-photo-wrap {
    aspect-ratio: 1 / 1;
  }

  .team-member-card:first-child .team-member-photo-wrap {
    aspect-ratio: auto;
    min-height: 0;
    padding: 12px;
  }

  .team-member-card:first-child .team-member-photo {
    max-height: 360px;
  }

  .team-member-content h4 {
    font-size: 1.02rem;
  }

  .team-members-heading h3 {
    font-size: 1.5rem;
  }

  .team-member-content,
  .creator-card,
  .info-panel,
  .feature-card,
  .screen-tile,
  .quality-item {
    text-align: left;
  }

  .screen-row,
  .screen-top,
  .screen-card.footer-card {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .navbar {
    min-height: 68px;
    gap: 10px;
  }

  .site-header .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-text {
    font-size: 0.92rem;
  }

  .hero-copy h1 {
    font-size: 1.9rem;
  }

  .hero-visual {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

  .metric-card,
  .creator-card,
  .team-member-card,
  .feature-card,
  .screen-tile,
  .quality-item,
  .info-panel,
  .cta-card {
    padding: 15px;
    border-radius: 14px;
  }

  .lang-switch {
    padding: 4px;
  }

  .lang-button {
    min-width: 38px;
    height: 34px;
    padding: 0 8px;
  }

  .eyebrow {
    font-size: 0.72rem;
    padding: 6px 10px;
  }

  .section-heading h2,
  .lifestyle-card h2,
  .cta-card h2,
  .team-members-heading h3 {
    font-size: 1.4rem;
  }

  .hero-text,
  .section-heading p,
  .team-member-content p,
  .creator-card p,
  .info-panel p,
  .feature-card p,
  .screen-tile p,
  .quality-item p,
  .cta-card p,
  .footer-copy {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .button,
  .nav-cta {
    min-height: 44px;
    font-size: 0.9rem;
  }

  .hero-actions,
  .cta-actions {
    gap: 8px;
  }

  .phone-frame {
    width: 100%;
    padding: 12px;
    border-radius: 22px;
  }

  .screen {
    padding: 14px;
  }

  .screen-card.large,
  .screen-card.compact,
  .screen-card.footer-card {
    padding: 12px;
  }

  .screen-card h3,
  .team-member-content h4,
  .info-panel h3,
  .feature-card h3,
  .screen-tile h3,
  .creator-card h3 {
    font-size: 0.98rem;
  }

  .team-member-photo-wrap,
  .team-member-card:first-child .team-member-photo-wrap {
    padding: 8px;
  }

  .team-member-card:first-child .team-member-photo-wrap {
    aspect-ratio: auto;
    min-height: 0;
    padding: 10px;
  }

  .team-member-card:first-child .team-member-photo {
    max-height: 320px;
  }

  .footer-layout,
  .footer-links,
  .footer-meta,
  .cta-card {
    text-align: left;
    justify-items: stretch;
  }

  .footer-signature {
    justify-content: flex-start;
    text-align: left;
    gap: 8px;
  }

  .footer-signature-logo-company {
    max-width: 92px;
    max-height: 20px;
  }

  .footer-signature-logo-team {
    max-width: 78px;
    max-height: 24px;
  }
}
