/* ANDROBYTE — HTML / CSS / JS. Farben zentral für beide Modi anpassen. */
@font-face {
  font-family:Byte Sans;
  src:url('assets/fonts/byte-sans.woff') format('woff');
  font-weight:400;
  font-style:normal;
  font-display:swap
}

@font-face {
  font-family:Byte Sans;
  src:url('assets/fonts/byte-sans-bold.woff') format('woff');
  font-weight:600 900;
  font-style:normal;
  font-display:swap
}

:root {
  color-scheme:dark;
  --bg:#08090d;
  --surface:#101117;
  --surface-hover:#15151f;
  --section:#0b0c12;
  --text:#f4f3f9;
  --muted:#a0a1b1;
  --heading-muted:#9393a8;
  --line:#252630;
  --line-soft:#1b1c25;
  --purple:#b39afa;
  --blue:#7691ff;
  --button-text:#10101b;
  --header-bg:rgba(8,9,13,.91);
  --gradient:linear-gradient(110deg,#c5a3ff 5%,#a899ff 48%,#718bff 100%);
  --font:'Byte Sans','Avenir Next','Segoe UI',sans-serif;
  --mono:'SFMono-Regular',Consolas,'Liberation Mono',monospace
}

:root[data-theme=light] {
  color-scheme:light;
  --bg:#faf9fc;
  --surface:#fff;
  --surface-hover:#f4f1fb;
  --section:#f0eef5;
  --text:#161521;
  --muted:#626173;
  --heading-muted:#696578;
  --line:#d8d5e2;
  --line-soft:#e4e1eb;
  --purple:#6943c3;
  --blue:#3959cc;
  --button-text:#fff;
  --header-bg:rgba(250,249,252,.94);
  --gradient:linear-gradient(110deg,#7950bf 5%,#6a55cf 48%,#365dcf 100%)
}

*,*::before,*::after {
  box-sizing:border-box
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:105px
}

body {
  margin:0;
  background:var(--bg);
  color:var(--text);
  font:400 1rem/1.65 var(--font);
  -webkit-font-smoothing:antialiased
}

body,header,section,article {
  transition:background-color .25s ease,color .25s ease,border-color .25s ease
}

a {
  color:inherit;
  text-decoration:none
}

button {
  font:inherit;
  color:inherit;
  cursor:pointer
}

button,a {
  -webkit-tap-highlight-color:transparent
}

img,svg {
  display:block
}

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

svg {
  width:24px;
  height:24px;
  flex-shrink:0
}

button:focus-visible,a:focus-visible {
  outline:2px solid var(--purple);
  outline-offset:6px
}

::selection {
  background:#9e7ef0;
  color:#08090d
}

h1,h2,h3,p {
  margin:0
}

h1,h2,h3 {
  font-weight:700;
  line-height:1.12
}

.container {
  width:min(1240px,calc(100% - 96px));
  margin-inline:auto
}

.section-pad {
  padding-block:112px
}

.image-light {
  display:none
}

[data-theme=light] .image-light {
  display:block
}

[data-theme=light] .image-dark {
  display:none
}

.skip-link {
  position:fixed;
  top:8px;
  left:12px;
  z-index:100;
  padding:10px 18px;
  background:var(--text);
  color:var(--bg);
  transform:translateY(-180%)
}

.skip-link:focus {
  transform:translateY(0)
}

.site-header {
  position:sticky;
  top:0;
  z-index:30;
  background:var(--header-bg);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line-soft)
}

.header-inner {
  height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px
}

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

.wordmark {
  display:block;
  position:relative;
  width:212px;
  height:28px;
  overflow:hidden
}

.wordmark img {
  position:absolute;
  width:315px;
  max-width:none;
  height:315px;
  left:-52px;
  top:-242px;
  mix-blend-mode:screen
}

.wordmark .image-light {
  top:-238px;
  mix-blend-mode:darken
}

.desktop-nav {
  display:flex;
  gap:31px;
  margin-left:auto;
  margin-right:14px
}

.desktop-nav a {
  position:relative;
  color:var(--muted);
  font-size:.9rem;
  padding-block:8px;
  transition:color .2s
}

.desktop-nav a:hover,.desktop-nav a[aria-current=location] {
  color:var(--text)
}

.desktop-nav a[aria-current=location]::after {
  content:'';
  position:absolute;
  height:2px;
  background:var(--purple);
  bottom:0;
  left:0;
  right:0
}

.header-actions {
  display:flex;
  align-items:center;
  gap:22px
}

.icon-button {
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border:1px solid var(--line);
  border-radius:50%;
  background:transparent;
  transition:background .2s,border-color .2s
}

.icon-button:hover {
  background:var(--surface-hover);
  border-color:var(--purple)
}

.icon-button svg {
  width:20px;
  height:20px
}

.moon-icon {
  display:none
}

[data-theme=light] .sun-icon {
  display:none
}

[data-theme=light] .moon-icon {
  display:block
}

.header-team-link {
  font-size:.9rem;
  display:flex;
  align-items:center;
  gap:18px;
  font-weight:600
}

.header-team-link span {
  font:1.3rem var(--font);
  color:var(--purple)
}

.menu-toggle {
  display:none
}

.mobile-nav[hidden] {
  display:none
}

.hero {
  position:relative;
  display:grid;
  grid-template-columns:1.06fr 1fr;
  align-items:center;
  min-height:730px;
  padding-block:61px 84px;
  gap:8px
}

.hero-copy {
  position:relative;
  z-index:2;
  padding-block:35px 42px
}

.eyebrow {
  font:400 .75rem/1.5 var(--mono);
  letter-spacing:.11em;
  display:flex;
  align-items:center;
  gap:12px
}

.hero-copy>.eyebrow {
  color:var(--muted);
  margin-bottom:26px
}

.small-line {
  width:23px;
  height:2px;
  background:var(--purple);
  flex-shrink:0
}

h1 {
  font-size:clamp(4.1rem,6.4vw,6.15rem);
  line-height:1.03;
  letter-spacing:-.055em;
  margin-left:-4px
}

.gradient-text {
  background:var(--gradient);
  background-clip:text;
  -webkit-background-clip:text;
  color:transparent
}

.cursor-mark {
  font-size:.72em;
  display:inline-block;
  color:var(--purple);
  margin-left:.025em;
  transform:translateY(-.03em)
}

.hero-description {
  font-size:1.12rem;
  line-height:1.75;
  color:var(--muted);
  max-width:425px;
  margin-top:28px
}

.button {
  min-height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  padding:15px 23px;
  border-radius:5px;
  font-size:.94rem;
  font-weight:600;
  transition:transform .2s,box-shadow .2s
}

.button-primary {
  background:var(--gradient);
  color:var(--button-text);
  margin-top:32px
}

.button-primary:hover {
  transform:translateY(-3px);
  box-shadow:0 6px 32px #a28bff22
}

.button svg {
  width:20px;
  height:20px
}

.hero-signature {
  display:flex;
  align-items:center;
  gap:17px;
  margin-top:37px
}

.hero-signature p {
  font-size:.8rem;
  line-height:1.6;
  color:var(--muted)
}

.hero-signature strong {
  font-weight:400;
  color:var(--text)
}

.mini-initials {
  display:flex;
  padding-left:0
}

.mini-initials span {
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  border:2px solid var(--bg);
  border-radius:50%;
  background:#262436;
  color:#dfd7f6;
  font:400 .75rem var(--mono);
  margin-left:-8px
}

.mini-initials span:first-child {
  margin-left:0
}

.mini-initials span:nth-child(2) {
  background:#282944
}

.mini-initials span:nth-child(3) {
  background:#232b43
}

.mini-initials span:nth-child(4) {
  background:#303046
}

.mini-initials span:nth-child(5) {
  background:#242a48
}

.hero-visual {
  position:relative;
  min-width:0;
  aspect-ratio:1/1.06;
  isolation:isolate;
  overflow:hidden;
  background:var(--bg)
}

.hero-galaxy {
  position:absolute;
  inset:1% -7%;
  pointer-events:none;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column
}

.galaxy-canvas {
  position:absolute;
  inset:0;
  width:100%;
  height:100%
}

.galaxy-wordmark {
  position:absolute;
  bottom:9%;
  left:50%;
  transform:translateX(-50%);
  color:var(--text);
  font-size:clamp(1.2rem,2.2vw,2rem);
  font-weight:600;
  line-height:1;
  letter-spacing:.44em;
  white-space:nowrap;
  text-shadow:0 0 28px color-mix(in srgb,var(--bg) 82%,transparent)
}

.galaxy-wordmark span {
  background:var(--gradient);
  background-clip:text;
  -webkit-background-clip:text;
  color:transparent
}

.visual-label,.visual-caption {
  position:absolute;
  font:.75rem/1.5 var(--mono);
  letter-spacing:.11em;
  color:var(--muted);
  z-index:1
}

.visual-label {
  top:5px;
  left:21px
}

.visual-caption {
  bottom:5px;
  left:21px;
  right:21px;
  display:flex;
  justify-content:space-between
}

.visual-caption span {
  color:var(--purple)
}

.artwork-corner {
  position:absolute;
  width:15px;
  height:15px;
  border-color:var(--line);
  z-index:1
}

.corner-tl {
  left:0;
  top:0;
  border-top:1px solid;
  border-left:1px solid
}

.corner-br {
  right:0;
  bottom:0;
  border-bottom:1px solid;
  border-right:1px solid
}

.hero-bottom {
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  display:flex;
  justify-content:space-between;
  gap:24px;
  padding-block:20px;
  border-top:1px solid var(--line);
  font-size:.8125rem;
  color:var(--muted)
}

.hero-bottom a {
  display:flex;
  gap:26px;
  align-items:center;
  color:var(--text)
}

.hero-bottom a span {
  font-size:1.2rem;
  color:var(--purple)
}

.services {
  margin-top:38px;
  background:var(--section);
  border-block:1px solid var(--line-soft)
}

.section-heading {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:50px;
  margin-bottom:48px
}

.section-kicker {
  margin-bottom:22px;
  color:var(--muted)
}

.section-kicker>span {
  color:var(--purple);
  margin-right:3px
}

h2 {
  font-size:clamp(2.35rem,3.5vw,3.35rem);
  letter-spacing:-.04em;
  line-height:1.17
}

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

.section-heading>p {
  max-width:355px;
  color:var(--muted);
  font-size:1rem;
  line-height:1.8;
  padding-bottom:3px
}

.service-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px
}

