/* Appily Ninetytwo — company topo (Retro-Futurist) */



@keyframes a92-topo-glow {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.95; }
}
@keyframes a92-topo-spin {
  to { transform: rotate(360deg); }
}

.page-company-topo.a92-company-creative {
  --topo-ink: var(--a92-ink, #14213D);
  --topo-panel: var(--a92-ink, #14213D);
  --topo-surface: var(--a92-paper, #FDF0D5);
  --topo-muted: var(--a92-mute, #3D4A66);
  --topo-line: var(--a92-ink, #14213D);
  --topo-mint: var(--a92-mint, #F7C548);
  --topo-mango: var(--a92-accent, #F7C548);
  --topo-berry: var(--a92-primary, #FF6B35);
  --topo-contour: rgba(255, 107, 53, 0.18);
  background:
    repeating-linear-gradient(-45deg, transparent, transparent 16px, rgba(255,107,53,0.05) 16px, rgba(255,107,53,0.05) 17px),
    var(--topo-surface);
}

.a92-topo {
  padding: 0 0 3rem;
  overflow-x: clip;
}

/* ── Hero ── */
.a92-topo-hero {
  position: relative;
  padding: 2.5rem 0 2.25rem;
  overflow: hidden;
  background: var(--topo-panel);
  color: #fff;
  margin-bottom: 0.5rem;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
}

.a92-topo-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(247, 197, 72, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 197, 72, 0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 92%);
  pointer-events: none;
}

.a92-topo-contours {
  position: absolute;
  inset: 0;
  background:
    repeating-radial-gradient(
      ellipse 120% 80% at 30% 40%,
      transparent 0,
      transparent 28px,
      var(--topo-contour) 28px,
      var(--topo-contour) 29px
    ),
    radial-gradient(ellipse 55% 50% at 88% 15%, rgba(255, 107, 53, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.a92-topo-hero-arch {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--topo-mango), var(--topo-mint), var(--topo-berry));
  opacity: 0.85;
  pointer-events: none;
}

.a92-topo-watermark {
  position: absolute;
  top: 0.5rem;
  right: 3%;
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: -0.04em;
  pointer-events: none;
}

.a92-topo-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.a92-topo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.55rem;
  padding: 0.25rem 0.65rem;
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--topo-mint);
  background: rgba(247, 197, 72, 0.1);
  border: 3px solid rgba(247, 197, 72, 0.22);
}

.a92-topo-kicker::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 0;
  background: var(--topo-mango);
  box-shadow: none;
  animation: a92-topo-glow 2.5s ease-in-out infinite;
}

.a92-topo-hero h1 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
}

.a92-topo-hero h1 em {
  font-style: normal;
  color: var(--topo-mango);
  position: relative;
}

.a92-topo-hero h1 em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.32em;
  background: rgba(255, 107, 53, 0.22);
  z-index: -1;
  transform: skewX(-6deg);
}

.a92-topo-tagline {
  margin: 0 0 0.65rem;
  max-width: 50ch;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
}

.a92-topo-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.a92-topo-crumb a {
  color: var(--topo-mint);
  text-decoration: none !important;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.a92-topo-crumb a:hover,
.a92-topo-crumb a:focus-visible {
  color: var(--topo-mango);
  border-bottom-color: var(--topo-mango);
}

.a92-topo-crumb a:focus-visible {
  outline: 3px solid var(--a92-accent, #F7C548);
  outline-offset: 3px;
}

.a92-topo-crumb span:last-child {
  color: rgba(255, 255, 255, 0.45);
}

/* Compass rose */
.a92-topo-compass {
  position: relative;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 3px solid rgba(247, 197, 72, 0.22);
  display: grid;
  place-items: center;
  text-align: center;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.a92-topo-compass-ring {
  position: absolute;
  inset: -6px;
  border: 1px dashed rgba(247, 197, 72, 0.28);
  animation: a92-topo-spin 22s linear infinite;
  pointer-events: none;
}

.a92-topo-compass strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--topo-mango);
  line-height: 1;
  z-index: 1;
}

.a92-topo-compass em {
  position: absolute;
  bottom: 0.55rem;
  font-style: normal;
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
}

/* ── Trail markers (stats) ── */
.a92-topo-markers {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.a92-topo-marker {
  position: relative;
  padding: 1rem 0.85rem 0.85rem 2.5rem;
  background: #fff;
  border: 3px solid var(--topo-line);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  box-shadow: 5px 5px 0 var(--a92-ink);
  transition: transform 0.2s, box-shadow 0.2s;
}

.a92-topo-marker:hover {
  transform: translateY(-3px);
  box-shadow: 5px 5px 0 var(--a92-ink);
}

.a92-topo-marker-post {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 2.25rem;
  background: linear-gradient(180deg, var(--topo-mango), var(--topo-mint));
  clip-path: polygon(0 0, 100% 4px, 100% calc(100% - 4px), 0 100%);
}

.a92-topo-marker-post::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 10px;
  background: var(--topo-mango);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.a92-topo-marker strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--topo-ink);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.a92-topo-marker > span:last-child {
  display: block;
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--topo-muted);
}

/* ── Map panel ── */
.a92-topo-stage {
  margin-top: 1.35rem;
}

.a92-topo-map {
  background: #fff;
  border: 3px solid var(--topo-line);
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  box-shadow: 5px 5px 0 var(--a92-ink);
}

.a92-topo-map-head {
  padding: 0.85rem 1.25rem;
  background: var(--topo-ink);
  color: #fff;
  position: relative;
}

.a92-topo-map-head::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--topo-mango), var(--topo-mint));
}

