:root {
  --bf-blue: #075f97;
  --bf-blue-dark: #043d68;
  --bf-ink: #0f1720;
  --bf-muted: #5e6b78;
  --bf-line: rgba(7, 95, 151, .14);
  --bf-soft: #f3f8fb;
  --bf-cream: #fffaf6;
  --bf-orange: #ff4b26;
  --bf-shadow: 0 24px 70px rgba(4, 61, 104, .13);
  --space-xs: .75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4.5rem;
  --space-2xl: 7rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--bf-ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(7, 95, 151, .08), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 48%, #ffffff 100%);
  font-feature-settings: "kern";
}

.wrap {
  width: min(1160px, calc(100% - 40px));
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(7, 95, 151, .12);
  box-shadow: 0 12px 30px rgba(4, 61, 104, .06);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.logo {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.logo img {
  width: 86px;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-weight: 800;
}

.nav a {
  color: var(--bf-blue-dark);
  text-decoration: none;
  padding: .74rem .88rem;
  border-radius: 999px;
  transition: .2s ease;
}

.nav a:hover {
  background: rgba(7, 95, 151, .08);
  color: var(--bf-blue);
}

.nav .contact {
  background: var(--bf-blue);
  color: #fff;
  box-shadow: 0 12px 28px rgba(7, 95, 151, .22);
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--bf-blue);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 1.15rem;
}

.section {
  padding: var(--space-2xl) 0;
}

.problem-intro {
  padding-top: 5.6rem;
}

.story-label,
.eyebrow {
  color: var(--bf-orange);
  letter-spacing: .045em;
  font-weight: 850;
  font-size: .9rem;
  text-transform: none;
  line-height: 1.35;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  letter-spacing: -.055em;
}

h2 {
  letter-spacing: -.04em;
}

p {
  line-height: 1.72;
}

.premium-hero {
  position: relative;
  overflow: hidden;
  padding: 6.6rem 0 6.2rem;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 75, 38, .22), transparent 28rem),
    radial-gradient(circle at 18% 22%, rgba(7, 95, 151, .62), transparent 31rem),
    linear-gradient(135deg, #071c31 0%, #043d68 52%, #075f97 100%);
}

.premium-hero .story-label {
  color: rgba(255, 255, 255, .82);
}

.premium-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -39% -10%;
  height: 42%;
  background: #fff;
  transform: rotate(-2deg);
  transform-origin: top left;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(430px, .9fr);
  gap: clamp(3rem, 6vw, 6.5rem);
  align-items: center;
}

.hero-copy h1 {
  max-width: 790px;
  margin: 1.15rem 0 1.45rem;
  font-size: clamp(3rem, 6.2vw, 5.6rem);
  line-height: .98;
}

.hero-lead {
  max-width: 700px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.68;
}

.hero-actions,
.sub-hero .btn,
.cta-panel .btn {
  margin-top: 2.35rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .95rem 1.3rem;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.btn.primary {
  background: linear-gradient(135deg, var(--bf-orange), #ff7a3f);
  color: #fff;
  box-shadow: 0 18px 38px rgba(255, 75, 38, .24);
}

.btn.white,
.btn.ghost-light {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .25);
}

.btn.whatsapp {
  background: #25d366;
  color: #063d1d;
}

.hero-art {
  position: relative;
  min-height: 500px;
}

.hero-art img,
.sub-hero figure img,
.visual-grid figure img,
.gallery-grid img,
.human-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-art > img {
  position: absolute;
  inset: 0;
  border-radius: 34px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .34);
  transform: rotate(1.5deg);
}

.story-band {
  background: #fff;
  border-bottom: 1px solid var(--bf-line);
}

.story-band .wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
  color: var(--bf-blue-dark);
  font-size: .86rem;
  font-weight: 850;
  letter-spacing: .035em;
}