.service-card {
  position:relative;
  padding:32px 28px 28px;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:8px;
  transition:border-color .25s,transform .25s,background .25s
}

.service-card:hover {
  border-color:var(--purple);
  background:var(--surface-hover);
  transform:translateY(-4px)
}

.service-card-top {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:44px
}

.service-icon {
  width:49px;
  height:49px;
  display:grid;
  place-items:center;
  color:var(--purple);
  background:color-mix(in srgb,var(--purple) 9%,transparent);
  border:1px solid color-mix(in srgb,var(--purple) 14%,transparent);
  border-radius:8px
}

.service-icon svg {
  width:27px;
  height:27px
}

.card-number {
  font:.75rem var(--mono);
  color:var(--muted)
}

.service-card h3 {
  font-size:1.3rem;
  letter-spacing:-.02em;
  margin-bottom:15px
}

.service-card>p {
  color:var(--muted);
  font-size:1rem;
  line-height:1.8
}

.service-tags {
  margin:27px 0 0;
  padding:23px 0 0;
  border-top:1px solid var(--line);
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:8px 14px
}

.service-tags li {
  font:.75rem/1.5 var(--mono);
  color:var(--muted)
}

.service-tags li+li::before {
  content:'/';
  margin-right:14px;
  color:var(--purple)
}

