:root {
  color-scheme: light;
  --ink-900: #373a36;
  --ink-700: #54585a;
  --mist-300: #d9d9d6;
  --mist-100: #e6eeec;
  --teal-900: #006361;
  --teal-700: #279989;
  --teal-500: #45b5aa;
  --teal-300: #a0d1ca;
  --bg: #f5faf9;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 14px 36px rgba(0, 40, 36, 0.12);
  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  background-color: #fcfffe;
  scroll-behavior: smooth;
}

@supports (color-scheme: only light) {
  :root,
  html {
    color-scheme: only light;
  }
}

body {
  margin: 0;
  font-family: "Arial Nova", "ArialNova", "Avenir Next", Arial, sans-serif;
  color: var(--ink-900);
  background-color: #fcfffe;
  background:
    radial-gradient(circle at 10% -5%, rgba(69, 181, 170, 0.2), transparent 40%),
    radial-gradient(circle at 90% 0%, rgba(0, 99, 97, 0.14), transparent 35%),
    linear-gradient(180deg, #fcfffe 0%, #f2f8f6 100%);
  line-height: 1.6;
}

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

a {
  color: var(--teal-900);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(7px);
  background: rgba(245, 250, 249, 0.86);
  border-bottom: 1px solid rgba(84, 88, 90, 0.14);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand img {
  width: 152px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-900);
  padding: 0.35rem 0.2rem;
  border-bottom: 2px solid transparent;
}

.nav a.active,
.nav a:hover {
  color: var(--teal-900);
  border-bottom-color: var(--teal-500);
  text-decoration: none;
}

.nav-cta {
  border: 1px solid var(--teal-900);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
}

.nav a.nav-cta {
  border-bottom: 1px solid var(--teal-900);
}

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
}

.hero {
  padding: 4.8rem 0 3.6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2rem;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--teal-900);
  letter-spacing: 0.08em;
  font-weight: 700;
}

.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--teal-700);
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0;
}

h1 {
  margin-top: 0.85rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

.lead {
  color: var(--ink-700);
  margin: 1rem 0 0;
  font-size: clamp(1rem, 1.2vw, 1.16rem);
}

.hero-cta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--teal-900), var(--teal-500));
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 99, 97, 0.25);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink-900);
  border: 1px solid rgba(84, 88, 90, 0.3);
}

.panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(84, 88, 90, 0.12);
}

.panel h3 {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--teal-900);
}

.usecase-list {
  margin: 0.5rem 0 0.2rem;
  padding-left: 1.1rem;
}

.usecase-list li {
  margin: 0.35rem 0;
  color: var(--ink-700);
}

.release-widget {
  background: linear-gradient(145deg, #ffffff, #f4fbf9);
}

.release-widget-status {
  margin: 0.65rem 0 0;
  color: var(--ink-700);
  font-size: 0.92rem;
}

.release-widget-version {
  margin: 0.3rem 0 0;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 700;
  color: var(--teal-900);
  letter-spacing: 0.01em;
}

.release-widget-updated {
  margin: 0.3rem 0 0;
  color: var(--ink-700);
  font-size: 0.9rem;
}

.release-widget-actions {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1rem;
}

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

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

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

.section {
  padding: 3.2rem 0;
}

.usecase-section {
  scroll-margin-top: 96px;
}

.application-jump-nav {
  padding-top: 0;
}

.jump-nav-title {
  margin-bottom: 0.9rem;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--teal-900);
}

.jump-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.jump-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: linear-gradient(180deg, #ffffff, #f2f8f6);
  border: 1px solid rgba(84, 88, 90, 0.14);
  border-radius: 12px;
  padding: 0.8rem;
  box-shadow: 0 10px 24px rgba(0, 40, 36, 0.08);
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.jump-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 40, 36, 0.14);
  border-color: rgba(0, 99, 97, 0.3);
  text-decoration: none;
}