.split-feature {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.split-feature h2,
.section-heading h2,
.visual-grid h2,
.contact-grid h2,
.sub-hero h1 {
  color: var(--bf-blue-dark);
  font-size: clamp(2.3rem, 4.6vw, 4.75rem);
  line-height: .98;
}

.rich-text {
  color: var(--bf-muted);
  font-size: 1.12rem;
}

.rich-text b {
  color: var(--bf-ink);
}

.section-heading {
  max-width: 880px;
  margin-bottom: var(--space-xl);
}

.section-heading.narrow {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.premium-services {
  background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1.1rem;
}

.service-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  color: var(--bf-ink);
  text-decoration: none;
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--bf-line);
  border-radius: 34px;
  box-shadow: 0 18px 50px rgba(4, 61, 104, .08);
  overflow: hidden;
  transition: .24s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--bf-blue), var(--bf-orange));
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--bf-shadow);
}

.service-card.large {
  grid-row: span 2;
  min-height: 520px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(4, 61, 104, .08), rgba(4, 61, 104, .9)),
    url("assets/hero-operacao-editorial.png") center/cover;
  border: 0;
}

.service-card.dark {
  background: linear-gradient(145deg, #071c31, var(--bf-blue-dark));
  color: #fff;
}

.service-card span {
  color: var(--bf-orange);
  font-weight: 950;
}

.service-card h3 {
  margin: auto 0 1rem;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -.04em;
}

.service-card p {
  color: currentColor;
  opacity: .78;
}

.service-card small {
  font-weight: 950;
  color: currentColor;
}

.visual-story {
  background:
    radial-gradient(circle at 0% 50%, rgba(7, 95, 151, .08), transparent 28rem),
    #fff;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.visual-grid.reverse {
  grid-template-columns: .9fr 1fr;
}

.visual-grid figure,
.sub-hero figure,
.human-photo {
  overflow: hidden;
  border-radius: 36px;
  box-shadow: var(--bf-shadow);
}

.visual-grid figure {
  height: 560px;
}

.mini-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
  margin-top: 2rem;
}

.mini-proof div {
  padding: 1.1rem;
  background: var(--bf-soft);
  border: 1px solid var(--bf-line);
  border-radius: 22px;
}

.mini-proof b {
  display: block;
  color: var(--bf-blue-dark);
  font-size: 1.55rem;
}

.mini-proof span {
  color: var(--bf-muted);
  font-size: .86rem;
  font-weight: 800;
}

.method-section {
  background: #0f1720;
  color: #fff;
}

.method-section h2,
.method-section h3 {
  color: #fff;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.timeline.detailed {
  grid-template-columns: repeat(3, 1fr);
}

.timeline div {
  position: relative;
  min-height: 250px;
  padding: 1.6rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 28px;
}

.premium-timeline .timeline div {
  background: #fff;
  border-color: var(--bf-line);
  box-shadow: 0 15px 42px rgba(4, 61, 104, .07);
}

.timeline b {
  color: var(--bf-orange);
  font-size: .9rem;
}

.timeline h3 {
  margin: 3rem 0 .7rem;
  font-size: 1.5rem;
}

.timeline p {
  color: inherit;
  opacity: .72;
}

.human {
  background: var(--bf-cream);
}

.human-grid {
  display: grid;
  grid-template-columns: .95fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.human-photo {
  min-height: 520px;
}

.text-link {
  color: var(--bf-blue);
  font-weight: 950;
  text-decoration: none;
}

.contact-section {
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 75, 38, .2), transparent 24rem),
    linear-gradient(135deg, #071c31, var(--bf-blue-dark));
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact-grid h2 {
  color: #fff;
}

.contact-grid p {
  color: rgba(255, 255, 255, .76);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 30px;
  backdrop-filter: blur(12px);
}

.contact-form label {
  display: grid;
  gap: .45rem;
  color: #fff;
  font-size: .88rem;
  font-weight: 900;
}

.contact-form .full,
.contact-form button,
.form-status {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 18px;
  padding: .95rem 1rem;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, .62);
}