.about {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:110px
}

.about-statement>p:last-child {
  color:var(--muted);
  line-height:1.85;
  margin-top:29px;
  max-width:455px
}

.principles {
  padding-top:39px
}

.principle {
  display:flex;
  gap:24px;
  padding-block:26px;
  border-bottom:1px solid var(--line)
}

.principle:first-child {
  padding-top:0
}

.principle-number {
  font:.75rem/1.8 var(--mono);
  color:var(--purple);
  padding-top:2px
}

.principle h3 {
  font-size:1.12rem;
  margin-bottom:11px;
  line-height:1.4
}

.principle p {
  color:var(--muted);
  font-size:1rem;
  line-height:1.8
}

.team {
  background:var(--section);
  border-block:1px solid var(--line-soft)
}

.team-grid {
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:20px
}

.team-photo {
  position:relative;
  overflow:hidden;
  aspect-ratio:4/5;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:7px;
  margin-bottom:24px
}

.team-photo>img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .45s
}

.team-card:hover .team-photo>img {
  transform:scale(1.035)
}

.photo-index {
  position:absolute;
  left:17px;
  top:17px;
  color:#b6b4c9;
  font:.75rem/1.5 var(--mono);
  letter-spacing:.07em
}

.team-card h3 {
  font-size:1.21rem;
  line-height:1.4;
  letter-spacing:-.015em
}

