:root {
  --radius: 14px;
  --content-max: 1120px;
  --prose-max: 70ch;
  --shadow: 0 16px 32px rgba(15, 23, 42, 0.08);

  --paper: #FFFFFF;
  --bg: #F8FAFC;
  --surface: #FFFFFF;

  --text: #0F172A;
  --muted: #334155;
  --border: #E2E8F0;

  --primary: #0EB5D3;
  --primary-700: #087F92;
  --accent: #0EB5D3;
  --focus: rgba(14, 181, 211, 0.35);

  --bg-dark: #0B1220;
  --surface-dark: #0F1A2E;
  --on-dark: #E6EDF7;
  --on-dark-muted: #AEB9CC;
  --border-dark: rgba(229, 231, 235, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

img,
svg {
  max-width: 100%;
  height: auto;
}

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

a:hover,
a:focus {
  text-decoration: underline;
}

p {
  margin: 0 0 1rem;
  text-align: justify;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.1;
  color: var(--text);
}

h1 {
  font-size: 44px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 22px;
}

ul {
  padding-left: 1.2rem;
  margin: 0 0 1.2rem;
}

li {
  margin: 0 0 0.5rem;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

button {
  cursor: pointer;
}

input[type="checkbox"] {
  accent-color: var(--primary);
}

:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--focus);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.5rem;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
}

.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.prose {
  max-width: var(--prose-max);
}

.content-width {
  max-width: 70ch;
}

.main {
  padding-bottom: 4rem;
}

.header {
  position: sticky;
  top: 0;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-dark);
  z-index: 999;
  color: var(--on-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--on-dark);
}

.brand-logo {
  height: 32px;
  width: auto;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.nav a {
  color: var(--on-dark);
  font-weight: 500;
}

.nav a:hover,
.nav a:focus {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  background: var(--surface-dark);
  border: 1px solid var(--border-dark);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--on-dark);
}

.section {
  padding: 3.4rem 0;
}

.section-tight {
  padding: 2.1rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
  margin-bottom: 1.5rem;
}

.section-head h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 3px;
  background: var(--accent);
  border-radius: 999px;
}

.hero {
  padding: 3.2rem 0 2.6rem;
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(14, 181, 211, 0.22), transparent 60%),
    radial-gradient(900px 420px at 90% 0%, rgba(14, 181, 211, 0.12), transparent 60%),
    var(--bg-dark);
  color: var(--on-dark);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.hero-grid.hero-split {
  align-items: flex-start;
}

.hero .container {
  max-width: 980px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-right {
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-dark);
  background: var(--surface-dark);
  box-shadow: 0 20px 40px rgba(3, 7, 18, 0.35);
  text-align: center;
  align-items: center;
  max-width: 400px;
  justify-content: flex-start;
}

.hero-profile {
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.hero-copy {
  display: grid;
  gap: 0.95rem;
}

.hero-copy p {
  margin: 0;
}

.hero-info {
  display: grid;
  gap: 0.3rem;
  text-align: center;
}

.hero-photo {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  border: 1px solid var(--border-dark);
  background: rgba(229, 231, 235, 0.08);
  display: block;
  object-fit: cover;
  box-shadow: 0 18px 36px rgba(3, 7, 18, 0.45), 0 0 0 4px rgba(14, 181, 211, 0.12);
}

.hero-title {
  color: var(--on-dark);
}

.hero-name {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--on-dark);
  text-align: center;
}

.hero-location {
  margin: 0;
  color: var(--on-dark-muted);
  font-size: 0.95rem;
  text-align: center;
}

.hero-description {
  margin: 0;
  color: var(--on-dark);
}

.hero p {
  color: var(--on-dark);
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
  margin-top: 0;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border-dark);
  justify-content: center;
  align-items: center;
}

.hero-actions .btn {
  width: auto;
  white-space: nowrap;
  font-size: 0.95rem;
  padding: 0.6rem 1.15rem;
}

.credibility-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem 1.5rem;
  color: var(--muted);
}

.credibility-list li {
  margin: 0;
}

.about-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.about-card {
  border: 1px solid rgba(14, 181, 211, 0.35);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  background: var(--surface);
  font-size: 0.98rem;
  color: var(--text);
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.06);
  text-align: left;
  min-height: 96px;
  display: flex;
  align-items: center;
}

.workflow {
  position: relative;
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 0.4rem;
}

.workflow::before {
  display: none;
}

.workflow-step {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.workflow-step::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 48px;
  bottom: -1rem;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}

.workflow-step:last-child::after {
  display: none;
}