.sub-hero {
  padding: 6rem 0 var(--space-xl);
  background:
    radial-gradient(circle at 8% 20%, rgba(7, 95, 151, .12), transparent 26rem),
    linear-gradient(180deg, #fff 0%, #f7fbfd 100%);
}

.sub-hero-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.sub-hero p:not(.story-label) {
  max-width: 720px;
  color: var(--bf-muted);
  font-size: 1.18rem;
}

.sub-hero figure {
  height: 500px;
}

.gallery-section {
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1rem;
}

.gallery-grid.project {
  grid-template-columns: 1fr 1fr .9fr;
}

.gallery-grid figure {
  min-height: 360px;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 18px 48px rgba(4, 61, 104, .08);
}

.gallery-grid .wide {
  grid-row: span 2;
}

.gallery-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  background: var(--bf-blue-dark);
  color: #fff;
  border-radius: 32px;
}

.gallery-note b {
  font-size: 1.7rem;
  line-height: 1.1;
  letter-spacing: -.03em;
}

.gallery-note p {
  color: rgba(255, 255, 255, .75);
}

.flow-section {
  background: #0f1720;
  color: #fff;
}

.flow-section h2 {
  color: #fff;
}

.flow-map {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .65rem;
  align-items: center;
}

.flow-map div {
  min-height: 120px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  font-weight: 950;
}

.flow-map span {
  color: var(--bf-orange);
  text-align: center;
  font-size: 1.6rem;
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.ops-grid div {
  min-height: 190px;
  padding: 1.6rem;
  background: #fff;
  border: 1px solid var(--bf-line);
  border-radius: 28px;
  box-shadow: 0 15px 42px rgba(4, 61, 104, .07);
}

.ops-grid b {
  display: block;
  margin-bottom: .85rem;
  color: var(--bf-blue-dark);
  font-size: 1.35rem;
}

.ops-grid span {
  color: var(--bf-muted);
  line-height: 1.55;
}

.who-hero .sub-hero-grid {
  grid-template-columns: .95fr 1.05fr;
}

.who-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

.btn.soft {
  color: var(--bf-blue-dark);
  background: #fff;
  border: 1px solid var(--bf-line);
  box-shadow: 0 14px 34px rgba(4, 61, 104, .08);
}

.who-manifest {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 75, 38, .07), transparent 26rem),
    #fff;
}

.who-origin {
  background: var(--bf-cream);
}

.belief-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.belief-grid article {
  min-height: 360px;
  padding: 2rem;
  border-radius: 32px;
  background: #fff;
  border: 1px solid var(--bf-line);
  box-shadow: 0 18px 50px rgba(4, 61, 104, .08);
}

.belief-grid span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 3rem;
  color: #fff;
  background: var(--bf-blue);
  border-radius: 999px;
  font-weight: 950;
}

.belief-grid h3 {
  color: var(--bf-blue-dark);
  font-size: clamp(1.5rem, 2.4vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.belief-grid p {
  color: var(--bf-muted);
}

.who-values {
  color: #fff;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 75, 38, .16), transparent 25rem),
    linear-gradient(135deg, #071c31, var(--bf-blue-dark));
}

.who-values h2 {
  color: #fff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.values-grid div {
  min-height: 240px;
  padding: 1.6rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
}

.values-grid b {
  display: block;
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1.45rem;
}

.values-grid span {
  color: rgba(255, 255, 255, .72);
  line-height: 1.58;
}

.cta-panel {
  padding-top: 0;
  background: #fff;
}

.panel {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  color: #fff;
  background:
    radial-gradient(circle at 90% 15%, rgba(255, 75, 38, .28), transparent 22rem),
    linear-gradient(135deg, #071c31, var(--bf-blue));
  border-radius: 38px;
  box-shadow: var(--bf-shadow);
}

.panel h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
}

.footer {
  background: #fff;
  border-top: 1px solid var(--bf-line);
}

.footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0;
}

.footer img {
  width: 78px;
}

.footer p {
  margin: 0;
  color: var(--bf-muted);
}

.footer a {
  color: var(--bf-blue);
  font-weight: 950;
  text-decoration: none;
}

.proof-section {
  display: none;
}

/* V1.1 — Quem Somos e Marketplace */
.team-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: #071c31;
}

.team-photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 28%;
  filter: saturate(.82) contrast(1.02) brightness(.72);
  transform: scale(1.06);
}