.a92-topo-map-head span {
  display: block;
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--topo-mint);
  margin-bottom: 0.2rem;
}

.a92-topo-map-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.a92-topo-map-body {
  display: grid;
  grid-template-columns: minmax(200px, 240px) 1fr;
  min-height: 280px;
}

/* Trail index */
.a92-topo-trails {
  padding: 1.15rem 1rem;
  background:
    linear-gradient(rgba(247, 197, 72, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 197, 72, 0.04) 1px, transparent 1px);
  background-size: 16px 16px;
  background-color: var(--topo-surface);
  border-right: 2px dashed rgba(247, 197, 72, 0.22);
}

.a92-topo-trails-tag {
  display: block;
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--topo-mint);
  margin-bottom: 0.65rem;
}

.a92-topo-trail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.15rem;
  position: relative;
}

.a92-topo-trail-list::before {
  content: '';
  position: absolute;
  left: 0.55rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, var(--topo-mango), var(--topo-mint));
  opacity: 0.45;
}

.a92-topo-trail-list a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.65rem;
  color: var(--topo-ink);
  text-decoration: none !important;
  font-size: 0.78rem;
  font-weight: 700;
  border: 3px solid transparent;
  border-radius: 0;
  box-shadow: 3px 3px 0 transparent;
  clip-path: none;
  transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  position: relative;
  z-index: 1;
}

.a92-topo-trail-list a:hover,
.a92-topo-trail-list a:focus-visible {
  background: var(--topo-mango);
  color: var(--topo-ink);
  border-color: var(--topo-ink);
  box-shadow: 3px 3px 0 var(--topo-berry);
  transform: translate(-2px, -2px);
  outline: none;
}

.a92-topo-trail-list a:focus-visible {
  outline: 3px solid var(--a92-accent, #F7C548);
  outline-offset: 2px;
}

.a92-topo-trail-pin {
  width: 10px;
  height: 10px;
  background: var(--topo-mango);
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(255, 107, 53, 0.35);
  flex-shrink: 0;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.a92-topo-trail-num {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 800;
  color: var(--topo-mint);
  min-width: 1.25rem;
}

.a92-topo-trail-name {
  line-height: 1.3;
}

/* Legend / company story */
.a92-topo-legend {
  padding: 1.25rem 1.35rem;
  background: #fff;
}

.a92-topo-legend-kicker {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--topo-mango);
}

.a92-topo-legend h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--topo-ink);
}

.a92-topo-legend p {
  margin: 0 0 0.75rem;
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--topo-muted);
}

.a92-topo-legend p:last-child {
  margin-bottom: 0;
}

.a92-topo-muted {
  font-size: 0.82rem !important;
  color: var(--topo-muted) !important;
  font-style: italic;
}

/* Benefits cairns */
.a92-topo-cairns {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

.a92-topo-cairn {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem;
  background: var(--topo-panel);
  color: rgba(255, 255, 255, 0.85);
  border: 3px solid rgba(247, 197, 72, 0.12);
  font-size: 0.76rem;
  line-height: 1.4;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
  transition: transform 0.2s;
}

.a92-topo-cairn:hover {
  transform: translateY(-2px);
}

.a92-topo-cairn-stack {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.75rem;
  position: relative;
}

.a92-topo-cairn-stack::before,
.a92-topo-cairn-stack::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--topo-mint);
  border-radius: 0;
}

.a92-topo-cairn-stack::before {
  bottom: 0;
  width: 1.25rem;
  height: 5px;
}

.a92-topo-cairn-stack::after {
  bottom: 8px;
  width: 0.85rem;
  height: 4px;
  box-shadow: 0 -9px 0 var(--topo-mango);
}

.a92-topo-cairn strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--topo-mango);
  margin-bottom: 0.15rem;
}

.a92-topo-cairn span {
  color: rgba(255, 255, 255, 0.55);
}

/* Survey registry */
.a92-topo-survey {
  margin-top: 1.25rem;
  background: #fff;
  border: 3px solid var(--topo-line);
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  box-shadow: 5px 5px 0 var(--a92-ink);
}

.a92-topo-survey-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.15rem;
  background: var(--topo-ink);
  color: #fff;
  position: relative;
}

.a92-topo-survey-head::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--topo-mango), var(--topo-mint));
}

.a92-topo-survey-tag {
  display: block;
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--topo-mint);
}

