:root {
  --ink: #061326;
  --muted: #667085;
  --paper: #fffdf8;
  --sand: #f7efe2;
  --orange: #ff5623;
  --lime: #c7ff2e;
  --sky: #ccecff;
  --green: #2e8735;
  --line: rgba(6, 19, 38, .14);
  --shadow: 0 24px 70px rgba(47, 31, 13, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
.trust-shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.trust-topbar {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, .94);
  backdrop-filter: blur(18px);
}
.trust-brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 900; }
.trust-brand img { width: 48px; height: 48px; object-fit: contain; }
.trust-brand span { white-space: nowrap; }
.trust-nav { display: flex; gap: 24px; font-weight: 750; font-size: 14px; }
.trust-nav a { text-decoration: none; }
.trust-nav a:hover { color: var(--orange); }
.trust-actions { display: flex; align-items: center; gap: 10px; }
.trust-language-switcher { position: relative; }
.trust-language-switcher summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 74px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(7, 17, 31, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(7, 17, 31, .06);
  cursor: pointer;
  list-style: none;
}
.trust-language-switcher summary span { color: var(--orange); font-size: 20px; line-height: 1; }
.trust-language-switcher summary strong { font-size: 13px; font-weight: 950; }
.trust-language-switcher summary::-webkit-details-marker { display: none; }
.trust-language-panel {
  position: absolute;
  z-index: 30;
  inset-inline-end: 0;
  top: calc(100% + 10px);
  display: grid;
  gap: 4px;
  width: min(290px, calc(100vw - 24px));
  max-height: min(430px, 68vh);
  padding: 10px;
  overflow-y: auto;
  border: 1px solid rgba(7, 17, 31, .12);
  border-radius: 18px;
  background: rgba(255, 249, 239, .98);
  box-shadow: 0 22px 70px rgba(7, 17, 31, .18);
}
.trust-language-panel a {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 850;
}
.trust-language-panel a:hover,
.trust-language-panel a[aria-current="page"] { color: white; background: var(--orange); }
.trust-lang, .trust-login, .trust-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  background: white;
}
.trust-login, .trust-button.primary { color: white; border-color: var(--orange); background: var(--orange); }
.trust-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 64px;
  background:
    radial-gradient(circle at 82% 20%, rgba(199,255,46,.56), transparent 25%),
    linear-gradient(135deg, #fffaf1 0%, #ffe8d8 54%, #dff3ff 100%);
}
.trust-hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 56px; align-items: center; }
.trust-eyebrow { display: inline-flex; padding: 8px 13px; border-radius: 999px; background: var(--lime); font-weight: 900; letter-spacing: .03em; text-transform: uppercase; font-size: 12px; }
.trust-hero h1 { max-width: 780px; margin: 20px 0 18px; font-size: clamp(48px, 6.2vw, 84px); line-height: .94; letter-spacing: -.06em; }
.trust-hero h1 em { color: var(--orange); font-style: normal; }
.trust-hero p { max-width: 710px; margin: 0; color: var(--muted); font-size: 20px; }
.trust-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.trust-button { min-height: 52px; padding: 0 24px; }
.trust-button.secondary { background: rgba(255,255,255,.72); }
.trust-hero-card { position: relative; min-height: 500px; border-radius: 34px; overflow: hidden; box-shadow: var(--shadow); }
.trust-hero-card img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; }
.trust-hero-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(3,12,24,.78)); }
.trust-hero-caption { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 26px; color: white; }
.trust-hero-caption strong { display: block; font-size: 26px; line-height: 1.05; }
.trust-hero-caption span { display: block; margin-top: 8px; opacity: .85; }
.trust-facts { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: -26px; position: relative; z-index: 3; }
.trust-fact { padding: 26px; border: 1px solid var(--line); background: white; }
.trust-fact:first-child { border-radius: 24px 0 0 24px; }
.trust-fact:last-child { border-radius: 0 24px 24px 0; }
.trust-fact strong { display: block; font-size: 18px; line-height: 1.2; }
.trust-fact span { display: block; margin-top: 7px; color: var(--muted); font-size: 14px; }
.trust-section { padding: 86px 0; }
.trust-section.soft { background: var(--sand); }
.trust-section.dark { color: white; background: var(--ink); }
.trust-heading { max-width: 780px; margin-bottom: 34px; }
.trust-kicker { color: var(--orange); font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.trust-heading h2 { margin: 8px 0 12px; font-size: clamp(36px, 5vw, 58px); line-height: 1.02; letter-spacing: -.045em; }
.trust-heading p { margin: 0; color: var(--muted); font-size: 18px; }
.dark .trust-heading p { color: #b8c4d6; }
.role-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.role-card { padding: 30px; border: 1px solid var(--line); border-radius: 26px; background: white; box-shadow: 0 10px 34px rgba(33,24,15,.05); }
.role-card.member { background: #effbff; }
.role-card.partner { background: #f4ffd7; }
.role-number { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: white; font-weight: 950; }
.role-card h3 { margin: 22px 0 8px; font-size: 27px; }
.role-card p { color: var(--muted); }
.role-card ul, .plain-list { margin: 18px 0 0; padding: 0; list-style: none; }
.role-card li, .plain-list li { position: relative; padding: 9px 0 9px 26px; border-top: 1px solid var(--line); }
.role-card li::before, .plain-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 950; }
.flow { display: grid; grid-template-columns: 1fr 54px 1fr 54px 1fr; align-items: stretch; }
.flow-card { padding: 30px; border-radius: 26px; background: white; color: var(--ink); }
.flow-card.accent { background: var(--lime); }
.flow-card h3 { margin: 0 0 10px; font-size: 24px; }
.flow-card p { margin: 0; color: #455064; }
.flow-arrow { display: grid; place-items: center; color: var(--lime); font-size: 34px; font-weight: 900; }
.clarity-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.clarity-card { padding: 30px; border: 1px solid var(--line); border-radius: 26px; background: white; }
.clarity-card h3 { margin-top: 0; font-size: 26px; }
.clarity-card p { color: var(--muted); }
.statement { padding: 20px 22px; margin-top: 16px; border-left: 5px solid var(--orange); border-radius: 4px 16px 16px 4px; background: #fff4ed; }
.matrix { overflow-x: auto; border: 1px solid var(--line); border-radius: 24px; background: white; }
.matrix table { width: 100%; border-collapse: collapse; min-width: 760px; }
.matrix th, .matrix td { padding: 18px 20px; text-align: start; border-bottom: 1px solid var(--line); vertical-align: top; }
.matrix th { color: white; background: var(--ink); }
.matrix tr:last-child td { border-bottom: 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.faq-grid details { border: 1px solid var(--line); border-radius: 18px; padding: 20px 22px; background: white; }
.faq-grid summary { cursor: pointer; font-weight: 900; }
.faq-grid p { color: var(--muted); }
.trust-legal { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding: 38px; border-radius: 28px; background: #fff; color: var(--ink); }
.trust-legal h3 { margin-top: 0; font-size: 28px; }
.trust-links { display: grid; gap: 10px; }
.trust-links a { padding: 12px 14px; border-radius: 12px; background: var(--sand); text-decoration: none; font-weight: 800; }
.trust-footer { display: flex; justify-content: space-between; gap: 30px; padding: 34px 0 54px; color: #697386; }
.trust-footer a { color: var(--ink); font-weight: 800; }

@media (max-width: 900px) {
  .trust-nav { display: none; }
  .trust-hero { padding-top: 54px; }
  .trust-hero-grid, .role-grid, .clarity-grid, .trust-legal { grid-template-columns: 1fr; }
  .trust-hero-card { min-height: 390px; }
  .trust-hero-card img { min-height: 390px; }
  .trust-facts { grid-template-columns: 1fr 1fr; }
  .trust-fact:first-child { border-radius: 20px 0 0 0; }
  .trust-fact:nth-child(2) { border-radius: 0 20px 0 0; }
  .trust-fact:last-child { border-radius: 0 0 20px 0; }
  .flow { grid-template-columns: 1fr; gap: 12px; }
  .flow-arrow { transform: rotate(90deg); }
}

@media (max-width: 620px) {
  .trust-shell { width: min(100% - 24px, 1180px); }
  .trust-topbar { padding: 10px 12px; }
  .trust-brand { gap: 8px; font-size: 13px; }
  .trust-brand img { width: 38px; height: 38px; }
  .trust-language-switcher summary { min-width: 62px; min-height: 40px; padding-inline: 10px; }
  .trust-language-panel { position: fixed; top: 68px; right: 12px; left: 12px; width: auto; max-height: min(58svh, 420px); }
  .trust-login { display: none; }
  .trust-hero { padding: 42px 0 44px; }
  .trust-hero-grid { gap: 30px; }
  .trust-hero h1 { font-size: 46px; }
  .trust-hero p { font-size: 17px; }
  .trust-hero-card, .trust-hero-card img { min-height: 320px; }
  .trust-facts { margin-top: 12px; grid-template-columns: 1fr; }
  .trust-fact, .trust-fact:first-child, .trust-fact:nth-child(2), .trust-fact:last-child { border-radius: 16px; margin-top: 8px; }
  .trust-section { padding: 58px 0; }
  .trust-heading h2 { font-size: 38px; }
  .faq-grid { grid-template-columns: 1fr; }
  .trust-footer { flex-direction: column; }
}