.team-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 75, 38, .16), transparent 24rem),
    linear-gradient(180deg, rgba(7, 28, 49, .04), rgba(7, 28, 49, .62));
  pointer-events: none;
}

.team-photo-card figcaption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
  padding: .9rem 1rem;
  color: rgba(255, 255, 255, .9);
  background: rgba(7, 28, 49, .48);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  font-size: .92rem;
  line-height: 1.45;
}

.icon-beliefs {
  grid-template-columns: repeat(4, 1fr);
}

.icon-beliefs article {
  min-height: 390px;
}

.icon-beliefs svg,
.market-grid svg,
.daily-list svg {
  width: 34px;
  height: 34px;
  margin-bottom: 1.6rem;
  fill: none;
  stroke: var(--bf-blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-beliefs span {
  display: none;
}

.method-flow {
  display: grid;
  grid-template-columns: repeat(9, auto);
  gap: .75rem;
  align-items: center;
  justify-content: center;
}

.method-flow div {
  min-width: 150px;
  padding: 1.2rem 1.4rem;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  text-align: center;
  font-weight: 950;
}

.method-flow span {
  color: var(--bf-orange);
  font-size: 1.4rem;
}

.marketplace-depth,
.dashboard-section {
  background: #fff;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.market-grid article {
  min-height: 240px;
  padding: 1.45rem;
  background: #fff;
  border: 1px solid var(--bf-line);
  border-radius: 28px;
  box-shadow: 0 15px 42px rgba(4, 61, 104, .07);
}

.market-grid b,
.daily-list b {
  display: block;
  color: var(--bf-blue-dark);
  font-size: 1.16rem;
  line-height: 1.18;
}

.market-grid span,
.daily-list span {
  display: block;
  margin-top: .7rem;
  color: var(--bf-muted);
  line-height: 1.5;
}

.market-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: .8rem;
  max-width: 820px;
  margin: 0 auto;
}

.market-flow > div,
.market-flow .channels b {
  padding: 1rem 1.2rem;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 22px;
  text-align: center;
  font-weight: 950;
}

.market-flow > span {
  color: var(--bf-orange);
  text-align: center;
  font-size: 1.3rem;
  line-height: 1;
}

.market-flow .channels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  background: transparent;
  border: 0;
  padding: 0;
}

.daily-section,
.benefits-section {
  background: var(--bf-soft);
}

.daily-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.daily-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
  align-items: start;
  padding: 1.35rem;
  background: #fff;
  border: 1px solid var(--bf-line);
  border-radius: 26px;
  box-shadow: 0 12px 34px rgba(4, 61, 104, .06);
}

.daily-list svg {
  margin: .12rem 0 0;
}

.daily-list span {
  grid-column: 2;
}

.dashboard-section {
  background:
    radial-gradient(circle at 5% 12%, rgba(7, 95, 151, .08), transparent 25rem),
    #fff;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.dashboard-grid h2 {
  color: var(--bf-blue-dark);
  font-size: clamp(2.3rem, 4.6vw, 4.75rem);
  line-height: .98;
}

.dashboard-grid p {
  color: var(--bf-muted);
}

.core-mockup {
  padding: 1.1rem;
  color: #fff;
  background: linear-gradient(145deg, #071c31, var(--bf-blue-dark));
  border-radius: 34px;
  box-shadow: var(--bf-shadow);
}

.mock-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .8rem;
  align-items: center;
  padding: .6rem .4rem 1rem;
}

.mock-head span {
  color: rgba(255, 255, 255, .66);
  font-size: .9rem;
}

.kpi-row,
.mock-body,
.mock-table {
  display: grid;
  gap: .8rem;
}

.kpi-row {
  grid-template-columns: repeat(3, 1fr);
}

.kpi-row div,
.chart-card,
.alert-card,
.mock-table {
  padding: 1rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
}

