:root {
  --bg: #f7faf9;
  --paper: rgba(255, 255, 255, 0.82);
  --paper-strong: #ffffff;
  --text: #102026;
  --muted: #60727b;
  --line: rgba(17, 53, 61, 0.14);
  --teal: #007579;
  --teal-dark: #044f53;
  --mint: #dff4ee;
  --amber: #f0a72a;
  --coral: #ee6f57;
  --blue: #226a9a;
  --shadow: 0 26px 80px rgba(12, 39, 45, 0.13);
  --shadow-soft: 0 16px 44px rgba(12, 39, 45, 0.09);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(115deg, rgba(223, 244, 238, 0.74), transparent 34%),
    linear-gradient(240deg, rgba(240, 167, 42, 0.18), transparent 31%),
    var(--bg);
  color: var(--text);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(16, 32, 38, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 32, 38, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

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

.ambient {
  position: fixed;
  z-index: -2;
  width: 34vw;
  aspect-ratio: 1;
  border-radius: 999px;
  filter: blur(58px);
  opacity: 0.55;
  animation: drift 18s ease-in-out infinite alternate;
}

.ambient-one {
  left: -8vw;
  top: 8vh;
  background: rgba(0, 117, 121, 0.22);
}

.ambient-two {
  right: -12vw;
  bottom: 4vh;
  background: rgba(238, 111, 87, 0.18);
  animation-delay: -7s;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0, 117, 121, 0.26);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal-dark);
  font-size: 18px;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.nav {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 34px rgba(12, 39, 45, 0.07);
}

.nav a {
  position: relative;
  padding: 9px 13px;
  border-radius: 999px;
  color: #40535b;
  font-size: 13px;
  font-weight: 750;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(0, 117, 121, 0.1);
  color: var(--teal-dark);
  transform: translateY(-1px);
}

.header-action {
  justify-self: end;
  padding: 12px 18px;
  border-radius: 14px;
  background: var(--text);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-soft);
}

.hero,
.section,
.footer {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) 430px;
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 84px);
  padding: 54px 0 72px;
}

.hero-copy {
  position: relative;
}

.overline,
.section-kicker,
.section-heading span {
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(66px, 9vw, 124px);
  line-height: 0.9;
  letter-spacing: 0;
}

.role {
  max-width: 720px;
  margin: 28px 0 0;
  color: #31474f;
  font-size: clamp(21px, 2.3vw, 32px);
  font-weight: 620;
  line-height: 1.22;
}

.hero-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid rgba(0, 117, 121, 0.32);
  border-radius: 15px;
  font-size: 14px;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(12, 39, 45, 0.16);
}

.button.primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 18px 42px rgba(0, 117, 121, 0.24);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal-dark);
}

.hero-card {
  position: relative;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.58)),
    radial-gradient(circle at 18% 12%, rgba(240, 167, 42, 0.24), transparent 34%);
  box-shadow: var(--shadow);
}

.hero-card::after {
  position: absolute;
  inset: auto -60px -95px auto;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  content: "";
  background: rgba(0, 117, 121, 0.12);
}

.profile-orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: min(310px, 70vw);
  aspect-ratio: 1;
  margin: 0 auto 28px;
}

.orbit-ring {
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(0, 117, 121, 0.42);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}

.portrait-frame {
  position: relative;
  width: 218px;
  aspect-ratio: 0.82;
  margin: 0;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.78);
  border-radius: 44% 56% 45% 55% / 31% 33% 67% 69%;
  background: #d9e7e7;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14), 0 22px 54px rgba(12,39,45,0.28);
  animation: morph 8s ease-in-out infinite;
}

.portrait-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  transform: scale(1.04);
}

.orbit-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 9px rgba(240, 167, 42, 0.16);
}

.dot-a {
  top: 26px;
  right: 82px;
  animation: float 5s ease-in-out infinite;
}

.dot-b {
  left: 42px;
  bottom: 76px;
  background: var(--teal);
  box-shadow: 0 0 0 9px rgba(0, 117, 121, 0.14);
  animation: float 6s ease-in-out infinite -2s;
}