.jump-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(69, 181, 170, 0.15);
  border: 1px solid rgba(0, 99, 97, 0.25);
  color: var(--teal-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.jump-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.jump-card-title {
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.3;
  font-size: 0.9rem;
}

.section.soft {
  background: linear-gradient(170deg, rgba(160, 209, 202, 0.17), rgba(230, 238, 236, 0.44));
  border-top: 1px solid rgba(84, 88, 90, 0.1);
  border-bottom: 1px solid rgba(84, 88, 90, 0.1);
}

.icon-card {
  background: var(--white);
  border: 1px solid rgba(84, 88, 90, 0.14);
  border-radius: var(--radius);
  padding: 1rem;
}

.icon-card img {
  width: 36px;
  margin-bottom: 0.65rem;
}

.customer-section {
  scroll-margin-top: 96px;
}

.customer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.customer-card {
  padding: 1.3rem;
  border-top: 3px solid rgba(0, 99, 97, 0.45);
  background: linear-gradient(180deg, #ffffff, #f4fbf9);
}

.customer-type {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal-900);
}

.customer-quote {
  margin: 0.5rem 0 0;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink-900);
}

.customer-quick {
  margin: 0.6rem 0 0;
  color: var(--ink-700);
  font-weight: 600;
}

.customer-card h3 {
  margin-top: 1rem;
  font-size: 1.12rem;
}

.customer-card p {
  margin-top: 0.55rem;
}

.customer-notes {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.customer-notes li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--ink-700);
}

.customer-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--teal-900), var(--teal-500));
}

.customer-link-wrap {
  margin: 0.95rem 0 0;
}

.customer-link {
  font-weight: 700;
  color: var(--teal-900);
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.customer-link:hover {
  color: var(--teal-700);
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  height: 100%;
}

.team-photo {
  width: clamp(120px, 16vw, 156px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--teal-300);
  margin-bottom: 0.7rem;
}

.team-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 0.7rem;
}

.team-actions .btn {
  padding: 0.55rem 0.95rem;
  font-size: 0.88rem;
}

.team-social {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(84, 88, 90, 0.3);
  background: var(--white);
  color: #0a66c2;
}

.team-social:hover {
  text-decoration: none;
  border-color: #0a66c2;
}

.timeline {
  margin-top: 1.1rem;
  position: relative;
  display: grid;
  gap: 0.9rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 80px;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 2px;
  background: linear-gradient(180deg, var(--teal-700), rgba(39, 153, 137, 0.2));
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  align-items: start;
}

.timeline-year {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal-900);
  line-height: 1.2;
  position: relative;
}

.timeline-year::after {
  content: "";
  position: absolute;
  left: calc(100% + 0.58rem);
  top: 0.3rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal-700);
  box-shadow: 0 0 0 4px rgba(160, 209, 202, 0.55);
}

.timeline-content {
  background: var(--white);
  border: 1px solid rgba(84, 88, 90, 0.15);
  border-radius: 12px;
  padding: 0.9rem 1rem;
}

.timeline-content h3 {
  margin: 0;
  font-size: 1.02rem;
  color: var(--ink-900);
}

.timeline-content p {
  margin: 0.45rem 0 0;
  color: var(--ink-700);
}

.timeline-logo {
  margin-top: 0.8rem;
  max-width: 180px;
  max-height: 64px;
  width: auto;
  object-fit: contain;
}

.memberships-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 1rem;
}

.membership-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 0.6rem 0.75rem;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.membership-link:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 40, 36, 0.1);
}

