:root {
  --ink: #101025;
  --muted: #67708c;
  --violet: #7c35ee;
  --violet-dark: #6428dd;
  --pink: #e241a5;
  --surface: #ffffff;
  --lavender: #f6f4fc;
  --line: #e8ddff;
  --shadow: 0 22px 60px rgba(80, 54, 154, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 600;
  overflow-x: hidden;
}

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

p,
h1,
h2,
h3,
h4,
a,
button,
dd {
  overflow-wrap: anywhere;
}

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

.site-header {
  position: fixed;
  inset: 24px 0 auto;
  z-index: 10;
  padding: 0 6vw;
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(1178px, 100%);
  min-height: 82px;
  margin: 0 auto;
  padding: 14px 18px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(232, 221, 255, .9);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  margin-right: auto;
  line-height: 1;
}

.brand span {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  letter-spacing: 0;
}

.brand small {
  margin-top: 8px;
  color: #5b27ff;
  font-size: 14px;
  font-weight: 800;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 17px;
  border-radius: 999px;
  color: #4f536c;
  font-size: 13px;
  font-weight: 800;
}

.site-menu a.active,
.site-menu a:hover {
  color: #5522f5;
  background: #eee6ff;
}

.whatsapp-fab {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-left: 8px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #8435e8 8%, #dd3ca1 92%);
  box-shadow: 0 14px 28px rgba(132, 53, 232, .18);
}

.whatsapp-fab svg {
  width: 27px;
  height: 27px;
  fill: #fff;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #efe8ff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--violet);
}

.section-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.12), rgba(255,255,255,.7)),
    var(--lavender);
}

.hero {
  min-height: 645px;
  padding: 170px 6vw 80px;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  z-index: 0;
  opacity: .72;
  pointer-events: none;
  background:
    radial-gradient(circle at 58% 16%, rgba(226, 65, 165, .2), transparent 22%),
    radial-gradient(circle at 78% 68%, rgba(124, 53, 238, .16), transparent 28%),
    radial-gradient(circle at 34% 78%, rgba(226, 65, 165, .12), transparent 24%);
  animation: koyta-background-drift 10s ease-in-out infinite alternate;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  align-items: center;
  gap: 56px;
  width: min(1178px, 100%);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin: 0 0 12px;
  padding: 0 18px;
  border-radius: 999px;
  color: #5928ff;
  background: #ece4ff;
  font-size: 14px;
  font-weight: 800;
}

.hero-typed-line {
  min-width: 268px;
}

.typed-name {
  display: inline-block;
}

.typed-cursor {
  display: inline-block;
  margin-left: 2px;
  animation: typed-cursor-blink .75s step-end infinite;
}