.workflow-marker {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 20px rgba(14, 181, 211, 0.35);
  position: relative;
  z-index: 1;
}

.workflow-body {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.workflow-body h3 {
  margin-bottom: 0.4rem;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.deliverable-card {
  border-left: 4px solid var(--primary);
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
  align-items: stretch;
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.45rem;
  background: var(--surface);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--text);
}

.service-card {
  --service-head: 11rem;
  --service-body: 28rem;
  --service-foot: 10rem;
  border-top: 3px solid var(--primary);
  background: linear-gradient(180deg, rgba(14, 181, 211, 0.08), var(--surface) 45%);
  display: grid;
  grid-template-rows: var(--service-head) var(--service-body) var(--service-foot);
  align-content: start;
  height: 100%;
}

.service-card .card-header {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0;
  padding-bottom: 0.35rem;
}

.service-card .card-header h3 {
  margin-bottom: 0;
}

.card-header {
  margin-bottom: 0.5rem;
}

.card-lede {
  margin: 0;
}

.card-body {
  border-top: 1px solid var(--border);
  padding-top: 0.5rem;
  min-height: 0;
  display: flex;
  flex: 1;
  align-items: flex-start;
}

.card-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.card-list li {
  margin-bottom: 0.35rem;
}

.service-card .card-body {
  display: block;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.service-card .card-list {
  line-height: 1.5;
}

.service-card .card-list li {
  margin-bottom: 0.25rem;
}

.card-list li::marker {
  color: var(--primary);
}

.card-footer {
  margin-top: 0;
  border-top: 1px solid var(--border);
  padding-top: 0.4rem;
  display: grid;
  gap: 0.3rem;
  font-size: 0.95rem;
  color: var(--muted);
  min-height: 0;
}

.card-footer p {
  margin: 0;
}

.card-footer strong {
  color: var(--text);
}

.service-card .card-footer {
  padding-top: 0.5rem;
  padding-bottom: 0.35rem;
  gap: 0.35rem;
  line-height: 1.5;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.example-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.example-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow);
}

.example-list summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
}

.example-list pre {
  margin: 0.8rem 0 0;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  background: var(--bg);
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.92rem;
  white-space: pre-wrap;
  border: 1px solid var(--border);
}

.project-card {
  --project-section: 9.5rem;
  --project-focus: 12rem;
  --project-data: 13rem;
  --project-delivered: 9.5rem;
  --project-outcome: 9.5rem;
  --project-paper: 4.5rem;
  gap: 0.75rem;
  display: grid;
  grid-template-rows: auto auto var(--project-paper);
  height: 100%;
}

.project-card p {
  color: var(--text);
}

.project-sections {
  display: grid;
  gap: 0;
  grid-template-rows: var(--project-focus) var(--project-data) var(--project-delivered) var(--project-outcome);
  align-content: start;
  flex: 1;
}

.project-section {
  padding: 0.55rem 0;
  border-top: 1px solid var(--border);
  min-height: 0;
}

.project-section p {
  margin: 0;
  line-height: 1.55;
}

.project-section:first-child {
  border-top: none;
  padding-top: 0;
}

.project-label {
  margin: 0 0 0.25rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary-700);
  font-weight: 600;
  text-align: left;
}

.project-paper {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 0.6rem;
  padding-bottom: 0.2rem;
  font-size: 1rem;
  color: var(--text);
  display: grid;
  gap: 0.2rem;
  line-height: 1.5;
}

.project-paper .project-label {
  margin: 0 0 0.15rem;
}

.project-paper .project-meta {
  margin: 0;
}

.project-paper a {
  color: inherit;
  display: block;
  text-decoration: underline;
}

.project-paper span {
  color: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.7rem 1.5rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--primary-700);
  color: #fff;
}

.btn-secondary {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}

.hero .btn-secondary {
  border-color: var(--border-dark);
  color: var(--on-dark);
}

.list-tight {
  margin: 0;
  padding-left: 1.1rem;
}

.muted {
  color: var(--muted);
}

.cta {
  background: var(--bg-dark);
  color: var(--on-dark);
  border: 1px solid var(--border-dark);
  border-radius: 18px;
  padding: 2.2rem;
  box-shadow: var(--shadow);
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.cta h2 {
  color: var(--on-dark);
  text-align: center;
  text-wrap: balance;
}

.cta p {
  color: var(--on-dark-muted);
  text-align: center;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}

.cta-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.9rem;
  font-size: 0.95rem;
  color: var(--on-dark-muted);
}