.membership-logo {
  max-height: 58px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

@media (max-width: 980px) {
  .customer-grid {
    grid-template-columns: 1fr;
  }

  .team-photo {
    width: 128px;
  }

  .team-actions .btn {
    padding: 0.5rem 0.9rem;
  }
}

@media (max-width: 700px) {
  .team-card {
    padding: 1rem;
    height: auto;
  }

  .memberships-grid {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .membership-link {
    width: 100%;
    min-height: 86px;
  }

  .timeline::before {
    left: 0.35rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding-left: 1.5rem;
  }

  .timeline-year {
    font-size: 0.84rem;
  }

  .timeline-year::after {
    left: -1.25rem;
    top: 0.2rem;
  }

  .timeline-content {
    padding: 0.85rem 0.9rem;
  }

  .team-photo {
    width: 114px;
  }

  .team-actions {
    gap: 0.5rem;
  }

  .team-actions .btn {
    font-size: 0.84rem;
    padding: 0.5rem 0.82rem;
  }

  .team-social {
    width: 36px;
    height: 36px;
  }
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.metric {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(84, 88, 90, 0.12);
  border-radius: 12px;
  padding: 1rem;
}

.metric strong {
  display: block;
  font-size: 1.45rem;
  color: var(--teal-900);
}

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

.post-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(84, 88, 90, 0.14);
  padding: 1rem;
}

.post-meta {
  font-size: 0.84rem;
  color: var(--ink-700);
}

.media-card img {
  border-radius: 10px;
  border: 1px solid rgba(84, 88, 90, 0.14);
}

.expander-group {
  display: grid;
  gap: 0.85rem;
}

.expander {
  background: var(--white);
  border: 1px solid rgba(84, 88, 90, 0.16);
  border-radius: 12px;
  overflow: hidden;
}

.expander summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  padding: 0.95rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  background: linear-gradient(180deg, rgba(160, 209, 202, 0.2), rgba(230, 238, 236, 0.34));
}

.expander-title {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.expander-icon {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-900);
  background: rgba(69, 181, 170, 0.15);
  border: 1px solid rgba(0, 99, 97, 0.25);
  flex-shrink: 0;
}

.expander-icon svg {
  width: 0.95rem;
  height: 0.95rem;
}

.expander summary::after {
  content: "+";
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(84, 88, 90, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-700);
  background: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

.expander summary::-webkit-details-marker {
  display: none;
}

.expander[open] summary {
  border-bottom: 1px solid rgba(84, 88, 90, 0.14);
}

.expander[open] summary::after {
  content: "-";
}

.expander-body {
  padding: 0.9rem 1rem 1rem;
}

.expander-body ul {
  margin: 0;
  padding-left: 1.1rem;
}

.panel {
  overflow-wrap: anywhere;
}

.panel p,
.panel li,
.panel td,
.panel th,
.panel figcaption {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.panel pre {
  max-width: 100%;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-word;
  background: #f2f7f5;
  border: 1px solid rgba(84, 88, 90, 0.16);
  border-radius: 8px;
  padding: 0.8rem;
}

.panel code {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.social-links a {
  display: inline-flex;
}

.social-links img {
  width: 32px;
  height: 32px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

th,
td {
  text-align: left;
  padding: 0.75rem;
  border-bottom: 1px solid rgba(84, 88, 90, 0.14);
}

th {
  background: rgba(160, 209, 202, 0.2);
  color: var(--ink-900);
}

.pricing-lead {
  margin-top: 0.7rem;
  max-width: 74ch;
}

.pricing-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.pricing-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

.pricing-card {
  padding: 1.2rem;
}

.pricing-card h3 {
  margin-top: 0.35rem;
  font-size: 1.25rem;
}

.pricing-card h4 {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--teal-900);
}

.pricing-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8rem;
}

.pricing-label {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-900);
  font-weight: 700;
}

.pricing-price {
  margin: 0;
  font-size: clamp(1.35rem, 2.7vw, 1.9rem);
  font-weight: 800;
  color: var(--ink-900);
  text-align: right;
  line-height: 1.1;
}

.pricing-price span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink-700);
}

.pricing-kv {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 0.5rem;
}

.pricing-k,
.pricing-v {
  margin: 0;
}

.pricing-k {
  color: var(--ink-700);
  font-weight: 700;
}

.pricing-feature-list {
  margin: 0.6rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.48rem;
}

.pricing-feature-list li {
  position: relative;
  padding-left: 1.2rem;
}

.pricing-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--teal-900), var(--teal-500));
}