.team-card>p {
  font-size:.875rem;
  color:var(--muted);
  margin-top:5px
}

.site-footer {
  padding-top:57px
}

.footer-top {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  padding-bottom:45px
}

.footer-top>p {
  color:var(--muted);
  font-size:.94rem;
  margin-right:auto
}

.back-to-top {
  font-size:.8125rem;
  display:flex;
  align-items:center;
  gap:22px
}

.back-to-top span {
  width:36px;
  height:36px;
  border:1px solid var(--line);
  border-radius:50%;
  display:grid;
  place-items:center;
  color:var(--purple);
  font-size:1.2rem
}

.footer-bottom {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
  border-top:1px solid var(--line);
  padding-block:22px 27px;
  color:var(--muted);
  font-size:.75rem
}

.footer-bottom>a {
  color:var(--text);
  display:flex;
  gap:13px
}

.footer-bottom>a span {
  color:var(--purple)
}

@media(min-width:1500px) {
  .hero {
    min-height:780px
  }
  .hero-visual {
    margin-left:15px
  }
}

@media(max-width:1100px) {
  .container {
    width:calc(100% - 64px)
  }
  .header-team-link {
    display:none
  }
  .desktop-nav {
    margin-right:0
  }
  .hero {
    min-height:680px
  }
  h1 {
    font-size:clamp(3.5rem,6.7vw,5rem)
  }
  .hero-description {
    max-width:370px
  }
  .hero-visual {
    aspect-ratio:1/1.15
  }
  .visual-label {
    font-size:.75rem
  }
  .hero-galaxy {
    inset:2% -10%
  }
  .section-pad {
    padding-block:85px
  }
  .about {
    gap:60px
  }
  .service-card {
    padding:26px 23px
  }
  .service-card h3 {
    font-size:1.16rem
  }
  .team-grid {
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:35px 18px
  }
  .team-card h3 {
    font-size:1.07rem
  }
  .footer-top>p {
    display:none
  }
}

