/* BMG-PLUS — unique block system */

:root {
  --ink: #0c0f14;
  --ink-soft: #151a22;
  --ink-mid: #1e2530;
  --paper: #f4f0e8;
  --paper-dim: #c8c2b6;
  --text: #edeae4;
  --muted: #8a919c;
  --amber: #e8a838;
  --amber-dim: #c48a20;
  --teal: #2ec4b6;
  --coral: #e76f6f;
  --violet: #7b6cf0;
  --sky: #4dabf7;

  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max-w: 1200px;
  --gap: clamp(1.25rem, 3vw, 2.5rem);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --header-h: 68px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 800;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.05rem;
  font-weight: 700;
}

p {
  color: var(--muted);
}

.section-index {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.section-index--light {
  color: var(--teal);
}

/* ── HEADER: brutalist bar with brackets ── */

.header {
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: linear-gradient(to bottom, var(--ink) 60%, transparent);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.6rem 1rem 0.6rem 1.25rem;
  background: var(--ink-soft);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  white-space: nowrap;
}

.logo-bracket {
  color: var(--amber);
  font-size: 1.2rem;
  font-weight: 800;
}

.logo-letter {
  color: var(--paper);
  font-size: 1.15rem;
}

.logo-name {
  margin-left: 0.5rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav a {
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.nav a:hover {
  color: var(--paper);
  background: var(--ink-mid);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-toggle,
.menu-toggle {
  border: 1px solid var(--ink-mid);
  background: var(--ink-mid);
  color: var(--paper);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.lang-toggle {
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
}

.lang-toggle:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: var(--radius-sm);
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 0 auto;
  background: var(--paper);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* ── BUTTONS ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-cta {
  background: var(--amber);
  color: var(--ink);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  box-shadow: 0 8px 32px rgba(232, 168, 56, 0.25);
}

.btn-cta:hover {
  box-shadow: 0 12px 40px rgba(232, 168, 56, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--ink-mid);
  border-radius: var(--radius-sm);
}

.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* ── MAIN ── */

main {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1rem 3rem;
}

section {
  position: relative;
}

/* ── HERO: diagonal split + orbit visual ── */

.hero {
  padding: clamp(2rem, 6vw, 4rem) 0 clamp(3rem, 8vw, 5rem);
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
}

.hero-bg-shape {
  position: absolute;
  top: -10%;
  right: -15%;
  width: 65%;
  height: 120%;
  background: linear-gradient(135deg, var(--ink-mid) 0%, transparent 70%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--gap);
  align-items: center;
  width: 100%;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--ink-mid);
  border: 1px dashed var(--amber);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-year {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--ink-mid);
  -webkit-text-stroke: 1px var(--paper-dim);
}

.hero-lead {
  font-size: 1.05rem;
  max-width: 52ch;
  margin: 1rem 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-marquee {
  margin-top: 2.5rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.hero-marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 22s linear infinite;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-mid);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-marquee-track span:nth-child(odd) {
  color: var(--muted);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.hero-orbit {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.orbit-ring {
  width: 280px;
  height: 280px;
  border: 1px solid var(--ink-mid);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}

.orbit-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.orbit-dot--1 {
  background: var(--amber);
  top: 12%;
  right: 22%;
  animation: float 4s ease-in-out infinite;
}

.orbit-dot--2 {
  background: var(--teal);
  bottom: 18%;
  left: 15%;
  animation: float 5s ease-in-out infinite 0.5s;
}

.orbit-dot--3 {
  background: var(--coral);
  top: 45%;
  right: 8%;
  animation: float 3.5s ease-in-out infinite 1s;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2.5rem 2rem;
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.5),
    inset 0 -4px 0 var(--amber);
  transform: rotate(-3deg);
  transition: transform 0.4s ease;
}

.hero-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-card-letter {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
}

.hero-card-divider {
  width: 48px;
  height: 3px;
  background: var(--amber);
}

.hero-card-text {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-align: center;
  letter-spacing: 0.06em;
}

.hero-card-tags {
  list-style: none;
  display: flex;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}

.hero-card-tags li:first-child {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--amber-dim);
}

/* ── PROFILE: editorial split + stats ── */

.profile {
  margin: 2rem 0;
  padding: clamp(2.5rem, 5vw, 4rem);
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.profile-shell {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: var(--gap);
  align-items: start;
}

.profile-aside h2 {
  color: var(--ink);
  margin-bottom: 1rem;
}

.profile-accent-line {
  width: 3px;
  height: 80px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  margin-top: 1.5rem;
}

.profile-quote {
  border: none;
  padding: 0;
  margin: 0;
}

.profile-quote p {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.75;
  color: var(--ink-soft);
  font-style: italic;
}

.profile-quote p::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0;
  color: var(--amber);
  display: block;
  margin-bottom: 0.5rem;
}

.profile-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(12, 15, 20, 0.1);
}

.profile-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.profile-stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
}

.profile-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── AREAS: bento mosaic, each card unique ── */

.areas {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.areas-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.areas-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(160px, auto);
  gap: 0.85rem;
}

.area-card {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  overflow: hidden;
  transition: transform 0.25s ease;
}

.area-card:hover {
  transform: translateY(-6px);
}

.area-card--wide {
  grid-column: span 2;
}

.area-card--tall {
  grid-row: span 2;
}

.area-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 0.25rem;
}

.area-icon svg {
  width: 100%;
  height: 100%;
}

.area-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  opacity: 0.7;
}

.area-card h3 {
  color: inherit;
  line-height: 1.35;
}

.area-card p {
  font-size: 0.85rem;
  line-height: 1.5;
  opacity: 0.85;
}

.area-card--it {
  background: linear-gradient(145deg, #1a2744, #0f1829);
  border: 1px solid #2a3f6b;
  color: var(--text);
}

.area-card--it .area-icon { color: var(--sky); }
.area-card--it .area-num { color: var(--sky); }
.area-card--it p { color: #8aa4c8; }

.area-card--info {
  background: var(--ink-soft);
  border: 1px solid var(--ink-mid);
  border-top: 3px solid var(--teal);
  color: var(--text);
}

.area-card--info .area-icon { color: var(--teal); }
.area-card--info .area-num { color: var(--teal); }

.area-card--biz {
  background: var(--amber);
  color: var(--ink);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}

.area-card--biz .area-icon { color: var(--ink-soft); }
.area-card--biz .area-num { color: var(--ink-soft); }
.area-card--biz p { color: rgba(12, 15, 20, 0.65); }

.area-card--research {
  background: repeating-linear-gradient(
    -45deg,
    var(--ink-mid),
    var(--ink-mid) 2px,
    var(--ink-soft) 2px,
    var(--ink-soft) 8px
  );
  border: 1px solid var(--coral);
  color: var(--text);
}

.area-card--research .area-icon { color: var(--coral); }
.area-card--research .area-num { color: var(--coral); }

.area-card--audit {
  background: linear-gradient(90deg, var(--violet) 0%, #5a4fd4 100%);
  color: var(--paper);
}

.area-card--audit .area-icon { color: rgba(255, 255, 255, 0.9); }
.area-card--audit .area-num { color: rgba(255, 255, 255, 0.7); }
.area-card--audit p { color: rgba(255, 255, 255, 0.75); }

.area-card--realty {
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 50%  var(--radius-md) var(--radius-md) var(--radius-md);
}

.area-card--realty .area-icon { color: var(--ink-soft); }
.area-card--realty .area-num { color: var(--amber-dim); }
.area-card--realty p { color: var(--muted); }

/* ── PROCESS: horizontal timeline ── */

.process {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--ink-soft);
  margin: 0 -1rem;
  padding-left: calc(1rem + clamp(1rem, 3vw, 2rem));
  padding-right: calc(1rem + clamp(1rem, 3vw, 2rem));
  border-radius: var(--radius-lg);
}

.process-header {
  text-align: center;
  margin-bottom: 3rem;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.process-line {
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--teal), var(--coral), var(--violet));
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.step-marker {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--ink-mid);
  transition: border-color 0.3s, transform 0.3s;
}

.step:hover .step-marker {
  transform: scale(1.1);
}

.step--1 .step-marker { border-color: var(--amber); }
.step--2 .step-marker { border-color: var(--teal); }
.step--3 .step-marker { border-color: var(--coral); }
.step--4 .step-marker { border-color: var(--violet); }

.step-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.step--1 .step-num { color: var(--amber); }
.step--2 .step-num { color: var(--teal); }
.step--3 .step-num { color: var(--coral); }
.step--4 .step-num { color: var(--violet); }

.step-card {
  padding: 1.25rem 1rem;
  background: var(--ink-mid);
  border-radius: var(--radius-md);
  width: 100%;
  transition: background 0.3s;
}

.step:hover .step-card {
  background: var(--ink);
}

.step-card h3 {
  color: var(--paper);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.85rem;
}

/* ── CONTACT: dark panel + chip cards ── */

.contact {
  padding: clamp(3rem, 7vw, 5rem) 0 2rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--gap);
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(160deg, var(--ink-mid) 0%, var(--ink-soft) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.contact-info h2 {
  color: var(--paper);
  margin-bottom: 0.75rem;
}

.contact-info > p {
  margin-bottom: 1.75rem;
  max-width: 36ch;
}

.contact-chips {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-chip {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  background: var(--ink);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--teal);
  transition: border-color 0.2s, transform 0.2s;
}

.contact-chip:hover {
  border-left-color: var(--amber);
  transform: translateX(4px);
}

.contact-chip--wide {
  border-left-color: var(--violet);
}

.contact-chip-icon {
  font-size: 1.1rem;
  line-height: 1.4;
  opacity: 0.7;
}

.contact-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.contact-chip a,
.contact-chip span[data-address] {
  font-weight: 600;
  color: var(--paper);
  font-size: 0.95rem;
}

.contact-chip a:hover {
  color: var(--amber);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  background: var(--paper);
  border-radius: var(--radius-md);
  color: var(--ink);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem 0;
  border: none;
  border-bottom: 2px solid rgba(12, 15, 20, 0.15);
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--amber);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* ── FOOTER: watermark ── */

.footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--ink-mid);
  padding: 2rem 1rem;
}

.footer-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 800;
  color: var(--ink-soft);
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.footer p {
  position: relative;
  z-index: 1;
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-top {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--ink-mid);
  border-radius: 50%;
  font-size: 1rem;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.footer-top:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-3px);
}

/* ── RESPONSIVE ── */

@media (max-width: 1024px) {
  .areas-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .area-card--wide {
    grid-column: span 2;
  }

  .area-card--tall {
    grid-row: span 1;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: calc(var(--header-h) + 8px);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    background: var(--ink-soft);
    border-left: 4px solid var(--amber);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
    z-index: 300;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.75rem 0.85rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 300px;
    order: -1;
  }

  .hero-card {
    transform: rotate(0deg);
    max-width: 280px;
  }

  .profile-shell {
    grid-template-columns: 1fr;
  }

  .profile-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .process-track {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .process-line {
    display: none;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .logo-name {
    display: none;
  }

  .areas-bento,
  .process-track,
  .form-row {
    grid-template-columns: 1fr;
  }

  .area-card--wide {
    grid-column: span 1;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .btn-submit {
    width: 100%;
    align-self: stretch;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-marquee-track,
  .orbit-ring {
    animation: none;
  }

  .orbit-dot {
    animation: none;
  }
}