.dot-c {
  right: 34px;
  bottom: 110px;
  background: var(--coral);
  box-shadow: 0 0 0 9px rgba(238, 111, 87, 0.14);
  animation: float 7s ease-in-out infinite -4s;
}

.quick-facts {
  display: grid;
  gap: 14px;
  margin: 0;
}

.quick-facts div {
  display: grid;
  gap: 3px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: var(--text);
  font-weight: 780;
  overflow-wrap: anywhere;
}

.hero-metrics {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hero-metrics article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-soft);
}

.hero-metrics strong {
  display: block;
  color: var(--teal-dark);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-weight: 700;
}

.target-roles {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  max-width: 980px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-soft);
}

.target-roles span {
  margin-right: 10px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.target-roles strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff;
  color: #31474f;
  font-size: 13px;
  box-shadow: 0 8px 22px rgba(12, 39, 45, 0.06);
}

.section {
  padding: 92px 0;
  border-top: 1px solid var(--line);
}

.profile-layout,
.section-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.25;
}

p {
  margin: 0;
}

.lead {
  color: #31474f;
  font-size: clamp(19px, 2vw, 24px);
}

.timeline {
  position: relative;
  display: grid;
  gap: 22px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 168px;
  width: 2px;
  content: "";
  background: linear-gradient(var(--teal), var(--amber), var(--coral));
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 78px;
}

.timeline-item::before {
  position: absolute;
  top: 27px;
  left: 159px;
  z-index: 1;
  width: 20px;
  height: 20px;
  border: 5px solid var(--bg);
  border-radius: 50%;
  content: "";
  background: var(--teal);
  box-shadow: 0 0 0 1px rgba(0, 117, 121, 0.32);
}

.timeline-item:nth-child(2)::before {
  background: var(--blue);
}

.timeline-item:nth-child(3)::before {
  background: var(--amber);
}

.timeline-item:nth-child(4)::before {
  background: var(--coral);
}

time {
  padding-top: 24px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
}

.timeline-card,
.skill-panel,
.education-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.timeline-card:hover,
.skill-panel:hover,
.education-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 117, 121, 0.22);
  box-shadow: var(--shadow);
}

.timeline-card p,
.education-card p {
  color: var(--muted);
}

.timeline-card p + p {
  margin-top: 10px;
}

.meta {
  margin-bottom: 13px;
  color: #425760;
  font-weight: 800;
}

.skill-cloud {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.project-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.project-card {
  position: relative;
  min-height: 420px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.58)),
    radial-gradient(circle at 18% 10%, rgba(0, 117, 121, 0.12), transparent 34%);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.project-card::after {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  content: "";
  background: rgba(0, 117, 121, 0.08);
}

.project-index {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 30px;
  border-radius: 17px;
  background: var(--teal);
  color: #fff;
  font-weight: 950;
}

.project-card:nth-child(2) .project-index {
  background: var(--amber);
  color: #4b3307;
}

.project-card:nth-child(3) .project-index {
  background: var(--coral);
}

.project-label {
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.project-card p:not(.project-label),
.project-card li {
  color: var(--muted);
}

.project-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding-left: 18px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  margin-top: 42px;
}

.showcase-feature {
  position: relative;
  min-height: 420px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 32px;
  background:
    radial-gradient(circle at 18% 18%, rgba(240, 167, 42, 0.26), transparent 32%),
    linear-gradient(145deg, rgba(0, 117, 121, 0.96), rgba(16, 32, 38, 0.96));
  color: #fff;
  box-shadow: var(--shadow);
}

.showcase-feature::after {
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 250px;
  height: 250px;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  content: "";
  animation: spin 26s linear infinite;
}

.certificate-badge {
  display: grid;
  place-items: center;
  width: 138px;
  aspect-ratio: 1;
  margin-bottom: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.22);
}

.certificate-badge strong {
  font-size: 52px;
  line-height: 1;
}

