:root {
  color-scheme: light;
  --bg: #f7f3ed;
  --surface: #fffefa;
  --surface-soft: #f3ece3;
  --surface-accent: #f8ecee;
  --surface-warm: #eadfce;
  --text: #1f2320;
  --ink: #1f2320;
  --muted: #6f6961;
  --line: #e3dcd2;
  --accent: #93414d;
  --accent-dark: #7d3440;
  --link: #315f78;
  --warning: #8a5b14;
  --shadow: 0 18px 46px rgba(82, 34, 42, 0.09);
  --content: 1120px;
  font-family:
    "Pretendard",
    "Apple SD Gothic Neo",
    "Malgun Gothic",
    system-ui,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.68;
  word-break: keep-all;
}

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

p,
li,
dd,
figcaption,
.tag-list span {
  overflow-wrap: anywhere;
}

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

a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(147, 65, 77, 0.48);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--ink);
  padding: 0.65rem 0.9rem;
  color: #ffffff;
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 76px;
  padding: 0 32px;
  border-bottom: 1px solid rgba(227, 220, 210, 0.9);
  background: rgba(255, 254, 250, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #d9b8bd;
  border-radius: 10px;
  background: var(--surface-accent);
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--ink);
  line-height: 1.35;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  min-width: 0;
}

.top-nav a {
  flex: 0 0 auto;
  border-radius: 6px;
  padding: 0.55rem 0.66rem;
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 750;
  white-space: nowrap;
}

.top-nav a:hover,
.top-nav a.is-active {
  background: var(--surface-accent);
  color: var(--accent-dark);
}

.section-band {
  padding: 88px 32px;
}

.section-band[id] {
  scroll-margin-top: 92px;
}

.section-band > * {
  width: min(var(--content), 100%);
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: -0.025em;
}

h1 {
  max-width: 820px;
  margin-bottom: 1.25rem;
  font-size: clamp(2.65rem, 4.4vw, 4rem);
  line-height: 1.13;
}

h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  line-height: 1.25;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.08rem;
  line-height: 1.4;
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: #55514c;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding-top: 64px;
  padding-bottom: 64px;
  background:
    radial-gradient(circle at 84% 18%, rgba(147, 65, 77, 0.12), transparent 31%),
    linear-gradient(180deg, #fffefa 0%, #f7f3ed 82%);
}

.hero > * {
  width: 100%;
}

.hero-summary {
  max-width: 810px;
  margin-bottom: 0.7rem;
  color: #4e4a45;
  font-size: 1.05rem;
}

.hero-summary strong {
  color: var(--accent-dark);
}

.hero-live-line {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 1.1rem;
  color: var(--accent-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-live-line > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  background: #e7f3e9;
  padding: 0.22rem 0.5rem;
  color: #285b35;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.hero-live-line > span:first-child::before {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #2f8a4b;
  content: "";
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin: 1.6rem 0 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0.7rem 1rem;
  font-weight: 850;
  line-height: 1.2;
}

a.button {
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    background-color 150ms ease;
}

a.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(82, 34, 42, 0.12);
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #fffefa;
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  background: var(--surface);
  color: var(--ink);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.hero-facts div {
  min-height: 96px;
  padding: 1rem;
  background: var(--surface);
}

.hero-facts dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0.35rem 0 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  padding: 1.35rem;
}

.live-project-card {
  overflow: hidden;
  border-top: 4px solid var(--accent);
  background: rgba(255, 254, 250, 0.97);
  padding: 1.5rem;
}

.live-project-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.live-state {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #285b35;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.live-state::before {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #2f8a4b;
  box-shadow: 0 0 0 4px #e7f3e9;
  content: "";
}

.live-project-name {
  margin: 1rem 0 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.live-project-domain {
  margin: 0.35rem 0 1rem;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
}

.live-project-description {
  margin-bottom: 1rem;
  color: #514a45;
}

.live-project-list {
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 0.9rem 0 0.9rem 1.2rem;
  color: #55514c;
  font-size: 0.86rem;
}

.live-project-list li + li {
  margin-top: 0.3rem;
}

.live-project-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  border-radius: 7px;
  background: var(--accent);
  padding: 0.7rem 0.9rem;
  color: #fffefa;
  font-weight: 850;
}

.live-project-link:hover {
  background: var(--accent-dark);
}

.live-project-note {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.experience-section {
  background: var(--bg);
}

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

.experience-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(82, 34, 42, 0.05);
  padding: 1.5rem;
}

.experience-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.experience-card h3,
.experience-kicker,
.experience-summary,
.experience-proof,
.tag-list {
  margin: 0;
}