.kpi-row small,
.kpi-row em {
  display: block;
  color: rgba(255, 255, 255, .62);
  font-style: normal;
}

.kpi-row b {
  display: block;
  margin: .3rem 0;
  font-size: 2rem;
}

.mock-body {
  grid-template-columns: 1.1fr .9fr;
  margin-top: .8rem;
}

.chart-card {
  min-height: 210px;
  display: flex;
  align-items: end;
  gap: .7rem;
}

.chart-card span {
  flex: 1;
  min-height: 42px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--bf-orange), rgba(255, 75, 38, .34));
}

.chart-card span:nth-child(2) { min-height: 88px; }
.chart-card span:nth-child(3) { min-height: 132px; }
.chart-card span:nth-child(4) { min-height: 106px; }
.chart-card span:nth-child(5) { min-height: 158px; }

.alert-card p {
  margin: .7rem 0 0;
  padding: .7rem;
  color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .06);
  border-radius: 14px;
}

.mock-table {
  grid-template-columns: 1.2fr .8fr .8fr;
  margin-top: .8rem;
}

.mock-table span {
  color: rgba(255, 255, 255, .55);
  font-size: .78rem;
}

.mock-table i {
  color: #fff;
  font-style: normal;
}

.values-grid.light div {
  background: #fff;
  border-color: var(--bf-line);
  box-shadow: 0 15px 42px rgba(4, 61, 104, .07);
}

.values-grid.light b {
  color: var(--bf-blue-dark);
}

.values-grid.light span {
  color: var(--bf-muted);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--bf-line);
    border-radius: 24px;
    box-shadow: var(--bf-shadow);
  }

  .nav.open {
    display: flex;
  }

  .hero-grid,
  .sub-hero-grid,
  .split-feature,
  .visual-grid,
  .visual-grid.reverse,
  .human-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-art,
  .sub-hero figure,
  .visual-grid figure,
  .human-photo {
    min-height: 0;
    height: 410px;
  }

  .service-grid,
  .service-grid.four,
  .timeline,
  .timeline.detailed,
  .ops-grid,
  .belief-grid,
  .values-grid,
  .icon-beliefs,
  .market-grid,
  .daily-list,
  .gallery-grid,
  .gallery-grid.project {
    grid-template-columns: 1fr 1fr;
  }

  .method-flow,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .service-card.large {
    grid-row: auto;
    min-height: 380px;
  }

  .flow-map {
    grid-template-columns: 1fr;
  }

  .flow-map span {
    transform: rotate(0deg);
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }

  .nav-wrap {
    min-height: 72px;
  }

  .logo img {
    width: 74px;
  }

  .premium-hero,
  .sub-hero {
    padding: 3.75rem 0 3.2rem;
  }

  .section {
    padding: 4.25rem 0;
  }

  .story-band .wrap {
    overflow-x: auto;
  }

  .story-band span {
    white-space: nowrap;
  }

  .hero-copy h1 {
    margin-top: .95rem;
    font-size: clamp(2.55rem, 13vw, 3.9rem);
    line-height: 1;
  }

  .hero-lead {
    font-size: 1.03rem;
    line-height: 1.62;
  }

  .split-feature h2,
  .section-heading h2,
  .visual-grid h2,
  .contact-grid h2,
  .sub-hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.3rem);
  }

  .hero-actions {
    display: grid;
    gap: .75rem;
  }

  .hero-art,
  .sub-hero figure,
  .visual-grid figure,
  .human-photo {
    height: 320px;
  }

  .service-grid,
  .service-grid.four,
  .timeline,
  .timeline.detailed,
  .ops-grid,
  .belief-grid,
  .values-grid,
  .icon-beliefs,
  .market-grid,
  .daily-list,
  .market-flow .channels,
  .mock-body,
  .kpi-row,
  .gallery-grid,
  .gallery-grid.project,
  .mini-proof,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 300px;
    padding: 1.45rem;
    border-radius: 28px;
  }

  .panel,
  .footer .wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