.pricing-actions {
  margin-top: 1rem;
}

.site-footer {
  margin-top: 2rem;
  background: #122b2a;
  color: #d6ece7;
  padding: 2rem 0;
}

.site-footer a {
  color: #d6ece7;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  background: rgba(20, 38, 36, 0.97);
  color: #fff;
  border-radius: 12px;
  padding: 1rem;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.7rem;
}

.cookie-actions button {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: #fff;
  padding: 0.45rem 0.85rem;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--teal-500);
  border-color: var(--teal-500);
  color: #032120;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: rise 0.7s ease forwards;
}

.reveal.d2 {
  animation-delay: 120ms;
}

.reveal.d3 {
  animation-delay: 240ms;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-3,
  .grid-4,
  .footer-grid,
  .post-list {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .nav {
    position: absolute;
    inset: 74px 0 auto 0;
    background: rgba(245, 250, 249, 0.98);
    border-bottom: 1px solid rgba(84, 88, 90, 0.2);
    display: none;
    padding: 0.85rem 1rem;
    flex-wrap: wrap;
  }

  .nav.open {
    display: flex;
  }

  .mobile-toggle {
    display: inline-block;
  }
}

@media (max-width: 700px) {
  .hero-grid,
  .grid-3,
  .grid-4,
  .post-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .jump-grid {
    grid-template-columns: 1fr;
  }

  .jump-card {
    padding: 0.75rem;
  }

  .pricing-grid,
  .pricing-grid-single {
    grid-template-columns: 1fr;
  }

  .pricing-card-header {
    flex-direction: column;
  }

  .pricing-price {
    text-align: left;
  }

  .pricing-kv {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .hero {
    padding-top: 3.4rem;
  }

  h1 {
    font-size: 2rem;
  }
}

/* ── Profile cards (What best describes you?) ── */

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.profile-card {
  display: flex;
  flex-direction: column;
  padding: 1.4rem;
  border-top: 3px solid var(--teal-700);
  background: linear-gradient(160deg, #ffffff, #f0faf8);
}

.profile-card-header {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.profile-tab-icon {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(69, 181, 170, 0.12);
  border: 1px solid rgba(0, 99, 97, 0.2);
  color: var(--teal-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.profile-tab-quote {
  margin: 0;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--ink-900);
  line-height: 1.3;
}

.profile-tab-sub {
  margin: 0.2rem 0 0;
  font-size: 0.84rem;
  color: var(--ink-700);
  line-height: 1.4;
}

.profile-card-divider {
  margin: 1.1rem 0;
  border: none;
  border-top: 1px solid rgba(84, 88, 90, 0.12);
}

.profile-detail-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--teal-900);
  margin-bottom: 0.65rem;
}

.profile-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--teal-500);
  display: inline-block;
}

.profile-card h3 {
  font-size: 1.1rem;
  color: var(--teal-900);
  margin: 0;
}

.profile-card p {
  margin-top: 0.5rem;
  color: var(--ink-700);
}

.profile-checklist {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  flex: 1;
}

.profile-checklist li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--ink-700);
  font-size: 0.93rem;
}

.profile-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1rem;
  height: 1rem;
  background: rgba(69, 181, 170, 0.15);
  border: 1px solid rgba(0, 99, 97, 0.3);
  border-radius: 50%;
}

.profile-checklist li::after {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 0.58rem;
  width: 0.5rem;
  height: 0.28rem;
  border-left: 1.5px solid var(--teal-900);
  border-bottom: 1.5px solid var(--teal-900);
  transform: rotate(-45deg);
}

.profile-card .profile-app-title {
  margin: 2.3rem 0 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-900);
}

.profile-app-links {
  margin: 0.45rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
}

.profile-app-links a {
  font-weight: 600;
  color: var(--teal-900);
  text-decoration: underline;
  text-underline-offset: 0.14rem;
}

.profile-app-links a:hover {
  color: var(--teal-700);
}

@media (max-width: 700px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }
}