.cta .btn-secondary {
  border-color: var(--border-dark);
  color: var(--on-dark);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
  flex-shrink: 0;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  background: var(--surface);
  box-shadow: var(--shadow);
  max-width: 760px;
  margin: 0 auto;
}

#contact {
  background: var(--bg);
  color: var(--text);
}

#contact .section-head h2 {
  color: var(--text);
}

#contact .section-head h2::after {
  background: var(--accent);
}

#contact .contact-card {
  background: var(--surface-dark);
  border-color: var(--border-dark);
}

#contact .contact-label {
  color: var(--on-dark-muted);
}

#contact .contact-value,
#contact .contact-value a {
  color: var(--on-dark);
}

#contact .contact-actions .btn-secondary {
  border-color: var(--border-dark);
  color: var(--on-dark);
}

#contact .contact-value a {
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
}

#contact .contact-value a:hover,
#contact .contact-value a:focus {
  text-decoration: underline;
  color: var(--primary);
}

.contact-list {
  display: grid;
  gap: 0.6rem;
  margin: 0;
}

.contact-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0.75rem;
  align-items: baseline;
}

.contact-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.contact-value {
  color: var(--text);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0.75rem;
}

.contact-actions .btn {
  white-space: nowrap;
  width: 100%;
}

.page-hero {
  padding: 3.4rem 0 2.2rem;
  border-bottom: 1px solid var(--border-dark);
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(14, 181, 211, 0.22), transparent 60%),
    radial-gradient(900px 420px at 90% 0%, rgba(14, 181, 211, 0.12), transparent 60%),
    var(--bg-dark);
  color: var(--on-dark);
  text-align: center;
}

.page-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.page-title {
  margin-bottom: 0.6rem;
  color: var(--on-dark);
}

.page-subtitle {
  color: var(--on-dark-muted);
  max-width: 70ch;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}

.breadcrumb a {
  color: var(--on-dark-muted);
  text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus {
  color: var(--on-dark);
  text-decoration: underline;
}

.breadcrumb-sep {
  color: var(--on-dark-muted);
}

.page-content {
  padding: 3rem 0 4rem;
}

.footer {
  border-top: 1px solid var(--border-dark);
  padding: 1.3rem 0 1.6rem;
  background: var(--bg-dark);
  color: var(--on-dark);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
}

.footer-logo {
  height: 24px;
  width: auto;
  display: block;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  align-items: center;
  justify-content: space-between;
}

.footer-title {
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.footer-links a {
  color: var(--on-dark-muted);
  font-weight: 500;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  inset: 0;
  background: rgba(11, 18, 32, 0.55);
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  z-index: 1000;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-card {
  background: var(--surface);
  border-radius: 12px;
  max-width: 460px;
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.cookie-card p {
  margin: 0;
}

.cookie-header {
  display: grid;
  gap: 0.35rem;
}

.cookie-header h2 {
  font-size: 1.2rem;
  margin-bottom: 0;
}

.cookie-options {
  margin: 0.7rem 0;
  display: grid;
  gap: 0.6rem;
}

.cookie-option {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  background: var(--surface);
}

.option-label {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  align-items: center;
}

.option-title {
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.cookie-footnote {
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

.pill {
  background: rgba(14, 181, 211, 0.14);
  color: var(--primary);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

@media (min-width: 720px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (min-width: 960px) {
  .hero-grid.hero-split {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  }

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

@media (min-width: 980px) {
  .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .nav {
    position: absolute;
    top: 68px;
    right: 1.5rem;
    background: var(--surface-dark);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    box-shadow: var(--shadow);
    display: none;
  }

  body.nav-open .nav {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 18px;
  }

  .hero {
    padding: 4.5rem 0 3.5rem;
  }

  .hero-right {
    align-self: stretch;
  }

  .workflow {
    gap: 1rem;
  }

  .workflow-step {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .workflow-step::after {
    left: 18px;
    top: 36px;
    bottom: -0.8rem;
  }

  .workflow-marker {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 0.8rem;
  }

  .workflow-body {
    padding: 0.8rem 0.95rem;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn {
    width: 100%;
  }

  .hero-actions .btn {
    width: auto;
  }

  .contact-card {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  #contact .contact-value a {
    white-space: normal;
  }

  .service-card .card-header {
    min-height: 0;
  }

  .service-card {
    grid-template-rows: auto auto auto;
    height: auto;
  }

  .card-body,
  .card-footer {
    min-height: 0;
  }

  .project-card {
    grid-template-rows: auto auto auto;
    height: auto;
  }

  .project-sections {
    grid-template-rows: auto;
  }

  .project-section {
    min-height: 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