@media(max-width:800px) {
  .container {
    width:calc(100% - 48px)
  }
  .header-inner {
    height:77px;
    gap:20px
  }
  .desktop-nav {
    gap:22px
  }
  .header-actions {
    gap:13px
  }
  .wordmark {
    width:193px
  }
  .wordmark img {
    width:290px;
    height:290px;
    left:-48px;
    top:-222px
  }
  .wordmark .image-light {
    top:-219px
  }
  .hero {
    min-height:620px;
    grid-template-columns:1.12fr 1fr;
    gap:0;
    padding-block:36px 82px
  }
  .hero-copy {
    padding-block:30px
  }
  .hero-copy>.eyebrow {
    font-size:.75rem;
    letter-spacing:.05em;
    gap:9px
  }
  h1 {
    font-size:clamp(3rem,6.7vw,4rem)
  }
  .hero-description {
    font-size:1rem
  }
  .hero-visual {
    aspect-ratio:1/1.48
  }
  .hero-galaxy {
    inset:5% -23%
  }
  .visual-label {
    left:12px;
    max-width:175px
  }
  .visual-caption {
    left:12px;
    right:8px
  }
  .hero-signature {
    gap:11px;
    margin-top:28px
  }
  .button {
    font-size:.875rem;
    padding-inline:18px;
    gap:15px
  }
  .section-heading {
    gap:30px
  }
  .section-heading>p {
    max-width:275px
  }
  .service-grid {
    grid-template-columns:1fr;
    gap:16px
  }
  .service-card {
    display:grid;
    grid-template-columns:64px 1fr 1fr;
    column-gap:20px;
    align-items:center;
    padding:25px
  }
  .service-card-top {
    margin:0;
    grid-row:1/3;
    align-self:start
  }
  .card-number {
    display:none
  }
  .service-card h3 {
    margin-bottom:8px;
    grid-column:2/4;
    font-size:1.25rem
  }
  .service-card>p {
    grid-column:2/4
  }
  .service-tags {
    grid-column:2/4;
    margin-top:16px;
    padding-top:16px
  }
  .about {
    gap:38px
  }
  .principles {
    padding-top:40px
  }
  .principle {
    gap:15px
  }
  .team-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:35px 24px
  }
  .team-card h3 {
    font-size:1.2rem
  }
  .team-photo {
    margin-bottom:18px
  }
}