.experience-kicker {
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.experience-badge {
  flex: 0 0 auto;
  border: 1px solid #d9b8bd;
  border-radius: 999px;
  background: var(--surface-accent);
  padding: 0.32rem 0.7rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  white-space: nowrap;
}

.experience-badge.secondary {
  border-color: #d4c8ba;
  background: var(--surface-soft);
  color: #5b5148;
}

.experience-summary {
  color: #4e4a45;
}

.experience-card ul {
  margin: 1rem 0 1.2rem;
  padding-left: 1.2rem;
}

.experience-card li + li {
  margin-top: 0.45rem;
}

.previous-experience {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 1.5rem;
  align-items: center;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 1.1rem 1.25rem;
}

.previous-experience h3,
.previous-experience p {
  margin: 0;
}

.previous-experience h3 {
  font-size: 1rem;
}

.previous-experience > p {
  color: #55514c;
  font-size: 0.92rem;
}

.experience-proof {
  margin-top: auto;
  border-left: 3px solid var(--accent);
  background: var(--surface-accent);
  padding: 0.75rem 0.85rem;
  color: #514448;
  font-size: 0.9rem;
}

.experience-proof strong {
  display: block;
  color: var(--accent-dark);
  font-size: 0.76rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.tag-list span {
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface-soft);
  padding: 0.3rem 0.52rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
}

.disclosure-note {
  margin: 20px 0 0;
  border: 1px dashed #ccb67c;
  border-radius: 8px;
  background: #fffaf0;
  padding: 0.9rem 1rem;
  color: #664c20;
  font-size: 0.9rem;
}

.project-section {
  background: var(--surface-accent);
}

.project-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 34px;
}

.project-heading h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(2.5rem, 4.8vw, 4.25rem);
}

.project-lead {
  max-width: 720px;
  margin-bottom: 0;
  color: #55484b;
  font-size: 1.05rem;
}

.project-status {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
}

.project-status span {
  border: 1px solid #dec5c9;
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.82);
  padding: 0.38rem 0.68rem;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 850;
  white-space: nowrap;
}

.project-status .live-dot::before {
  display: inline-block;
  width: 0.48rem;
  height: 0.48rem;
  margin-right: 0.38rem;
  border-radius: 50%;
  background: #17a673;
  content: "";
}

.project-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 38px;
  align-items: start;
}

.project-copy > h3 {
  font-size: 1.3rem;
}

.project-copy > p {
  color: #514a45;
}

.project-facts {
  display: grid;
  margin: 1.35rem 0 0;
  border-top: 1px solid #dec5c9;
}

.project-facts div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 1rem;
  border-bottom: 1px solid #dec5c9;
  padding: 0.8rem 0;
}

.project-facts dt {
  color: var(--accent-dark);
  font-weight: 850;
}

.project-facts dd {
  margin: 0;
  color: #514a45;
}

.project-tags {
  margin-top: 1.2rem;
}

.project-tags span {
  border-color: #dec5c9;
  background: rgba(255, 254, 250, 0.86);
  color: var(--accent-dark);
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1.35rem;
}

.text-link,
.contact-dev-link {
  color: var(--link);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.scope-note {
  margin: 1.2rem 0 0;
  border-left: 3px solid #7895b9;
  padding-left: 0.85rem;
  color: #506174;
  font-size: 0.88rem;
}

.project-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid #dec5c9;
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.architecture-card {
  padding: 1.25rem;
  background:
    linear-gradient(rgba(147, 65, 77, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147, 65, 77, 0.04) 1px, transparent 1px),
    #fffdf9;
  background-size: 22px 22px;
}

.architecture-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.status-pill {
  border: 1px solid #d9b8bd;
  border-radius: 999px;
  background: var(--surface-accent);
  padding: 0.25rem 0.5rem;
  color: var(--accent);
  letter-spacing: 0.03em;
}

.architecture-flow {
  display: grid;
  justify-items: center;
}

.architecture-node {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: 0.85rem 1rem;
  text-align: center;
}

.architecture-node.core {
  border-color: #c99099;
  background: var(--surface-accent);
}

.architecture-node small,
.architecture-node strong,
.architecture-node span {
  display: block;
}

.architecture-node small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.architecture-node strong {
  color: var(--ink);
}

.architecture-node span {
  color: #615954;
  font-size: 0.78rem;
}

.flow-arrow {
  color: var(--accent);
  font-weight: 900;
  line-height: 2;
}

.architecture-infra {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  margin-top: 1rem;
}

.architecture-infra span {
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface-soft);
  padding: 0.48rem 0.35rem;
  color: #5b5148;
  font-size: 0.7rem;
  font-weight: 800;
  text-align: center;
}