.a92-topo-survey-head h2 {
  margin: 0.15rem 0 0;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.a92-topo-survey-code {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  padding: 0.3rem 0.55rem;
  background: rgba(247, 197, 72, 0.1);
  border: 3px solid rgba(247, 197, 72, 0.22);
  clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 0 100%);
}

.a92-topo-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}

.a92-topo-table th,
.a92-topo-table td {
  padding: 0.7rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid var(--topo-line);
  vertical-align: top;
}

.a92-topo-table th {
  width: 34%;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--topo-muted);
  background: var(--topo-surface);
}

.a92-topo-table td {
  color: var(--topo-ink);
  font-weight: 600;
}

.a92-topo-table tr:last-child th,
.a92-topo-table tr:last-child td {
  border-bottom: 0;
}

/* Contact camps */
.a92-topo-camps {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.a92-topo-camp {
  position: relative;
  padding: 1rem 1rem 0.85rem;
  background: #fff;
  border: 3px solid var(--topo-line);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  transition: transform 0.2s, box-shadow 0.2s;
}

.a92-topo-camp:hover {
  transform: translateY(-2px);
  box-shadow: 5px 5px 0 var(--a92-ink);
}

.a92-topo-camp::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--topo-mango), var(--topo-mint));
}

.a92-topo-camp-flag {
  position: absolute;
  top: 0;
  right: 1rem;
  width: 3px;
  height: 14px;
  background: rgba(247, 197, 72, 0.35);
}

.a92-topo-camp-flag::before {
  content: '';
  position: absolute;
  top: 0;
  left: 3px;
  width: 16px;
  height: 10px;
  background: var(--topo-mango);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.a92-topo-camp strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--topo-mint);
  margin-bottom: 0.3rem;
}

.a92-topo-camp p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--topo-ink);
}

.a92-topo-camp a {
  color: var(--topo-mango);
  font-weight: 600;
  text-decoration: none;
}

.a92-topo-camp a:hover {
  color: var(--topo-mint);
}

/* Actions */
.a92-topo-actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.a92-topo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.3rem;
  border: 3px solid var(--topo-ink);
  border-radius: 0;
  font-family: var(--font-display, "Righteous", sans-serif);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none !important;
  text-align: center;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--topo-ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  clip-path: none;
  -webkit-tap-highlight-color: transparent;
}
.a92-topo-btn:focus-visible {
  outline: 3px solid var(--a92-accent, #F7C548);
  outline-offset: 3px;
}

.a92-topo-btn--primary {
  background: var(--topo-mango);
  color: var(--topo-ink);
  box-shadow: 4px 4px 0 var(--topo-berry);
}

.a92-topo-btn--primary:hover,
.a92-topo-btn--primary:focus-visible {
  background: var(--topo-berry);
  color: #fff;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--topo-ink);
  filter: none;
}

.a92-topo-btn--primary:active {
  background: var(--topo-ink);
  color: var(--topo-mango);
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 var(--topo-berry);
}

.a92-topo-btn--ghost {
  background: #FFFCF5;
  color: var(--topo-ink);
  border: 3px solid var(--topo-ink);
}

.a92-topo-btn--ghost:hover,
.a92-topo-btn--ghost:focus-visible {
  background: var(--topo-panel);
  color: #fff;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--topo-mango);
}

.a92-topo-btn--ghost:active {
  background: var(--topo-ink);
  color: var(--topo-mango);
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 var(--topo-mango);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .a92-topo-hero {
    clip-path: none;
  }

  .a92-topo-hero-inner {
    grid-template-columns: 1fr;
  }

  .a92-topo-compass {
    justify-self: start;
  }

  .a92-topo-markers {
    grid-template-columns: 1fr;
  }

  .a92-topo-map {
    clip-path: none;
  }

  .a92-topo-map-body {
    grid-template-columns: 1fr;
  }

  .a92-topo-trails {
    border-right: 0;
    border-bottom: 2px dashed rgba(247, 197, 72, 0.22);
  }

  .a92-topo-cairns {
    grid-template-columns: repeat(2, 1fr);
  }

  .a92-topo-camps {
    grid-template-columns: 1fr;
  }

  .a92-topo-survey {
    clip-path: none;
  }

  .a92-topo-cairn {
    clip-path: none;
  }
}

@media (max-width: 520px) {
  .a92-topo-cairns {
    grid-template-columns: 1fr;
  }

  .a92-topo-actions {
    flex-direction: column;
  }

  .a92-topo-actions .a92-topo-btn {
    width: 100%;
  }

  .a92-topo-table th,
  .a92-topo-table td {
    display: block;
    width: 100%;
  }

  .a92-topo-table th {
    padding-bottom: 0.25rem;
    border-bottom: 0;
  }

  .a92-topo-watermark {
    display: none;
  }

  .a92-topo-marker {
    clip-path: none;
  }

  .a92-topo-camp {
    clip-path: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .a92-topo-kicker::before,
  .a92-topo-compass-ring {
    animation: none;
  }
}