@media(max-width:620px) {
  html {
    scroll-padding-top:94px
  }
  .container {
    width:calc(100% - 40px)
  }
  .header-inner {
    height:74px
  }
  .desktop-nav {
    display:none
  }
  .header-actions {
    gap:10px
  }
  .icon-button {
    width:42px;
    height:42px
  }
  .menu-toggle {
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:5px;
    border-radius:50%;
    padding:10px
  }
  .menu-toggle span {
    height:1px;
    width:18px;
    background:var(--text);
    transition:transform .2s
  }
  .menu-toggle[aria-expanded=true] span:first-child {
    transform:translateY(3px) rotate(45deg)
  }
  .menu-toggle[aria-expanded=true] span:last-child {
    transform:translateY(-3px) rotate(-45deg)
  }
  .mobile-nav {
    display:flex;
    flex-direction:column;
    padding:10px 20px 23px;
    border-top:1px solid var(--line);
    background:var(--bg);
    position:absolute;
    top:100%;
    left:0;
    right:0;
    box-shadow:0 18px 30px #0002
  }
  .mobile-nav a {
    padding:14px 4px;
    display:flex;
    justify-content:space-between;
    border-bottom:1px solid var(--line-soft)
  }
  .mobile-nav a span {
    color:var(--purple);
    font:.75rem/1.8 var(--mono)
  }
  .hero {
    display:flex;
    flex-direction:column;
    gap:0;
    align-items:stretch;
    padding-block:49px 66px;
    min-height:0
  }
  .hero-copy {
    padding:0
  }
  .hero-copy>.eyebrow {
    font-size:.75rem;
    letter-spacing:.09em;
    margin-bottom:24px
  }
  h1 {
    font-size:clamp(3.3rem,11.3vw,4.8rem);
    letter-spacing:-.05em;
    line-height:1.07
  }
  .hero-description {
    max-width:360px;
    margin-top:23px;
    font-size:1.06rem
  }
  .button {
    margin-top:26px;
    min-height:53px;
    font-size:.92rem;
    gap:23px
  }
  .hero-signature {
    margin-top:25px
  }
  .hero-visual {
    width:min(390px,100%);
    height:auto;
    aspect-ratio:1/1;
    align-self:center;
    margin-block:32px 20px
  }
  .hero-galaxy {
    inset:-6%
  }
  .visual-label {
    max-width:none;
    top:4px;
    left:14px;
    font-size:.75rem
  }
  .visual-caption {
    left:14px;
    right:14px;
    font-size:.75rem
  }
  .hero-bottom {
    font-size:.75rem;
    padding-block:16px;
    gap:15px
  }
  .hero-bottom>span {
    max-width:180px
  }
  .hero-bottom a {
    gap:12px;
    flex-shrink:0
  }
  .services {
    margin-top:25px
  }
  .section-pad {
    padding-block:64px
  }
  .section-heading {
    display:block;
    margin-bottom:33px
  }
  .section-heading>p {
    margin-top:24px;
    max-width:390px;
    font-size:1rem
  }
  h2 {
    font-size:clamp(2rem,8.5vw,2.8rem)
  }
  .section-kicker {
    font-size:.75rem;
    margin-bottom:19px
  }
  .service-card {
    grid-template-columns:48px minmax(0,1fr);
    padding:23px 20px;
    column-gap:18px
  }
  .service-icon {
    width:44px;
    height:44px
  }
  .service-card h3 {
    font-size:1.16rem;
    line-height:1.35
  }
  .service-card>p {
    font-size:1rem
  }
  .service-tags {
    gap:7px 11px
  }
  .service-tags li {
    font-size:.75rem
  }
  .service-tags li+li::before {
    margin-right:11px
  }
  .about {
    display:block
  }
  .about-statement>p:last-child {
    margin-top:22px
  }
  .principles {
    padding-top:36px
  }
  .principle {
    gap:20px;
    padding-block:25px
  }
  .principle h3 {
    font-size:1.1rem
  }
  .team-grid {
    gap:29px 15px
  }
  .team-card h3 {
    font-size:1rem
  }
  .team-card>p {
    font-size:.8125rem
  }
  .team-photo {
    margin-bottom:14px
  }
  .photo-index {
    left:11px;
    top:11px;
    font-size:.75rem
  }
  .site-footer {
    padding-top:36px
  }
  .footer-top {
    gap:20px;
    flex-wrap:wrap;
    padding-bottom:29px
  }
  .back-to-top {
    font-size:.75rem;
    gap:12px
  }
  .footer-bottom {
    flex-wrap:wrap;
    gap:11px 20px;
    justify-content:space-between;
    padding-block:20px 25px
  }
  .footer-credit {
    flex-basis:100%;
    font-size:.75rem
  }
  .wordmark {
    width:172px;
    height:26px
  }
  .wordmark img {
    width:258px;
    height:258px;
    left:-43px;
    top:-197px
  }
  .wordmark .image-light {
    top:-194px
  }
}

@media(max-width:360px) {
  .container {
    width:calc(100% - 32px)
  }
  .header-inner {
    gap:10px
  }
  .header-actions {
    gap:7px
  }
  .wordmark {
    width:155px
  }
  .wordmark img {
    width:233px;
    height:233px;
    left:-39px;
    top:-176px
  }
  .wordmark .image-light {
    top:-173px
  }
  .hero-copy>.eyebrow {
    letter-spacing:.025em
  }
  h1 {
    font-size:3.12rem
  }
  .service-card {
    display:block
  }
  .service-card-top {
    margin-bottom:23px
  }
  .service-card h3 {
    font-size:1.22rem
  }
  .team-grid {
    gap:26px 12px
  }
  .team-card h3 {
    font-size:.94rem
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto
  }
  *,*::before,*::after {
    transition:none!important;
    animation:none!important
  }
}

@media print {
  .site-header {
    position:static
  }
  .header-actions,.desktop-nav,.hero-bottom,.back-to-top {
    display:none
  }
  .container {
    width:100%
  }
  .section-pad {
    padding-block:30px
  }
  .hero {
    min-height:0;
    padding-block:25px
  }
  .service-card,.team-card {
    break-inside:avoid
  }
  .hero-visual {
    max-width:400px
  }
}

@media(min-width:361px) and (max-width:620px) {
  .service-card h3,.service-card>p,.service-tags {
    grid-column:2
  }
}