.project-visual figcaption {
  border-top: 1px solid var(--line);
  padding: 0.85rem 1rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.problem-section {
  background: var(--surface);
}

.case-study-list {
  display: grid;
  gap: 24px;
}

.case-study {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(82, 34, 42, 0.055);
  padding: 1.5rem;
}

.case-study-heading {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  margin-bottom: 1.15rem;
}

.case-number {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: var(--surface-accent);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
}

.case-study-heading h3 {
  margin: 0;
  font-size: 1.22rem;
}

.case-study-heading p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.data-flow {
  display: flex;
  align-items: stretch;
  gap: 0.45rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(rgba(147, 65, 77, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147, 65, 77, 0.035) 1px, transparent 1px),
    #fbf8f4;
  background-size: 20px 20px;
  padding: 1rem;
  scrollbar-width: thin;
}

.data-node {
  display: grid;
  flex: 1 1 0;
  min-width: 135px;
  place-content: center;
  min-height: 88px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 254, 250, 0.96);
  padding: 0.7rem;
  text-align: center;
}

.data-node.accent {
  border-color: #c99099;
  background: var(--surface-accent);
}

.data-node small,
.data-node strong {
  display: block;
}

.data-node small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
}

.data-node strong {
  margin-top: 0.28rem;
  color: var(--ink);
  font-size: 0.84rem;
  line-height: 1.45;
}

.data-arrow {
  align-self: center;
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 900;
}

.case-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 1rem;
}

.case-summary section {
  border-top: 3px solid #d9b8bd;
  background: var(--surface-soft);
  padding: 0.9rem;
}

.case-summary section:nth-child(2) {
  border-top-color: var(--accent);
}

.case-summary section:nth-child(3) {
  border-top-color: #63866a;
}

.case-summary h4 {
  margin: 0 0 0.45rem;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.case-summary p {
  margin: 0;
  color: #514a45;
  font-size: 0.86rem;
  line-height: 1.65;
}

.stack-section {
  background: var(--surface-soft);
}

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

.stack-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 1.15rem;
}

.stack-grid h3 {
  color: var(--accent-dark);
  font-size: 0.9rem;
  letter-spacing: 0;
}

.stack-grid p {
  margin: 0;
  color: #55514c;
  font-size: 0.9rem;
}

.contact-section {
  min-height: calc(100vh - 76px);
  background: var(--surface-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.contact-grid article {
  min-width: 0;
  min-height: 120px;
  background: var(--surface);
  padding: 1rem;
}

.contact-grid span,
.contact-grid strong,
.contact-grid a {
  display: block;
}

.contact-grid span {
  margin-bottom: 0.7rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-grid strong,
.contact-grid a {
  color: var(--accent-dark);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--accent) 36%, transparent);
  text-underline-offset: 0.22em;
}

.contact-grid a:hover {
  color: var(--accent);
}

.contact-dev-link {
  display: inline-flex;
  gap: 0.35rem;
  margin-top: 1.25rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 28px 32px;
  border-top: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-size: 0.88rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  a.button {
    transition: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    display: grid;
    gap: 0.45rem;
    padding: 10px 20px 0;
  }

  .top-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
  }

  .top-nav::-webkit-scrollbar {
    display: none;
  }

  .section-band[id] {
    scroll-margin-top: 126px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-panel {
    max-width: 680px;
  }

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

  .project-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-status {
    justify-content: flex-start;
  }

  .project-overview {
    grid-template-columns: 1fr;
  }

  .project-visual {
    max-width: 680px;
  }

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

@media (max-width: 720px) {
  .section-band {
    padding: 64px 20px;
  }

  h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .hero {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .hero-facts,
  .experience-grid,
  .previous-experience,
  .stack-grid {
    grid-template-columns: 1fr;
  }

  .experience-card header {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-study {
    padding: 1.1rem;
  }

  .data-flow {
    align-items: stretch;
    flex-direction: column;
    overflow-x: visible;
  }

  .data-node {
    width: 100%;
    min-height: 76px;
  }

  .data-arrow {
    align-self: center;
    line-height: 1;
    transform: rotate(90deg);
  }

  .case-summary {
    grid-template-columns: 1fr;
  }

  .project-facts div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 20px;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .top-nav a {
    padding: 0.45rem 0.25rem;
    font-size: 0.78rem;
  }

  .top-nav {
    justify-content: space-between;
  }

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

  .button {
    width: 100%;
  }

  .architecture-infra,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .architecture-infra span {
    text-align: left;
  }
}