.certificate-badge span {
  max-width: 90px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.showcase-feature h3 {
  max-width: 520px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
}

.showcase-feature p {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.text-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 30px;
  color: #fff;
  font-weight: 900;
}

.text-link::after {
  content: " ->";
}

.qualification-stack {
  display: grid;
  gap: 18px;
}

.qualification-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  min-height: 128px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.qualification-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow);
}

.qual-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 17px;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 950;
}

.qualification-card:nth-child(2) .qual-icon {
  background: rgba(240, 167, 42, 0.2);
  color: #8b5a09;
}

.qualification-card:nth-child(3) .qual-icon {
  background: rgba(238, 111, 87, 0.17);
  color: #9b3928;
}

.qualification-card p,
.proof-rail span {
  color: var(--muted);
}

.proof-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.proof-rail article {
  padding: 22px;
  border-top: 3px solid var(--teal);
  border-radius: 0 0 22px 22px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
}

.proof-rail article:nth-child(2) {
  border-top-color: var(--amber);
}

.proof-rail article:nth-child(3) {
  border-top-color: var(--coral);
}

.proof-rail strong,
.proof-rail span {
  display: block;
}

.proof-rail strong {
  margin-bottom: 8px;
  font-size: 17px;
}

.document-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.document-gallery a {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.document-gallery a:hover,
.document-gallery a:focus-visible {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.document-gallery span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 950;
}

.document-gallery strong {
  font-size: 18px;
}

.document-gallery small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.chips span,
.activity-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid rgba(0, 117, 121, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #31474f;
  font-size: 14px;
  font-weight: 760;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.chips span:hover,
.activity-row span:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-3px);
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.education-card time {
  display: inline-block;
  padding: 0 0 14px;
}

.activity-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.footer {
  padding: 78px 0 34px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 44px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(16, 32, 38, 0.95), rgba(0, 79, 83, 0.9)),
    var(--text);
  color: #fff;
  box-shadow: var(--shadow);
}

.footer h2 {
  max-width: 760px;
  font-size: clamp(30px, 4vw, 54px);
}

.footer .button.secondary {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.copyright {
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.footer-links .copyright {
  margin: 0 auto 0 0;
}

.legal-section {
  width: min(var(--max), calc(100% - 44px));
  max-height: 0;
  margin: 0 auto;
  overflow: hidden;
  opacity: 0;
  transition: max-height 240ms ease, opacity 240ms ease, padding 240ms ease;
}

.legal-section:target {
  max-height: 360px;
  padding: 34px 0;
  opacity: 1;
}

.legal-section h2 {
  margin-bottom: 14px;
  font-size: 28px;
}

.legal-section p {
  color: var(--muted);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(.19, 1, .22, 1);
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.magnetic {
  will-change: transform;
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(42px, -26px, 0) scale(1.08);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes morph {
  0%, 100% {
    border-radius: 42% 58% 52% 48%;
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    border-radius: 56% 44% 46% 54%;
    transform: translateY(-8px) rotate(2deg);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    order: 3;
    margin-top: 14px;
    overflow-x: auto;
    border-radius: 18px;
  }

  .hero,
  .profile-layout,
  .section-heading,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-card {
    order: -1;
  }

  .hero-metrics,
  .skill-cloud,
  .education-grid,
  .showcase-grid,
  .proof-rail,
  .project-showcase,
  .document-gallery {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 10px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 42px;
  }

  .timeline-item::before {
    left: 0;
  }

  time {
    padding-top: 0;
  }
}

@media (max-width: 620px) {
  .hero,
  .section,
  .footer,
  .site-header {
    width: min(100% - 28px, var(--max));
  }

  .header-action {
    padding: 11px 14px;
  }

  .nav a {
    padding: 8px 12px;
  }

  .hero h1 {
    font-size: clamp(55px, 18vw, 76px);
  }

  .hero-card,
  .timeline-card,
  .skill-panel,
  .education-card,
  .footer-inner {
    border-radius: 22px;
    padding: 22px;
  }

  .profile-orbit {
    width: min(250px, 76vw);
  }

  .portrait-frame {
    width: 172px;
  }

  .button {
    width: 100%;
  }

  .footer-actions {
    width: 100%;
  }
}