@keyframes typed-cursor-blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.hero h1 {
  margin: 0;
  color: #101025;
  font-size: clamp(58px, 7vw, 90px);
  line-height: .94;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(90deg, #7935ee 0%, #e843a2 86%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-text {
  max-width: 640px;
  margin: 28px 0 34px;
  color: #27304b;
  font-size: 18px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.btn-gradient {
  color: #fff;
  background: linear-gradient(105deg, var(--violet) 0%, var(--pink) 100%);
  box-shadow: 0 18px 30px rgba(124, 53, 238, .22);
}

.btn b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-left: 12px;
  border-radius: 50%;
  color: var(--violet);
  background: #fff;
  font-size: 22px;
  line-height: 1;
}

.btn-light {
  min-width: 142px;
  color: #5b27ff;
  background: #fff;
  border: 1px solid var(--line);
}

.hero-image {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 500px;
  isolation: isolate;
}

.hero-image::before {
  position: absolute;
  content: "";
  z-index: -1;
  top: 78px;
  left: 50%;
  width: min(430px, 82%);
  height: min(430px, 82%);
  border-radius: 50%;
  background: linear-gradient(11deg, #5c23dc 0%, #e241a5 100%);
  box-shadow: 0 28px 70px rgba(124, 53, 238, .22);
  animation: koyta-portrait-orbit 5s infinite ease-out;
}

.hero-image::after {
  position: absolute;
  content: "";
  z-index: -2;
  top: 56px;
  left: 50%;
  width: min(430px, 82%);
  height: min(430px, 82%);
  border-radius: 50%;
  background: #e241a5;
  transform: translateX(-50%);
  opacity: .95;
}

.image-orbit {
  position: absolute;
  width: min(520px, 100%);
  aspect-ratio: 1;
  right: -18px;
  bottom: -26px;
  border: 2px solid #e3d8ff;
  border-radius: 50%;
  animation: hero-orbit-breathe 6s ease-in-out infinite alternate;
}

.hero-image img {
  position: relative;
  z-index: 1;
  width: min(440px, 95%);
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(31, 18, 73, .18));
}

@keyframes koyta-background-drift {
  0% {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
  }

  100% {
    transform: translate3d(1.5%, 1%, 0) scale(1.05);
  }
}

@keyframes koyta-portrait-orbit {
  0%,
  100% {
    transform: translate(calc(-50% - 30px), -36px);
  }

  50% {
    transform: translate(-50%, 0);
  }
}

@keyframes hero-orbit-breathe {
  0% {
    transform: translate3d(-6px, 8px, 0) scale(.98);
  }

  100% {
    transform: translate3d(8px, -8px, 0) scale(1.02);
  }
}

.ring {
  position: absolute;
  border: 2px solid #e8e1fb;
  border-radius: 50%;
  opacity: .85;
}

.ring-left {
  width: 270px;
  height: 270px;
  left: -150px;
  top: 58px;
  box-shadow: 14px 348px 0 -22px transparent;
}

.ring-left::after,
.ring-right::after {
  position: absolute;
  content: "";
  border: 2px solid #e8e1fb;
  border-radius: 50%;
}

.ring-left::after {
  width: 170px;
  height: 170px;
  left: 10px;
  top: 346px;
}

.ring-right {
  width: 206px;
  height: 206px;
  right: -54px;
  top: 18px;
}

.ring-right::after {
  width: 214px;
  height: 214px;
  right: 90px;
  top: 270px;
}

.contact-dock {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 9;
  display: flex;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(73, 39, 157, .18);
  transform: translateX(-50%);
  backdrop-filter: blur(16px);
}

.contact-dock a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 150px;
  min-height: 46px;
  justify-content: center;
  border-radius: 999px;
  color: var(--violet);
  background: #eee8ff;
  font-size: 14px;
  font-weight: 800;
}

.contact-dock a:nth-child(2) {
  color: var(--pink);
  background: #fdeef6;
}

.contact-dock .dock-active {
  color: #fff;
  background: linear-gradient(105deg, var(--violet), var(--pink));
}

section:not(.hero):not(.stats) {
  padding: 86px 6vw;
}

.section-heading {
  width: min(1178px, 100%);
  margin: 0 auto 34px;
}

.section-heading p {
  margin: 0 0 4px;
  color: var(--violet);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.resume-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.resume-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  flex: 0 1 640px;
  width: min(640px, 100%);
  min-height: 48px;
  margin: 20px 0 0 auto;
  padding: 0;
  border-radius: 999px;
  background: #eee6ff;
  overflow: hidden;
}

.resume-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  color: #09091d;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}

.resume-tab.active {
  color: #fff;
  background: linear-gradient(105deg, var(--violet), var(--pink));
  box-shadow: 0 14px 28px rgba(124, 53, 238, .18);
}

.tab-icon {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.resume-panel {
  display: none;
}

.resume-panel[hidden] {
  display: none !important;
}

.resume-panel.active {
  display: grid;
  height: 100%;
}

.resume-content-area {
  display: grid;
  min-width: 0;
}

.resume-card-grid,
.skills-grid {
  width: 100%;
  margin: 0;
  gap: 22px;
}

.resume-card-grid {
  grid-template-columns: 1fr;
}

.resume-card,
.skills-grid article {
  border: 1px solid #e1dfeb;
  border-radius: 14px;
  background: #fff;
  box-shadow: none;
}

.resume-card {
  min-height: auto;
  padding: 26px 30px;
}

.resume-date,
.resume-card span {
  color: var(--pink);
  font-size: 15px;
  font-weight: 800;
}

.resume-card h3 {
  margin: 14px 0 10px;
  font-size: 24px;
  line-height: 1.2;
}

.resume-card h4 {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.resume-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

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

.skills-grid article {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 24px;
  text-align: center;
}

.skills-grid strong {
  color: transparent;
  background: linear-gradient(90deg, var(--violet), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 34px;
  line-height: 1;
}

.skills-grid span {
  margin-top: 8px;
  color: #333b55;
}

.about-grid {
  display: grid;
  grid-template-columns: .75fr 1fr;
  gap: 32px;
  width: min(1178px, 100%);
  margin: 40px auto 0;
  align-items: stretch;
}

.portrait-panel {
  position: relative;
  display: grid;
  place-items: start center;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
  border-radius: 24px;
  background: transparent;
  isolation: isolate;
}

.portrait-panel::before,
.portrait-panel::after {
  display: none;
}

.portrait-panel::before {
  z-index: -1;
  top: 78px;
  width: min(430px, 82%);
  height: min(430px, 82%);
  background: linear-gradient(11deg, #5c23dc 0%, #e241a5 100%);
  opacity: 1;
  filter: none;
  transform: translateX(-50%);
}

.portrait-panel::after {
  z-index: -2;
  top: 56px;
  width: min(430px, 82%);
  height: min(430px, 82%);
  border: 0;
  background: #e241a5;
  transform: translateX(-50%);
}

.portrait-panel img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: calc(100% + 150px);
  min-height: 650px;
  object-fit: cover;
  object-position: center 38%;
  border-radius: 24px;
  box-shadow: none;
  filter: none;
  justify-self: stretch;
  align-self: start;
  margin: -130px 0 0;
}

.portrait-panel .image-orbit,
.portrait-panel-orbit {
  display: none;
}

.about-content,
.service-grid article,
.work-card,
.contact-form-card {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 16px 38px rgba(80, 54, 154, .08);
}

.about-content {
  height: 100%;
  padding: 34px;
}

.about-content h3 {
  margin: 0 0 14px;
  font-size: 28px;
}

.about-content p,
.work-card p,
.service-grid p {
  color: var(--muted);
  line-height: 1.65;
}

dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  margin: 26px 0 0;
}

dl div {
  display: grid;
  gap: 4px;
}

dt {
  color: var(--muted);
  font-size: 13px;
}

dd {
  margin: 0;
  font-weight: 800;
}

.stats {
  padding: 76px 6vw;
}

.stats-heading {
  width: min(760px, 100%);
  margin: 0 auto 44px;
  text-align: center;
}

.stats-heading p {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin: 0 0 10px;
  padding: 0 20px;
  border-radius: 999px;
  color: #5b27ff;
  background: #ece4ff;
  font-size: 14px;
  font-weight: 800;
}

.stats-heading h2 {
  margin: 0;
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

.stats-heading h2 span,
.stats-grid strong {
  color: transparent;
  background: linear-gradient(90deg, var(--violet), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
}

.stats-heading small {
  display: block;
  margin: 20px auto 0;
  color: #58617e;
  font-size: 16px;
  line-height: 1.75;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  width: min(1178px, 100%);
  margin: 0 auto;
}

.stats-grid article {
  min-height: 226px;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(80, 54, 154, .08);
  text-align: center;
}

.stats-grid strong {
  display: block;
  font-size: clamp(40px, 4vw, 48px);
  line-height: 1;
  font-weight: 800;
}

.stats-grid h3 {
  margin: 14px 0 12px;
  font-size: 20px;
  line-height: 1.2;
}

.stats-grid p {
  margin: 0;
  color: #58617e;
  font-size: 15px;
  line-height: 1.7;
}

.feedback {
  padding: 76px 6vw;
}

.feedback-layout {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1fr);
  gap: 40px;
  width: min(1178px, 100%);
  margin: 0 auto;
}

.feedback-summary {
  align-self: start;
}

.feedback-summary .eyebrow {
  margin-bottom: 18px;
}

.feedback-summary h2 {
  margin: 0 0 26px;
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.feedback-summary h2 span {
  color: transparent;
  background: linear-gradient(90deg, var(--violet), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
}

.review-score,
.feedback-grid article {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(80, 54, 154, .08);
}

.review-score {
  margin-bottom: 24px;
  padding: 30px 26px 24px;
}

.review-score strong {
  color: var(--ink);
  font-size: clamp(48px, 6vw, 68px);
  line-height: 1;
  font-weight: 800;
}

.review-score > span {
  display: inline-block;
  margin-left: 10px;
  color: transparent;
  background: linear-gradient(90deg, #4285f4, #34a853 38%, #fbbc05 68%, #ea4335);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 26px;
  font-weight: 800;
}

.review-score div,
.feedback-grid div {
  margin-top: 14px;
  color: #ffae00;
  font-size: 18px;
  letter-spacing: 0;
}

.review-score p {
  margin: 16px 0 0;
  color: #2c3550;
  line-height: 1.6;
}

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

.feedback-grid article {
  min-height: 178px;
  padding: 26px 22px;
}

.feedback-grid p {
  margin: 18px 0 8px;
  color: #58617e;
  line-height: 1.65;
}

.feedback-grid h3 {
  margin: 0 0 4px;
  color: #070719;
  font-size: 16px;
}

.feedback-grid span {
  color: #5b27ff;
  font-size: 13px;
  font-weight: 800;
}

.work-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(1178px, 100%);
  margin: 0 auto;
}

.work-card {
  overflow: hidden;
}

.work-card img {
  width: 100%;
  aspect-ratio: 1 / .78;
  object-fit: cover;
}

.work-card h3,
.service-grid h3 {
  margin: 12px 22px 10px;
  font-size: 21px;
}

.work-card p,
.service-grid p {
  margin: 0 22px 8px;
}

.work-card span {
  display: block;
  margin: 24px 22px 0;
  color: #5b27ff;
  font-size: 13px;
  font-weight: 800;
}

.work-card a {
  display: inline-flex;
  margin: 0 22px 24px;
  color: #5b27ff;
  font-size: 15px;
  font-weight: 800;
}

.service-grid article {
  padding-top: 26px;
}

.service-grid span {
  margin-left: 22px;
  color: var(--pink);
  font-size: 14px;
  font-weight: 800;
}

.contact {
  position: relative;
  overflow: hidden;
}

.contact::before,
.contact::after {
  position: absolute;
  content: "";
  border: 2px solid #e8e1fb;
  border-radius: 50%;
  pointer-events: none;
}

.contact::before {
  width: 260px;
  height: 260px;
  left: -130px;
  top: 38px;
}

.contact::after {
  width: 220px;
  height: 220px;
  right: 4vw;
  bottom: -90px;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .78fr);
  align-items: center;
  gap: 56px;
  width: min(1178px, 100%);
  margin: 0 auto;
}

.contact-copy h2 {
  margin: 0;
  color: #101025;
  font-size: clamp(56px, 7vw, 88px);
  line-height: .9;
  font-weight: 800;
  letter-spacing: 0;
}

.contact-copy h2 span {
  color: transparent;
  background: linear-gradient(90deg, #7935ee 0%, #e843a2 86%);
  -webkit-background-clip: text;
  background-clip: text;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 28px 0 24px;
  color: #27304b;
  font-size: 18px;
  line-height: 1.45;
}

address {
  display: grid;
  gap: 12px;
  color: var(--violet);
  font-style: normal;
  font-size: 18px;
}

address span {
  color: var(--muted);
}

.contact-form-card {
  width: 100%;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .92);
}

.contact-form-card form,
.contact-form-card label {
  display: grid;
  gap: 16px;
}

.contact-form-card form {
  gap: 16px;
}

.contact-form-card label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid #e3d6ff;
  border-radius: 16px;
  color: #56607e;
  background: #fff;
  font: inherit;
  font-size: 14px;
  outline: none;
}

.contact-form-card textarea {
  min-height: 150px;
  padding-top: 18px;
  resize: vertical;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(124, 53, 238, .1);
}

.split-fields {
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 8px;
}

.form-submit {
  justify-self: center;
  min-width: 180px;
  margin-top: 8px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: .72;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: #58617e;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.form-message.success {
  color: #17864f;
}

.form-message.error {
  color: #c63b6c;
}

.form-popup {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(16, 16, 37, .42);
  backdrop-filter: blur(10px);
}

.form-popup[hidden] {
  display: none;
}

.form-popup-card {
  position: relative;
  width: min(460px, 100%);
  padding: 38px 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(31, 18, 73, .22);
  text-align: center;
}

.form-popup-card h2 {
  margin: 10px 0 12px;
  font-size: clamp(38px, 8vw, 54px);
  line-height: 1;
  font-weight: 800;
  color: transparent;
  background: linear-gradient(90deg, var(--violet), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
}

.form-popup-card p:not(.eyebrow) {
  margin: 0;
  color: #58617e;
  line-height: 1.65;
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--violet);
  background: #efe8ff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

footer {
  padding: 28px 6vw 100px;
  color: var(--muted);
  text-align: center;
}

.thankyou-page {
  display: grid;
  min-height: 100vh;
  padding: 8vw 20px;
  place-items: center;
}

.thankyou-card {
  width: min(720px, 100%);
  padding: clamp(32px, 7vw, 70px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow);
  text-align: center;
}

.thankyou-card h1 {
  margin: 14px 0;
  font-size: clamp(46px, 8vw, 76px);
  line-height: .95;
  font-weight: 800;
  color: transparent;
  background: linear-gradient(90deg, var(--violet), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
}

.thankyou-card p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 auto 28px;
  color: #58617e;
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .site-header {
    inset: 14px 0 auto;
    padding: 0 18px;
  }

  .nav-shell {
    min-height: 70px;
    gap: 12px;
    padding: 12px;
  }

  .menu-toggle {
    display: block;
  }

  .site-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-menu.open {
    display: grid;
  }

  .whatsapp-fab {
    width: 50px;
    height: 50px;
  }

  .hero {
    padding-top: 128px;
  }

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

  .hero-grid {
    gap: 30px;
  }

  .hero-image {
    min-height: 430px;
  }

  .hero-image img {
    width: min(390px, 88vw);
  }

  .hero-image::before,
  .hero-image::after {
    width: min(360px, 76vw);
    height: min(360px, 76vw);
  }

  .image-orbit {
    width: min(430px, 90vw);
    right: 50%;
    bottom: -10px;
    transform: translateX(50%);
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .resume-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .resume-tabs {
    flex: none;
    width: 100%;
    margin-left: 0;
  }

  .portrait-panel {
    height: 420px;
    min-height: 420px;
  }

  .portrait-panel img {
    height: calc(100% + 120px);
    min-height: 540px;
    margin-top: -104px;
  }

  .work-grid,
  .service-grid,
  .resume-card-grid,
  .skills-grid {
    grid-template-columns: 1fr;
  }

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

  .feedback-layout {
    grid-template-columns: 1fr;
  }

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

  .contact-grid {
    gap: 34px;
  }

}

@media (max-width: 640px) {
  .site-header {
    padding: 0 12px;
  }

  .nav-shell {
    border-radius: 18px;
    min-height: 62px;
  }

  .brand span {
    font-size: 17px;
  }

  .brand small {
    font-size: 12px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
  }

  .whatsapp-fab {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    margin-left: 0;
  }

  .whatsapp-fab svg {
    width: 22px;
    height: 22px;
  }

  .hero {
    min-height: auto;
    padding: 112px 18px 58px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions .btn {
    flex: 1 1 170px;
  }

  .hero-image {
    min-height: 360px;
    overflow: hidden;
    border-radius: 22px;
  }

  .hero-image img {
    width: min(330px, 86vw);
  }

  .hero-image::before,
  .hero-image::after {
    top: 58px;
    width: min(300px, 74vw);
    height: min(300px, 74vw);
  }

  .image-orbit {
    width: min(350px, 88vw);
  }

  .ring,
  .ring-left::after,
  .ring-right::after {
    opacity: .45;
  }

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

  .section-heading h2,
  .stats-heading h2,
  .feedback-summary h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .resume-heading {
    gap: 14px;
  }

  .work-grid,
  .service-grid,
  .stats-grid,
  .feedback-grid,
  .resume-card-grid,
  .skills-grid,
  .split-fields,
  dl {
    grid-template-columns: 1fr;
  }

  .resume-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 24px;
    min-height: auto;
    padding: 8px;
  }

  .resume-tab {
    justify-content: center;
    min-height: 46px;
    padding: 0 12px;
    font-size: 13px;
  }

  .about-grid {
    margin-top: 28px;
    gap: 22px;
  }

  .portrait-panel {
    display: none;
  }

  .about-content,
  .resume-card,
  .contact-form-card,
  .feedback-grid article,
  .review-score {
    padding: 24px 20px;
  }

  .resume-card p {
    font-size: 15px;
  }

  .skills-grid article {
    min-height: 118px;
  }

  .stats {
    padding: 64px 18px;
  }

  .stats-grid article {
    min-height: auto;
    padding: 26px 20px;
  }

  .work-card h3,
  .service-grid h3 {
    font-size: 19px;
  }

  .contact-copy h2 {
    font-size: clamp(44px, 13vw, 68px);
  }

  .contact-copy > p:not(.eyebrow),
  address {
    font-size: 16px;
  }

  .contact-form-card input,
  .contact-form-card select,
  .contact-form-card textarea {
    min-height: 50px;
    padding-inline: 14px;
    border-radius: 14px;
    font-size: 14px;
  }

  .contact-dock {
    left: 12px;
    right: 12px;
    bottom: 14px;
    gap: 6px;
    padding: 6px;
    transform: none;
    border-radius: 22px;
  }

  .contact-dock a {
    min-width: 0;
    flex: 1;
    min-height: 42px;
    padding: 0 8px;
    font-size: 12px;
  }

  section:not(.hero):not(.stats):not(.feedback) {
    padding: 64px 18px;
  }

  .feedback {
    padding: 64px 18px;
  }

  footer {
    padding-bottom: 90px;
  }
}

@media (max-width: 420px) {
  .brand span {
    font-size: 15px;
  }

  .brand small {
    font-size: 11px;
  }

  .nav-shell {
    gap: 8px;
    padding: 10px;
  }

  .site-menu {
    left: -2px;
    right: -2px;
  }

  .hero-typed-line {
    min-width: 0;
    width: 100%;
    justify-content: center;
  }

  .hero h1,
  .contact-copy h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .btn {
    width: 100%;
    min-height: 50px;
    padding-inline: 18px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-image {
    min-height: 330px;
  }

  .hero-image img {
    width: min(300px, 88vw);
  }

  .hero-image::before,
  .hero-image::after {
    width: min(270px, 76vw);
    height: min(270px, 76vw);
  }

  .resume-tabs {
    grid-template-columns: 1fr;
  }

  .review-score > span {
    display: block;
    margin: 6px 0 0;
    font-size: 22px;
  }

  .contact-dock a {
    font-size: 11px;
  }

  .form-submit {
    min-width: 0;
  }
}
